From: Tom Rini Date: Fri, 3 Oct 2025 20:39:32 +0000 (-0600) Subject: sandbox: Make SANDBOX_xPL depend on !COMPILE_TEST X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16b0482a7430554f150dfc8134e130d40fc72ba2;p=pandora-u-boot.git sandbox: Make SANDBOX_xPL depend on !COMPILE_TEST Given how these options are used in the code, it doesn't make sense to enable them for COMPILE_TEST. Make them depend on !COMPILE_TEST. Signed-off-by: Tom Rini --- diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig index d61a327f151..e0c70dd3142 100644 --- a/arch/sandbox/Kconfig +++ b/arch/sandbox/Kconfig @@ -27,14 +27,17 @@ config SANDBOX_RAM_SIZE_MB config SANDBOX_SPL bool "Enable SPL for sandbox" + depends on !COMPILE_TEST select SUPPORT_SPL config SANDBOX_TPL bool "Enable TPL for sandbox" + depends on !COMPILE_TEST select SUPPORT_TPL config SANDBOX_VPL bool "Enable VPL for sandbox" + depends on !COMPILE_TEST select SUPPORT_VPL config SYS_CONFIG_NAME