test/test-functions: on PPC64 use hvc0 console

This commit is contained in:
Dimitri John Ledkov 2018-02-20 12:01:40 +00:00
parent eaa602cb14
commit 9a2e265bb0
No known key found for this signature in database
GPG key ID: CAC2D8B9CD2CA5F9

View file

@ -99,6 +99,8 @@ run_qemu() {
&& KERNEL_BIN="$EFI_MOUNT/$MACHINE_ID/$KERNEL_VER/linux"
fi
CONSOLE=ttyS0
if [[ ! "$KERNEL_BIN" ]]; then
if [[ "$LOOKS_LIKE_ARCH" ]]; then
KERNEL_BIN=/boot/vmlinuz-linux
@ -107,6 +109,7 @@ run_qemu() {
case $ARCH in
ppc64*)
KERNEL_BIN=/boot/vmlinux-$KERNEL_VER
CONSOLE=hvc0
;;
*)
KERNEL_BIN=/boot/vmlinuz-$KERNEL_VER
@ -158,7 +161,7 @@ root=/dev/sda1 \
raid=noautodetect \
loglevel=2 \
init=$PATH_TO_INIT \
console=ttyS0 \
console=$CONSOLE \
selinux=0 \
printk.devkmsg=on \
$_cgroup_args \