From 454121acb160d51a980fa14cfc446af03fa65498 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Sun, 22 May 2022 02:51:10 +0200 Subject: [PATCH] run_qemu.sh: use -cpu host as a workaround for #1011003 and because it's faster --- run_qemu.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run_qemu.sh b/run_qemu.sh index 6b7f643..433927e 100755 --- a/run_qemu.sh +++ b/run_qemu.sh @@ -32,6 +32,7 @@ qemu-img create -f qcow2 -b "$(realpath $cachedir)/debian-$DEFAULT_DIST.qcow" -F # minicom -D 'unix#/tmp/ttyS0' ret=0 timeout 20m qemu-system-x86_64 \ + -cpu host \ -no-user-config \ -M accel=kvm:tcg -m 1G -nographic \ -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 \