mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
efi_loader: EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES
Implement the EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES event group handling. Add the definition of EFI_EVENT_GROUP_AFTER_READY_TO_BOOT. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
parent
5d49b32f0a
commit
43eaf5b13f
2 changed files with 22 additions and 0 deletions
|
@ -360,10 +360,15 @@ struct efi_runtime_services {
|
|||
};
|
||||
|
||||
/* EFI event group GUID definitions */
|
||||
|
||||
#define EFI_EVENT_GROUP_EXIT_BOOT_SERVICES \
|
||||
EFI_GUID(0x27abf055, 0xb1b8, 0x4c26, 0x80, 0x48, \
|
||||
0x74, 0x8f, 0x37, 0xba, 0xa2, 0xdf)
|
||||
|
||||
#define EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES \
|
||||
EFI_GUID(0x8be0e274, 0x3970, 0x4b44, 0x80, 0xc5, \
|
||||
0x1a, 0xb9, 0x50, 0x2f, 0x3b, 0xfc)
|
||||
|
||||
#define EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE \
|
||||
EFI_GUID(0x13fa7698, 0xc831, 0x49c7, 0x87, 0xea, \
|
||||
0x8f, 0x43, 0xfc, 0xc2, 0x51, 0x96)
|
||||
|
@ -376,6 +381,10 @@ struct efi_runtime_services {
|
|||
EFI_GUID(0x7ce88fb3, 0x4bd7, 0x4679, 0x87, 0xa8, \
|
||||
0xa8, 0xd8, 0xde, 0xe5, 0x0d, 0x2b)
|
||||
|
||||
#define EFI_EVENT_GROUP_AFTER_READY_TO_BOOT \
|
||||
EFI_GUID(0x3a2a00ad, 0x98b9, 0x4cdf, 0xa4, 0x78, \
|
||||
0x70, 0x27, 0x77, 0xf1, 0xc1, 0xb)
|
||||
|
||||
#define EFI_EVENT_GROUP_RESET_SYSTEM \
|
||||
EFI_GUID(0x62da6a56, 0x13fb, 0x485a, 0xa8, 0xda, \
|
||||
0xa3, 0xdd, 0x79, 0x12, 0xcb, 0x6b)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue