7c4d983628
This is the first level bootloader for the Actions Semiconductor S500 SoC, which is used on boards like Roseapple Pi and LeMaker Guitar. The bootloader performs basic configuration and chain loads u-boot for futher setup. This bootloader is unfortunately only available as a binary blob. It gets configured for a specific board using a binary (32bit x86) tool based on a .ini file (somewhat similar to sunxi .fex). Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
config BR2_TARGET_S500_BOOTLOADER
|
|
bool "s500-bootloader"
|
|
depends on BR2_arm
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
|
select BR2_HOSTARCH_NEEDS_IA32_LIBS
|
|
help
|
|
1st level bootloader for Actions Semiconductor S500 SoC.
|
|
|
|
https://github.com/xapp-le/owl
|
|
|
|
config BR2_TARGET_S500_BOOTLOADER_BOARD
|
|
string "board to configure for"
|
|
depends on BR2_TARGET_S500_BOOTLOADER
|
|
help
|
|
Specify the board to configure the bootloader for.
|
|
This should be the name of a directory under s500/boards
|
|
containing a suitable bootloader.ini file.
|