summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-09-25 14:51:22 -0600
committerTom Rini <[email protected]>2025-10-08 16:12:41 -0600
commit2d11e5ba4ea851947a6e27c96474fad0254031f4 (patch)
treebe571d8e81b77d0dbc753cf0ab9e587aa2ffe17e /Kconfig
parentf293019b6b9ca369190c620e0232227d950d2187 (diff)
Kconfig: Make further use of testing for !COMPILE_TEST
We have a large number of library symbols that should not be prompted for by the user really but rather selected by the platform (or SoC) as needed. To start with however, make these depend on !COMPILE_TEST. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 70125c4e5a6..b68420022e8 100644
--- a/Kconfig
+++ b/Kconfig
@@ -720,6 +720,7 @@ config TPL_SYS_MONITOR_BASE
config DYNAMIC_SYS_CLK_FREQ
bool "Determine CPU clock frequency at run-time"
+ depends on !COMPILE_TEST
help
Implement a get_board_sys_clk function that will determine the CPU
clock frequency at run time, rather than define it statically.