From: Tom Rini Date: Tue, 12 Aug 2025 18:01:32 +0000 (-0600) Subject: efi_loader: Make EFI_VARIABLES_PRESEED depend on !COMPILE_TEST X-Git-Tag: v2025.10-rc4~9^2~11 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4910a7cc696ffa3a36e23a215523d1ff31a5c8a1;p=pandora-u-boot.git efi_loader: Make EFI_VARIABLES_PRESEED depend on !COMPILE_TEST When doing compile testing build we cannot rely on having a valid file for EFI_VAR_SEED_FILE to exist, so disable this option when doing compile tests. Signed-off-by: Tom Rini Reviewed-by: Ilias Apalodimas Acked-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index c2aa88f59fb..a7092c2e8a8 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -195,6 +195,7 @@ endchoice config EFI_VARIABLES_PRESEED bool "Initial values for UEFI variables" + depends on !COMPILE_TEST depends on !EFI_MM_COMM_TEE help Include a file with the initial values for non-volatile UEFI variables