upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
787 B
43 lines
787 B
menu "Sandbox architecture"
|
|
depends on SANDBOX
|
|
|
|
config SYS_ARCH
|
|
default "sandbox"
|
|
|
|
config SYS_BOARD
|
|
default "sandbox"
|
|
|
|
config SYS_CPU
|
|
default "sandbox"
|
|
|
|
config SANDBOX_SPL
|
|
bool "Enable SPL for sandbox"
|
|
select SUPPORT_SPL
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sandbox_spl" if SANDBOX_SPL
|
|
default "sandbox" if !SANDBOX_SPL
|
|
|
|
choice
|
|
prompt "Run sandbox on 32/64-bit host"
|
|
default SANDBOX_64BIT
|
|
help
|
|
Sandbox can be built on 32-bit and 64-bit hosts.
|
|
The default is to build on a 64-bit host and run
|
|
on a 64-bit host. If you want to run sandbox on
|
|
a 32-bit host, change it here.
|
|
|
|
config SANDBOX_32BIT
|
|
bool "32-bit host"
|
|
|
|
config SANDBOX_64BIT
|
|
bool "64-bit host"
|
|
|
|
endchoice
|
|
|
|
config SANDBOX_BITS_PER_LONG
|
|
int
|
|
default 32 if SANDBOX_32BIT
|
|
default 64 if SANDBOX_64BIT
|
|
|
|
endmenu
|
|
|