diff options
| author | Tom Rini <[email protected]> | 2025-10-03 14:39:30 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-13 14:54:32 -0600 |
| commit | 6822583672e21dd84eb1c5bc2cbf3fd93f181d95 (patch) | |
| tree | 6aced8e41efaa796a33d9ea1b5ebfc8e3b5c5bcb | |
| parent | ec90518ee679f1353915cd912b9738ba81d1258f (diff) | |
global: Make REMAKE_ELF depend on !COMPILE_TEST
The REMAKE_ELF flag is something that should be selected by the
platforms which need it, and not prompted for. Start by making this
depend on !COMPILE_TEST.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -511,6 +511,7 @@ config SPL_IMAGE config REMAKE_ELF bool "Recreate an ELF image from raw U-Boot binary" + depends on !COMPILE_TEST help Enable this to recreate an ELF image (u-boot.elf) from the raw U-Boot binary (u-boot.bin), which may already have been statically |
