summaryrefslogtreecommitdiff
path: root/EdkModulePkg/Include
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-28 05:16:05 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-28 05:16:05 +0000
commit8c395f7b13997a5991cfe4435ccd36496d86d4cb (patch)
tree40eb7b2715cb3fd1cdd5b8ae0c577c0e5c7b39d2 /EdkModulePkg/Include
parent13c84604475a77b7b90e79eddc77e88b7a01f504 (diff)
downloadedk2-8c395f7b13997a5991cfe4435ccd36496d86d4cb.zip
edk2-8c395f7b13997a5991cfe4435ccd36496d86d4cb.tar.gz
edk2-8c395f7b13997a5991cfe4435ccd36496d86d4cb.tar.bz2
Introduce a new Guid with CName gEfiGenericPlatformVariableGuid to pair with those Unicode String names, which are forbidden to pair with gEfiGlobalVariableGuid according to newest Uefi Spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2144 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg/Include')
-rw-r--r--EdkModulePkg/Include/EdkDxe.h1
-rw-r--r--EdkModulePkg/Include/EdkPeim.h1
-rw-r--r--EdkModulePkg/Include/Guid/GenericPlatformVariable.h27
3 files changed, 29 insertions, 0 deletions
diff --git a/EdkModulePkg/Include/EdkDxe.h b/EdkModulePkg/Include/EdkDxe.h
index 2162937..7b5469b 100644
--- a/EdkModulePkg/Include/EdkDxe.h
+++ b/EdkModulePkg/Include/EdkDxe.h
@@ -58,6 +58,7 @@ Abstract:
#include <Guid/CapsuleVendor.h>
#include <Guid/CompatibleMemoryTested.h>
#include <Guid/MemoryStatusCodeRecord.h>
+#include <Guid/GenericPlatformVariable.h>
#include <Ppi/StatusCodeMemory.h>
diff --git a/EdkModulePkg/Include/EdkPeim.h b/EdkModulePkg/Include/EdkPeim.h
index a39ed5c..e76d83d 100644
--- a/EdkModulePkg/Include/EdkPeim.h
+++ b/EdkModulePkg/Include/EdkPeim.h
@@ -47,6 +47,7 @@ Abstract:
#include <Guid/CapsuleVendor.h>
#include <Guid/BootState.h>
#include <Guid/MemoryStatusCodeRecord.h>
+#include <Guid/GenericPlatformVariable.h>
#include <Ppi/PeiInMemory.h>
#include <Ppi/FlashMap.h>
diff --git a/EdkModulePkg/Include/Guid/GenericPlatformVariable.h b/EdkModulePkg/Include/Guid/GenericPlatformVariable.h
new file mode 100644
index 0000000..00ae375
--- /dev/null
+++ b/EdkModulePkg/Include/Guid/GenericPlatformVariable.h
@@ -0,0 +1,27 @@
+/*++
+
+Copyright (c) 2006, Intel Corporation
+All rights reserved. This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+Module Name:
+
+ GenericPlatformVariable.h
+
+Abstract:
+
+ The variable space Guid to pair with a Unicode string name to tag an EFI variable.
+
+--*/
+
+#ifndef _GENERIC_PLATFORM_VARIABLE_H_
+#define _GENERIC_PLATFORM_VARIABLE_H_
+
+extern EFI_GUID gEfiGenericPlatformVariableGuid;
+
+#endif