mirror of https://github.com/acidanthera/audk.git
Prompt the PI specification version to 1.20 and UEFI specification version to 2.30, for PEI_SERVICES_TABLE, DXE_SERVICES_TABLE, EFI_BOOT_SERVICES_TABLE, EFI_RUNTIME_SERVICES_TABLE.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9513 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6ee21b60a8
commit
c6204371fd
|
@ -655,7 +655,7 @@ EFI_STATUS
|
|||
// DXE Services Table
|
||||
//
|
||||
#define DXE_SERVICES_SIGNATURE 0x565245535f455844ULL
|
||||
#define DXE_SERVICES_REVISION ((1<<16) | (00))
|
||||
#define DXE_SERVICES_REVISION ((1<<16) | (20))
|
||||
|
||||
typedef struct {
|
||||
///
|
||||
|
|
|
@ -700,7 +700,7 @@ EFI_STATUS
|
|||
// PEI Specification Revision information
|
||||
//
|
||||
#define PEI_SPECIFICATION_MAJOR_REVISION 1
|
||||
#define PEI_SPECIFICATION_MINOR_REVISION 0
|
||||
#define PEI_SPECIFICATION_MINOR_REVISION 20
|
||||
///
|
||||
/// Inconsistent with specification here:
|
||||
/// In PI1.0 spec, PEI_SERVICES_SIGNATURE is defined as 0x5652455320494550. But
|
||||
|
|
|
@ -1729,7 +1729,7 @@ EFI_STATUS
|
|||
#define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | (02))
|
||||
|
||||
#define EFI_RUNTIME_SERVICES_SIGNATURE SIGNATURE_64 ('R','U','N','T','S','E','R','V')
|
||||
#define EFI_RUNTIME_SERVICES_REVISION EFI_2_10_SYSTEM_TABLE_REVISION
|
||||
#define EFI_RUNTIME_SERVICES_REVISION EFI_2_30_SYSTEM_TABLE_REVISION
|
||||
|
||||
///
|
||||
/// EFI Runtime Services Table
|
||||
|
@ -1781,7 +1781,7 @@ typedef struct {
|
|||
|
||||
|
||||
#define EFI_BOOT_SERVICES_SIGNATURE SIGNATURE_64 ('B','O','O','T','S','E','R','V')
|
||||
#define EFI_BOOT_SERVICES_REVISION EFI_2_10_SYSTEM_TABLE_REVISION
|
||||
#define EFI_BOOT_SERVICES_REVISION EFI_2_30_SYSTEM_TABLE_REVISION
|
||||
|
||||
///
|
||||
/// EFI Boot Services Table
|
||||
|
|
Loading…
Reference in New Issue