diff options
author | David Hendricks <david.hendricks@gmail.com> | 2017-09-16 18:43:08 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-02-16 22:40:10 +0000 |
commit | 0dcfb592205cfc8216c7cfd5f60f77b240b2bd4e (patch) | |
tree | d62bae2c0dedd6fa677e9e57238132ee3c0d0f8a /util/board_status | |
parent | 82145a1275e36e8ed528ab58f812d5e634b9c574 (diff) |
board_status: Don't fetch dmesg via SSH when run over serial
It doesn't make much sense to try and obtain dmesg via SSH if we're
using the serial port. Serial should only be used to obtain dmesg if
SSH is unavailable.
Change-Id: Iec70e64666f9446cf7e98a0fbcaa1cd5cefd8898
Signed-off-by: David Hendricks <david.hendricks@gmail.com>
Reviewed-on: https://review.coreboot.org/21567
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/board_status')
-rwxr-xr-x | util/board_status/board_status.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 8927bc012e..dc821049da 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -146,8 +146,7 @@ get_serial_bootlog () { echo echo "Waiting to receive boot log from $TTY" - echo "Press [Enter] when the boot is complete and the" - echo "system is ready for ssh to get the dmesg log." + echo "Press [Enter] when the boot is complete." echo if [ $tput_not_available -eq 0 ]; then @@ -371,13 +370,13 @@ if [ -z "$SERIAL_DEVICE" ]; then cmd $REMOTE "$cbmem_cmd -c" "${tmpdir}/${results}/coreboot_console.txt" echo "Getting timestamp data" cmd_nonfatal $REMOTE "$cbmem_cmd -t" "${tmpdir}/${results}/coreboot_timestamps.txt" + + echo "Getting remote dmesg" + cmd $REMOTE dmesg "${tmpdir}/${results}/kernel_log.txt" else get_serial_bootlog "$SERIAL_DEVICE" "$SERIAL_PORT_SPEED" "${tmpdir}/${results}/coreboot_console.txt" fi -echo "Getting remote dmesg" -cmd $REMOTE dmesg "${tmpdir}/${results}/kernel_log.txt" - # # Finish up. # |