From 770b36d4f3bf451295eb2c77558e43de48b72bb9 Mon Sep 17 00:00:00 2001 From: iadgovuser58 <124906646+iadgovuser58@users.noreply.github.com> Date: Fri, 5 Jul 2024 09:26:16 -0400 Subject: [PATCH] update output message in main --- .../src/main/java/hirs/tcg_eventlog/Main.java | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tools/tcg_eventlog_tool/src/main/java/hirs/tcg_eventlog/Main.java b/tools/tcg_eventlog_tool/src/main/java/hirs/tcg_eventlog/Main.java index 3f992872..39a24549 100644 --- a/tools/tcg_eventlog_tool/src/main/java/hirs/tcg_eventlog/Main.java +++ b/tools/tcg_eventlog_tool/src/main/java/hirs/tcg_eventlog/Main.java @@ -136,16 +136,13 @@ final class Main { + evLog.getEventList().size() + " events:\n\n"); } if (evLog.getVendorTableFileStatus() == FILESTATUS_NOT_ACCESSIBLE) { - writeOut("*** WARNING: The file vendor-table.json file was not accessible so data " - + "in some Secure Boot PCR 7 events cannot be processed.\n\n"); + writeOut("*** WARNING: The file vendor-table.json was not accessible from the " + + "filesystem or the code, so some event data shown in the output of this " + + "tool may be outdated or omitted.\n\n"); } else if (evLog.getVendorTableFileStatus() == FILESTATUS_FROM_CODE) { writeOut("*** NOTE: " + "The file vendor-table.json file was not accessible from the filesystem,\n" - + " so the vendor-table.json from code was " - + "used. If updates were made in the\n" - + " filesystem file, they will not be reflected. " - + "This affects parsing in some\n" - + " Secure Boot PCR 7 events.\n\n"); + + " so the vendor-table.json from code was used.\n\n"); } } int eventCount = 0;