2015-11-04 18:13:38 +00:00
|
|
|
From c01ff700ea4192ae04b306fef725d62189550236 Mon Sep 17 00:00:00 2001
|
2014-08-20 17:22:24 +00:00
|
|
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
|
|
|
Date: Tue, 27 Aug 2013 13:33:03 -0400
|
2015-09-09 15:10:06 +00:00
|
|
|
Subject: [PATCH 13/20] efi: Add EFI_SECURE_BOOT bit
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
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-11-04 18:13:38 +00:00
|
|
|
index f3b804f..a401ff8 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/arch/x86/kernel/setup.c
|
|
|
|
+++ b/arch/x86/kernel/setup.c
|
2015-11-04 18:13:38 +00:00
|
|
|
@@ -1145,7 +1145,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-11-04 18:13:38 +00:00
|
|
|
index 569b5a8..4dc970e 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/include/linux/efi.h
|
|
|
|
+++ b/include/linux/efi.h
|
2015-11-04 18:13:38 +00:00
|
|
|
@@ -980,6 +980,7 @@ extern int __init efi_setup_pcdp_console(char *);
|
2014-08-20 17:22:24 +00:00
|
|
|
#define EFI_ARCH_1 7 /* First arch-specific bit */
|
2015-04-14 13:54:01 +00:00
|
|
|
#define EFI_DBG 8 /* Print additional debug info at runtime */
|
2015-11-04 18:13:38 +00:00
|
|
|
#define EFI_NX_PE_DATA 9 /* Can runtime data regions be mapped non-executable? */
|
|
|
|
+#define EFI_SECURE_BOOT 10 /* Are we in Secure Boot mode? */
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_EFI
|
|
|
|
/*
|
2015-09-09 15:10:06 +00:00
|
|
|
--
|
2015-11-04 18:13:38 +00:00
|
|
|
2.5.0
|
2015-09-09 15:10:06 +00:00
|
|
|
|