summaryrefslogtreecommitdiff
path: root/arch/sandbox/Kconfig
blob: 7b07bff1da233b41f9999fdfdc28b2eb699506a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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

endmenu