aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2026-06-01 03:34:59 +0000
committerWarner Losh <imp@FreeBSD.org>2026-06-01 03:38:58 +0000
commita1d78374b5c426d43a287b9523660bce36cb55c8 (patch)
tree87d17dde41f06540360a31e9ba891450c5e28cb7
parent439710cf003b7849d2119e9a7694d7b27ab6d70f (diff)
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
-rw-r--r--stand/efi/loader/main.c2
1 files changed, 1 insertions, 1 deletions
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",