[scripts] Allow qemu.sh to not remove VGA device

Added --vga option to qemu.sh to stop it from passing "-vga none" to
qemu. This allows the console version to act like it has a video device.
This commit is contained in:
Justin C. Miller
2021-01-04 01:00:03 -08:00
parent e477dea5c7
commit 7b23310d8b

View File

@@ -25,6 +25,9 @@ for arg in $@; do
gfx=""
vga=""
;;
--vga)
vga=""
;;
--kvm)
kvm="-enable-kvm"
cpu="host"