From 4910a7cc696ffa3a36e23a215523d1ff31a5c8a1 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 12 Aug 2025 12:01:32 -0600 Subject: [PATCH] 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 --- lib/efi_loader/Kconfig | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.3