imcv: Added EFI HCRTM event

This commit is contained in:
Andreas Steffen
2016-06-30 16:20:10 +02:00
parent ee2644dd3f
commit 37ffa99cf2
+7 -2
View File
@@ -61,6 +61,8 @@ enum event_type_t {
EV_EFI_PLATFORM_FIRMWARE_BLOB = 0x80000008, EV_EFI_PLATFORM_FIRMWARE_BLOB = 0x80000008,
EV_EFI_HANDOFF_TABLES = 0x80000009, EV_EFI_HANDOFF_TABLES = 0x80000009,
EV_EFI_HCRTM_EVENT = 0x80000010,
EV_EFI_VARIABLE_AUTHORITY = 0x800000E0 EV_EFI_VARIABLE_AUTHORITY = 0x800000E0
}; };
@@ -85,7 +87,6 @@ ENUM_BEGIN(event_type_names, EV_PREBOOT_CERT, EV_OMIT_BOOT_DEVICE_EVENTS,
"Nonhost Info", "Nonhost Info",
"Omit Boot Device Events" "Omit Boot Device Events"
); );
ENUM_NEXT(event_type_names, EV_EFI_EVENT_BASE, EV_EFI_HANDOFF_TABLES, ENUM_NEXT(event_type_names, EV_EFI_EVENT_BASE, EV_EFI_HANDOFF_TABLES,
EV_OMIT_BOOT_DEVICE_EVENTS, EV_OMIT_BOOT_DEVICE_EVENTS,
"EFI Event Base", "EFI Event Base",
@@ -99,8 +100,12 @@ ENUM_NEXT(event_type_names, EV_EFI_EVENT_BASE, EV_EFI_HANDOFF_TABLES,
"EFI Platform Firmware Blob", "EFI Platform Firmware Blob",
"EFI Handoff Tables" "EFI Handoff Tables"
); );
ENUM_NEXT(event_type_names, EV_EFI_VARIABLE_AUTHORITY, EV_EFI_VARIABLE_AUTHORITY, ENUM_NEXT(event_type_names, EV_EFI_HCRTM_EVENT, EV_EFI_HCRTM_EVENT,
EV_EFI_HANDOFF_TABLES, EV_EFI_HANDOFF_TABLES,
"EFI HCRTM Event"
);
ENUM_NEXT(event_type_names, EV_EFI_VARIABLE_AUTHORITY, EV_EFI_VARIABLE_AUTHORITY,
EV_EFI_HCRTM_EVENT,
"EFI Variable Authority" "EFI Variable Authority"
); );
ENUM_END(event_type_names, EV_EFI_VARIABLE_AUTHORITY); ENUM_END(event_type_names, EV_EFI_VARIABLE_AUTHORITY);