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>
This commit is contained in:
parent
82145a1275
commit
0dcfb59220
|
@ -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.
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue