├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── defconfig-apu ├── include ├── flash_access.h ├── rtc_clock_menu.h ├── sec_reg_menu.h └── spi │ ├── spi.h │ ├── spi_flash.h │ ├── spi_flash_internal.h │ ├── spi_lock_menu.h │ └── winbond_flash.h ├── sortbootorder.c ├── spi ├── adesto.c ├── eon.c ├── gigadevice.c ├── macronix.c ├── spansion.c ├── spi.c ├── spi_flash.c ├── sst.c ├── stmicro.c └── winbond.c ├── utils ├── flash_access.c ├── rtc_clock_menu.c ├── sec_reg_menu.c └── spi_lock_menu.c └── version.h.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/README.md -------------------------------------------------------------------------------- /defconfig-apu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/defconfig-apu -------------------------------------------------------------------------------- /include/flash_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/flash_access.h -------------------------------------------------------------------------------- /include/rtc_clock_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/rtc_clock_menu.h -------------------------------------------------------------------------------- /include/sec_reg_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/sec_reg_menu.h -------------------------------------------------------------------------------- /include/spi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/spi/spi.h -------------------------------------------------------------------------------- /include/spi/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/spi/spi_flash.h -------------------------------------------------------------------------------- /include/spi/spi_flash_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/spi/spi_flash_internal.h -------------------------------------------------------------------------------- /include/spi/spi_lock_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/spi/spi_lock_menu.h -------------------------------------------------------------------------------- /include/spi/winbond_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/include/spi/winbond_flash.h -------------------------------------------------------------------------------- /sortbootorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/sortbootorder.c -------------------------------------------------------------------------------- /spi/adesto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/adesto.c -------------------------------------------------------------------------------- /spi/eon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/eon.c -------------------------------------------------------------------------------- /spi/gigadevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/gigadevice.c -------------------------------------------------------------------------------- /spi/macronix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/macronix.c -------------------------------------------------------------------------------- /spi/spansion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/spansion.c -------------------------------------------------------------------------------- /spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/spi.c -------------------------------------------------------------------------------- /spi/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/spi_flash.c -------------------------------------------------------------------------------- /spi/sst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/sst.c -------------------------------------------------------------------------------- /spi/stmicro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/stmicro.c -------------------------------------------------------------------------------- /spi/winbond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/spi/winbond.c -------------------------------------------------------------------------------- /utils/flash_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/utils/flash_access.c -------------------------------------------------------------------------------- /utils/rtc_clock_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/utils/rtc_clock_menu.c -------------------------------------------------------------------------------- /utils/sec_reg_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/utils/sec_reg_menu.c -------------------------------------------------------------------------------- /utils/spi_lock_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/utils/spi_lock_menu.c -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/sortbootorder/HEAD/version.h.in --------------------------------------------------------------------------------