diff options
| author | Tom Rini <[email protected]> | 2025-10-03 14:39:32 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-13 14:54:32 -0600 |
| commit | 16b0482a7430554f150dfc8134e130d40fc72ba2 (patch) | |
| tree | 050fb65c2a988bab17d6840b886d48e3961785cb | |
| parent | 6822583672e21dd84eb1c5bc2cbf3fd93f181d95 (diff) | |
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 <[email protected]>
| -rw-r--r-- | arch/sandbox/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
