Emulate the host processor

This commit is contained in:
Héctor Molinero Fernández 2021-11-15 19:51:53 +01:00
parent cc0409831a
commit 49ed398608

View File

@ -10,7 +10,7 @@ set -- "$@" -drive file=/var/lib/qemu/image/reactos.qcow2,index=0,media=disk,for
set -- "$@" -usb -device usb-tablet -k "${VM_KEYBOARD:?}"

if [ "${VM_KVM:?}" = true ] && [ -c /dev/kvm ]; then
set -- "$@" -accel kvm
set -- "$@" -accel kvm -cpu host
else
set -- "$@" -accel tcg
fi