From a1d78374b5c426d43a287b9523660bce36cb55c8 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 31 May 2026 21:34:59 -0600 Subject: [PATCH] stand: Revert the EFI loader back to strict mode The change to relaxed mode has had too many unintended breakages. Revert back to strict mode until that works for all the cases that are currently broken. Fixes: 784150fd2535, d69fc3a9dc71 PR: 295289 Sponsored by: Netflix --- stand/efi/loader/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index 9604f16a2480..2dc7924b9fcd 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -146,7 +146,7 @@ EFI_LOADED_IMAGE *boot_img; enum boot_policies { STRICT, RELAXED, -} boot_policy = RELAXED; +} boot_policy = STRICT; const char *policy_map[] = { [STRICT] = "strict",