mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 14:27:48 +00:00
2177f80076
Duplicate patches between PSP and 3.2.17 have been dropped from the 3.2.17 series Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
46 lines
1.6 KiB
Diff
46 lines
1.6 KiB
Diff
From 9b4ee1cca5f9cce3c72d4a34597a0c1dc0c786bd Mon Sep 17 00:00:00 2001
|
|
From: Matthew Garrett <mjg@redhat.com>
|
|
Date: Mon, 30 Apr 2012 16:11:29 -0400
|
|
Subject: [PATCH 126/165] efi: Add new variable attributes
|
|
|
|
commit 41b3254c93acc56adc3c4477fef7c9512d47659e upstream.
|
|
|
|
More recent versions of the UEFI spec have added new attributes for
|
|
variables. Add them.
|
|
|
|
Signed-off-by: Matthew Garrett <mjg@redhat.com>
|
|
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
|
|
[bwh: Backported to 3.2: adjust context]
|
|
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
|
|
---
|
|
include/linux/efi.h | 13 ++++++++++++-
|
|
1 files changed, 12 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
|
index 2362a0b..1328d8c 100644
|
|
--- a/include/linux/efi.h
|
|
+++ b/include/linux/efi.h
|
|
@@ -383,7 +383,18 @@ extern int __init efi_setup_pcdp_console(char *);
|
|
#define EFI_VARIABLE_NON_VOLATILE 0x0000000000000001
|
|
#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x0000000000000002
|
|
#define EFI_VARIABLE_RUNTIME_ACCESS 0x0000000000000004
|
|
-
|
|
+#define EFI_VARIABLE_HARDWARE_ERROR_RECORD 0x0000000000000008
|
|
+#define EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS 0x0000000000000010
|
|
+#define EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS 0x0000000000000020
|
|
+#define EFI_VARIABLE_APPEND_WRITE 0x0000000000000040
|
|
+
|
|
+#define EFI_VARIABLE_MASK (EFI_VARIABLE_NON_VOLATILE | \
|
|
+ EFI_VARIABLE_BOOTSERVICE_ACCESS | \
|
|
+ EFI_VARIABLE_RUNTIME_ACCESS | \
|
|
+ EFI_VARIABLE_HARDWARE_ERROR_RECORD | \
|
|
+ EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS | \
|
|
+ EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS | \
|
|
+ EFI_VARIABLE_APPEND_WRITE)
|
|
/*
|
|
* EFI Device Path information
|
|
*/
|
|
--
|
|
1.7.7.6
|
|
|