From 3a67e461deced0c7600d4c24da93049b79547a83 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Mon, 4 Jan 2021 01:00:03 -0800 Subject: [PATCH] [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. --- qemu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qemu.sh b/qemu.sh index b349691..6b0591f 100755 --- a/qemu.sh +++ b/qemu.sh @@ -25,6 +25,9 @@ for arg in $@; do gfx="" vga="" ;; + --vga) + vga="" + ;; --kvm) kvm="-enable-kvm" cpu="host"