From 914c5c06e075887ce658a01f5e3063607574ed99 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Fri, 10 May 2024 11:44:47 -0700 Subject: [PATCH] verify-kernel-boot-log.sh: add "standalone" dmesg.txt back Interleaving could be useful when it's a problem with a sound daemon but tend to turn these off and most of the time it's just making SOF logs harder to read. Keep boot_log.txt which is useful for all non-audio issues. Fixes commit c8565e8b210d ("verify-kernel-boot-log.sh: fix missing boot logs on failure") Signed-off-by: Marc Herbert --- test-case/verify-kernel-boot-log.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test-case/verify-kernel-boot-log.sh b/test-case/verify-kernel-boot-log.sh index d19f5ee3..93caa667 100755 --- a/test-case/verify-kernel-boot-log.sh +++ b/test-case/verify-kernel-boot-log.sh @@ -24,7 +24,10 @@ boot_log_exit_handler() { local exit_code=$1 + # For issues with sound daemons, display, USB, network, NTP, systemd, etc. journalctl --boot > "$LOG_ROOT"/boot_log.txt + # More focused + journalctl --dmesg > "$LOG_ROOT"/dmesg.txt print_test_result_exit "$exit_code" }