From 16b0482a7430554f150dfc8134e130d40fc72ba2 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 3 Oct 2025 14:39:32 -0600 Subject: [PATCH] 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 --- arch/sandbox/Kconfig | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3