summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2015-07-17 21:22:42 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2015-07-27 07:23:18 +0200
commit21a83053ab619f00fce457c717c496d3b0dc7b4d (patch)
treeecd048ac09bf5e4be869460d313af28a6e309b3e /common
parentceb217682cefb8a06c729df00e5060f83731b820 (diff)
downloadbarebox-21a83053ab619f00fce457c717c496d3b0dc7b4d.tar.gz
barebox-21a83053ab619f00fce457c717c496d3b0dc7b4d.tar.xz
efi: write volatile EFI variables used by systemd
LoaderTimeInitUSec and LoaderTimeExecUSec are used e.g. in systemd-analyze to calculate the time spent in the firmare and barebox. LoaderDevicePartUUID is used to mount the EFI partition to /boot. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/efi-guid.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/efi-guid.c b/common/efi-guid.c
index f6b0404105..f4ff7feadf 100644
--- a/common/efi-guid.c
+++ b/common/efi-guid.c
@@ -9,6 +9,7 @@ efi_guid_t efi_unknown_device_guid = EFI_UNKNOWN_DEVICE_GUID;
efi_guid_t efi_null_guid = EFI_NULL_GUID;
efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
efi_guid_t efi_block_io_protocol_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
+efi_guid_t efi_systemd_vendor_guid = EFI_SYSTEMD_VENDOR_GUID;
#define EFI_GUID_STRING(guid, short, long) do { \
if (!efi_guidcmp(guid, *g)) \