It's easy to support and we do have the option for other architectures. Signed-off-by: Radim Krčmář <rkrcmar@xxxxxxxxxx> --- x86/run | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x86/run b/x86/run index f319b68ef693..e59c6c590a20 100755 --- a/x86/run +++ b/x86/run @@ -9,6 +9,9 @@ if [ -z "$STANDALONE" ]; then source scripts/arch-run.bash fi +ACCEL=$(get_qemu_accelerator) || + exit $? + qemu=$(search_qemu_binary) || exit $? @@ -34,8 +37,8 @@ else pc_testdev="-device testdev,chardev=testlog -chardev file,id=testlog,path=msr.out" fi -command="${qemu} -nodefaults -enable-kvm $pc_testdev -vnc none -serial stdio $pci_testdev $hyperv_testdev" -command+=" -kernel" +command="${qemu} -nodefaults $pc_testdev -vnc none -serial stdio $pci_testdev $hyperv_testdev" +command+=" -machine accel=$ACCEL -kernel" command="$(timeout_cmd) $command" run_qemu ${command} "$@" -- 2.13.2