summaryrefslogtreecommitdiffstats
path: root/arch/sandbox
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2023-10-09 13:52:01 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2023-10-13 11:15:33 +0200
commit11683abacfb98074f1287f2ed84eb07b70a62be8 (patch)
tree59bd842efcc47216e96215f2e1787b9cb183df32 /arch/sandbox
parenta6a3fd27a63634e1058e61cd7eb0b688614021a7 (diff)
downloadbarebox-11683abacfb98074f1287f2ed84eb07b70a62be8.tar.gz
barebox-11683abacfb98074f1287f2ed84eb07b70a62be8.tar.xz
sandbox: move sandbox-specific options into menu
The two sandbox related options are shown in the top-level menu. Move them into an architecture-specific menu instead as done for other architectures. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20231009115201.2210460-2-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/sandbox')
-rw-r--r--arch/sandbox/Kconfig16
1 files changed, 10 insertions, 6 deletions
diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig
index 31c4484cf1..88da35a955 100644
--- a/arch/sandbox/Kconfig
+++ b/arch/sandbox/Kconfig
@@ -23,12 +23,7 @@ config ARCH_TEXT_BASE
hex
default 0x00000000
-config SANDBOX_REEXEC
- prompt "exec(2) reset handler"
- def_bool y
- help
- The normal reset handler hangs barebox. On Linux, barebox
- instead can exec itself to simulate a reset.
+menu "Sandbox specific settings"
config PHYS_ADDR_T_64BIT
bool
@@ -52,5 +47,14 @@ config 32BIT
config SANDBOX_LINUX_I386
bool "32-bit x86 barebox" if CC_HAS_LINUX_I386_SUPPORT
+config SANDBOX_REEXEC
+ prompt "exec(2) reset handler"
+ def_bool y
+ help
+ The normal reset handler hangs barebox. On Linux, barebox
+ instead can exec itself to simulate a reset.
+
config SDL
bool
+
+endmenu