2014-08-20 17:22:24 +00:00
|
|
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
|
|
|
Date: Tue, 27 Aug 2013 13:33:03 -0400
|
|
|
|
Subject: [PATCH] efi: Add EFI_SECURE_BOOT bit
|
|
|
|
|
|
|
|
UEFI machines can be booted in Secure Boot mode. Add a EFI_SECURE_BOOT bit
|
|
|
|
for use with efi_enabled.
|
|
|
|
|
|
|
|
Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
|
|
|
---
|
|
|
|
arch/x86/kernel/setup.c | 2 ++
|
|
|
|
include/linux/efi.h | 1 +
|
|
|
|
2 files changed, 3 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
2015-03-19 20:01:37 +00:00
|
|
|
index a3d8174dedf9..26c5d54124c1 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/arch/x86/kernel/setup.c
|
|
|
|
+++ b/arch/x86/kernel/setup.c
|
2015-03-19 20:01:37 +00:00
|
|
|
@@ -1153,7 +1153,9 @@ void __init setup_arch(char **cmdline_p)
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE
|
|
|
|
if (boot_params.secure_boot) {
|
|
|
|
+ set_bit(EFI_SECURE_BOOT, &efi.flags);
|
|
|
|
enforce_signed_modules();
|
|
|
|
+ pr_info("Secure boot enabled\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
2015-02-12 17:53:25 +00:00
|
|
|
index cf7e431cbc73..c74cbd892032 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/include/linux/efi.h
|
|
|
|
+++ b/include/linux/efi.h
|
2015-02-12 17:53:25 +00:00
|
|
|
@@ -942,6 +942,7 @@ extern int __init efi_setup_pcdp_console(char *);
|
2014-08-20 17:22:24 +00:00
|
|
|
#define EFI_64BIT 5 /* Is the firmware 64-bit? */
|
|
|
|
#define EFI_PARAVIRT 6 /* Access is via a paravirt interface */
|
|
|
|
#define EFI_ARCH_1 7 /* First arch-specific bit */
|
|
|
|
+#define EFI_SECURE_BOOT 8 /* Are we in Secure Boot mode? */
|
|
|
|
|
|
|
|
#ifdef CONFIG_EFI
|
|
|
|
/*
|
|
|
|
--
|
2014-12-09 14:25:39 +00:00
|
|
|
2.1.0
|
2014-08-20 17:22:24 +00:00
|
|
|
|