From 06d08607ccedf86be5bea48bdd7b5c9856bf5fd0 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Fri, 3 Jan 2020 10:41:52 +0100 Subject: [PATCH] run_qemu.sh: let qemu autodetect if kvm is available and fall back to tcg --- run_qemu.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/run_qemu.sh b/run_qemu.sh index 548b9fb..c01a150 100755 --- a/run_qemu.sh +++ b/run_qemu.sh @@ -27,13 +27,9 @@ trap cleanup INT TERM EXIT # the path to debian-$DEFAULT_DIST.qcow must be absolute or otherwise qemu will # look for the path relative to debian-$DEFAULT_DIST-overlay.qcow qemu-img create -f qcow2 -b "$(realpath $cachedir)/debian-$DEFAULT_DIST.qcow" "$tmpdir/debian-$DEFAULT_DIST-overlay.qcow" -KVM= -if [ -e /dev/kvm ]; then - KVM="-enable-kvm" -fi # to connect to serial use: # minicom -D 'unix#/tmp/ttyS0' -qemu-system-x86_64 $KVM -m 1G -nographic \ +qemu-system-x86_64 -M accel=kvm:tcg -m 1G -nographic \ -monitor unix:/tmp/monitor,server,nowait \ -serial unix:/tmp/ttyS0,server,nowait \ -serial unix:/tmp/ttyS1,server,nowait \