Added additional check for crtm for the event summary section of the

support rim details page using EV_EFI_PLATFORM_FIRMWARE_BLOB
This commit is contained in:
Cyrus 2023-03-31 10:43:36 -04:00
parent 1adedfefe1
commit fe5a509f9a

View File

@ -442,7 +442,8 @@ public class ReferenceManifestDetailsPageController
for (TpmPcrEvent tpe : eventList) {
contentStr = tpe.getEventContentStr();
// check for specific events
if (contentStr.contains("CRTM")) {
if (contentStr.contains("CRTM")
|| tpe.getEventTypeStr().contains("EV_EFI_PLATFORM_FIRMWARE_BLOB")) {
crtm = true;
} else if (contentStr.contains("shimx64.efi")
|| contentStr.contains("bootmgfw.efi")) {