From 9e09461c655b17117f97f55e1087a4d02cb44162 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 14 Jan 2022 09:24:24 -0700 Subject: [PATCH] scripts: Change QEMU binary name `kvm` is a symlink to the `qemu-system-x86_64`. Use this name instead so the script can be used on other distros without modification. Signed-off-by: Tim Crawford --- scripts/qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qemu.sh b/scripts/qemu.sh index 357db1f..5b43b02 100755 --- a/scripts/qemu.sh +++ b/scripts/qemu.sh @@ -17,7 +17,7 @@ then fi MODEL_DIR="$(realpath "models/${MODEL}")" -kvm -M q35 -m 4096 -vga std \ +qemu-system-x86_64 -M q35 -m 4096 -vga std \ -bios "build/${MODEL}/firmware.rom" \ -chardev stdio,mux=on,id=debug \ -device isa-serial,index=2,chardev=debug \