2014-07-30 14:08:14 +09:00
|
|
|
menu "Sandbox architecture"
|
|
|
|
depends on SANDBOX
|
|
|
|
|
|
|
|
config SYS_ARCH
|
|
|
|
default "sandbox"
|
|
|
|
|
|
|
|
config SYS_BOARD
|
|
|
|
default "sandbox"
|
|
|
|
|
2016-04-18 13:57:42 -04:00
|
|
|
config SYS_CPU
|
|
|
|
default "sandbox"
|
|
|
|
|
2016-07-04 11:57:54 -06:00
|
|
|
config SANDBOX_SPL
|
|
|
|
bool "Enable SPL for sandbox"
|
|
|
|
select SUPPORT_SPL
|
|
|
|
|
2014-07-30 14:08:14 +09:00
|
|
|
config SYS_CONFIG_NAME
|
2016-07-04 11:57:54 -06:00
|
|
|
default "sandbox_spl" if SANDBOX_SPL
|
|
|
|
default "sandbox" if !SANDBOX_SPL
|
2014-07-30 14:08:14 +09:00
|
|
|
|
2017-08-01 16:33:33 -07:00
|
|
|
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
|
|
|
|
|
2014-07-30 14:08:14 +09:00
|
|
|
endmenu
|