summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2014-12-08 14:42:31 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-12-09 09:59:09 +0100
commit0f377d6d4052f9fe78e561f9a5f1d28aa14f275a (patch)
treec7fa19dfc92b4a986ae42e7f82e869ad6c6691cf
parent23746e7e027689c22eaafaea27743b8756e7de8c (diff)
downloadbarebox-0f377d6d4052f9fe78e561f9a5f1d28aa14f275a.tar.gz
barebox-0f377d6d4052f9fe78e561f9a5f1d28aa14f275a.tar.xz
efi: add Barebox GUID
A proper GUID is needed to namespace all sorts of things, most prominently persistent variables. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/efi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/efi.h b/include/efi.h
index 49b8bd44bc..4abb5d2e36 100644
--- a/include/efi.h
+++ b/include/efi.h
@@ -468,6 +468,10 @@ extern efi_runtime_services_t *RT;
#define EFI_VLANCONFIGDXE_INF_GUID \
EFI_GUID(0xe4f61863, 0xfe2c, 0x4b56, 0xa8, 0xf4, 0x08, 0x51, 0x9b, 0xc4, 0x39, 0xdf)
+/* barebox specific GUIDs */
+#define EFI_BAREBOX_VENDOR_GUID \
+ EFI_GUID(0x5b91f69c, 0x8b88, 0x4a2b, 0x92, 0x69, 0x5f, 0x1d, 0x80, 0x2b, 0x51, 0x75)
+
extern efi_guid_t efi_file_info_id;
extern efi_guid_t efi_simple_file_system_protocol_guid;
extern efi_guid_t efi_device_path_protocol_guid;