diff options
| author | Tom Rini <[email protected]> | 2025-09-25 14:51:22 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-08 16:12:41 -0600 |
| commit | 2d11e5ba4ea851947a6e27c96474fad0254031f4 (patch) | |
| tree | be571d8e81b77d0dbc753cf0ab9e587aa2ffe17e /dts | |
| parent | f293019b6b9ca369190c620e0232227d950d2187 (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 'dts')
| -rw-r--r-- | dts/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dts/Kconfig b/dts/Kconfig index 6a5141b56e9..c8bc5232f9b 100644 --- a/dts/Kconfig +++ b/dts/Kconfig @@ -37,6 +37,7 @@ config OF_REAL config OF_BOARD_FIXUP bool "Board-specific manipulation of Device Tree" + depends on !COMPILE_TEST help In certain circumstances it is necessary to be able to modify U-Boot's device tree (e.g. to delete device from it). This option @@ -87,6 +88,7 @@ config OF_LIVE config OF_UPSTREAM bool "Enable use of devicetree imported from Linux kernel release" + depends on !COMPILE_TEST help Traditionally, U-Boot platforms used to have their custom devicetree files or copy devicetree files from Linux kernel which are hard to @@ -306,6 +308,7 @@ config MULTI_DTB_FIT_USER_DEF_ADDR config DTB_RESELECT bool "Support swapping dtbs at a later point in boot" + depends on !COMPILE_TEST depends on MULTI_DTB_FIT help It is possible during initial boot you may need to use a generic |
