summaryrefslogtreecommitdiff
path: root/patches/efi__Allow_efiruntime.patch
blob: 45857a11eb61b68cf2b447d3b93f9973a0d4086b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Subject: efi: Allow efi=runtime
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Thu Jul 26 15:06:10 2018 +0200

From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>

In case the command line option "efi=noruntime" is default at built-time, the user
could overwrite its state by `efi=runtime' and allow it again.

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>


---
 drivers/firmware/efi/efi.c | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
index 85496063022d..abb18c958e3b 100644
--- a/drivers/firmware/efi/efi.c
+++ b/drivers/firmware/efi/efi.c
@@ -97,6 +97,9 @@ static int __init parse_efi_cmdline(char *str)
 	if (parse_option_str(str, "noruntime"))
 		disable_runtime = true;
 
+	if (parse_option_str(str, "runtime"))
+		disable_runtime = false;
+
 	if (parse_option_str(str, "nosoftreserve"))
 		set_bit(EFI_MEM_NO_SOFT_RESERVE, &efi.flags);