From df5571dc9d94717a3eb32c56c950715b504c1b52 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 29 May 2020 02:24:09 +0200 Subject: util/board-status: Reject logs with unknown timestamps Check the output of `cbmem -t` for unknown timestamps. If present, ask the user to rebuild `cbmem`. Change-Id: Ief7aa1a698f10d9721964ad1bee057fcd9f4aa40 Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/41857 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/board_status/board_status.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index dd3d8f2c5e..31c3e7c483 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -459,6 +459,12 @@ if [ $(grep -- -dirty "${tmpdir}/${results}/coreboot_console.txt") ]; then exit $EXIT_FAILURE fi +if [ $(grep -- unknown "${tmpdir}/${results}/coreboot_timestamps.txt") ]; then + echo "Unknown timestamps found in 'coreboot_timestamps.txt'." \ + "Please rebuild the 'cbmem' utility and try again." + exit $EXIT_FAILURE +fi + # # Finish up. # -- cgit v1.2.3