From: Tom Rini Date: Fri, 3 Oct 2025 20:39:30 +0000 (-0600) Subject: global: Make REMAKE_ELF depend on !COMPILE_TEST X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6822583672e21dd84eb1c5bc2cbf3fd93f181d95;p=pandora-u-boot.git 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 --- diff --git a/Kconfig b/Kconfig index b68420022e8..1d600342685 100644 --- a/Kconfig +++ b/Kconfig @@ -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