sandbox: Make SANDBOX_xPL depend on !COMPILE_TEST
authorTom Rini <trini@konsulko.com>
Fri, 3 Oct 2025 20:39:32 +0000 (14:39 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 13 Oct 2025 20:54:32 +0000 (14:54 -0600)
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 <trini@konsulko.com>
arch/sandbox/Kconfig

index d61a327..e0c70dd 100644 (file)
@@ -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