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 /boot | |
| 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 'boot')
| -rw-r--r-- | boot/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index dd047365754..780889023e1 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -1852,6 +1852,7 @@ config OF_BOARD_SETUP config OF_BOARD_SETUP_EXTENDED bool "Set up latest board-specific details in device tree before boot" + depends on !COMPILE_TEST imply OF_BOARD_SETUP help This causes U-Boot to call ft_board_setup_ex() before booting into @@ -1862,6 +1863,7 @@ config OF_BOARD_SETUP_EXTENDED config OF_SYSTEM_SETUP bool "Set up system-specific details in device tree before boot" + depends on !COMPILE_TEST help This causes U-Boot to call ft_system_setup() before booting into the Operating System. This function can set up various |
