1. Add AcpiTable & ComponentName2 Protocol definitions.
2. Add HardwareErrorVariable GUID definition.
EdkModulePkg: 
1. Update DxeCore to let InsatllConfigurationTable() signal the event group whenever a table entry is inserted, modified or deleted.
2. Update ConPlatform to let Simple Text In and Out  not share a stop function .

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2625 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2007-06-04 09:36:42 +00:00
parent dabd48785b
commit 06fb8ffd07
9 changed files with 403 additions and 28 deletions

View File

@@ -580,9 +580,10 @@ VOID
//
// Variable attributes
//
#define EFI_VARIABLE_NON_VOLATILE 0x00000001
#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002
#define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004
#define EFI_VARIABLE_NON_VOLATILE 0x00000001
#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002
#define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004
#define EFI_VARIABLE_HARDWARE_ERROR_RECORD 0x00000008
/**
Returns the value of a variable.
@@ -2329,7 +2330,7 @@ typedef enum {
//
// Protocols from EFI 1.10 that got thier names fixed in UEFI 2.0
// Protocols from EFI 1.10 that got their names fixed in UEFI 2.0
//
#include <Protocol/LoadedImage.h>
#include <Protocol/SimpleTextIn.h>
@@ -2409,8 +2410,11 @@ typedef enum {
#include <Protocol/Mtftp4.h>
#include <Protocol/ServiceBinding.h>
#include <Protocol/Hash.h>
#include <Protocol/AcpiTable.h>
#include <Protocol/ComponentName2.h>
#include <Guid/EventGroup.h>
#include <Guid/HardwareErrorVariable.h>
#endif