From 06c1306dc5dc907c3d371bf85da8ced5a8ce0f1b Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Tue, 17 May 2022 08:49:31 +0200 Subject: [PATCH] board/common: enable kernel quiet mode by default Signed-off-by: Joachim Wiberg --- board/common/post-image.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board/common/post-image.sh b/board/common/post-image.sh index ede26e99..808c6ae3 100755 --- a/board/common/post-image.sh +++ b/board/common/post-image.sh @@ -7,9 +7,9 @@ cat <<-EOF >"$BINARIES_DIR/qemu.sh" #!/bin/sh line=\$(stty -g) stty raw - qemu-system-x86_64 -M pc -cpu kvm64 -enable-kvm -nographic \\ - -kernel bzImage -append "rootwait root=/dev/vda console=ttyS0" \\ - -drive file=rootfs.ext2,if=virtio,format=raw \\ + qemu-system-x86_64 -M pc -cpu kvm64 -enable-kvm -nographic \\ + -kernel bzImage -append "rootwait root=/dev/vda console=ttyS0 quiet" \\ + -drive file=rootfs.ext2,if=virtio,format=raw \\ -net nic,model=virtio -net user stty "\$line" EOF