1
0
mirror of https://git.FreeBSD.org/src.git synced 2026-06-02 11:24:32 +00:00

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: 784150fd25, d69fc3a9dc
PR:  295289
Sponsored by: Netflix
This commit is contained in:
Warner Losh
2026-05-31 21:34:59 -06:00
parent 439710cf00
commit a1d78374b5
+1 -1
View File
@@ -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",