diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-28 05:58:38 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-28 05:58:38 +0000 |
commit | b51e6bc460faece1e936a247fcbc0680bf487d2d (patch) | |
tree | c2eb46cd643a7d1b0a2bdd84643e58fbe6bfe970 /IntelFrameworkPkg/Include/Common | |
parent | 564995cdf55ca9dc057d0c966947caa7ace20e21 (diff) | |
download | edk2-platforms-b51e6bc460faece1e936a247fcbc0680bf487d2d.tar.xz |
1. Add PeiDxeDebugLibReportStatusCode.inf and UefiLibFramework/UefiLib.inf
2. Add FRAMEWORK_MIDIA_FW_VOL_FILEPATH_DEVICE_PATH definition in FrameworkDxeCis.h
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2830 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include/Common')
-rw-r--r-- | IntelFrameworkPkg/Include/Common/DataHubRecords.h | 1 | ||||
-rw-r--r-- | IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/IntelFrameworkPkg/Include/Common/DataHubRecords.h b/IntelFrameworkPkg/Include/Common/DataHubRecords.h index eeb6794edf..bac5915361 100644 --- a/IntelFrameworkPkg/Include/Common/DataHubRecords.h +++ b/IntelFrameworkPkg/Include/Common/DataHubRecords.h @@ -26,6 +26,7 @@ #define EFI_PROCESSOR_SUBCLASS_VERSION 0x00010000
+#include <Protocol/DevicePath.h>
#pragma pack(1)
diff --git a/IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h b/IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h index 197fa7c5d2..08af44fe9f 100644 --- a/IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h +++ b/IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h @@ -66,6 +66,20 @@ typedef struct { #define EFI_EVENT_SIGNAL_READY_TO_BOOT 0x00000203
#define EFI_EVENT_SIGNAL_LEGACY_BOOT 0x00000204
+
+typedef struct {
+ EFI_DEVICE_PATH_PROTOCOL Header;
+ EFI_GUID TianoSpecificDevicePath;
+ UINT32 Type;
+} TIANO_DEVICE_PATH;
+
+#define TIANO_MEDIA_FW_VOL_FILEPATH_DEVICE_PATH_TYPE 0x01
+typedef struct {
+ TIANO_DEVICE_PATH Tiano;
+ EFI_GUID NameGuid;
+} FRAMEWORK_MEDIA_FW_VOL_FILEPATH_DEVICE_PATH;
+
+
//
// Function prototype for invoking a function on an Application Processor
// Used by both the SMM infrastructure and the MP Services Protocol
|