board/common: enable kernel quiet mode by default

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg
2022-05-17 08:49:31 +02:00
parent 976c45b2b1
commit 06c1306dc5
+3 -3
View File
@@ -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