diff options
| author | Tom Rini <[email protected]> | 2025-08-12 12:01:32 -0600 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-08-30 20:45:33 +0200 |
| commit | 4910a7cc696ffa3a36e23a215523d1ff31a5c8a1 (patch) | |
| tree | 7bdd0157a93871e957eb112737c100e6312b0835 /lib | |
| parent | c04fb8b505658af98b7a7b9a22647a29d8fbceb0 (diff) | |
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 <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Acked-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
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 |
