Michael Bacarella has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30121
Change subject: util/board_status/board_status.sh: use sudo for local dmesg too ......................................................................
util/board_status/board_status.sh: use sudo for local dmesg too
Some systems have started locking down unprivileged user access to dmesg.
Signed-off-by: Michael Bacarella michael.bacarella@gmail.com Change-Id: I60061832e88fc6c549f6d5d7de276da650c4ca60 --- M util/board_status/board_status.sh 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/21/30121/1
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index bba3d1f..8af3dd8 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -403,7 +403,7 @@ cmd_nonfatal $LOCAL "$cbmem_cmd -t" "${tmpdir}/${results}/coreboot_timestamps.txt"
echo "Getting local dmesg" - cmd $LOCAL dmesg "${tmpdir}/${results}/kernel_log.txt" + cmd $LOCAL sudo dmesg "${tmpdir}/${results}/kernel_log.txt" fi
#