From 333719ea3efb0c24443b3408e651f4d236182ef6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 11 Sep 2023 14:45:44 +0100 Subject: [PATCH] arm/qemu-generic-arm64: force off KVM in qemu The sbsa-ref machine can't use KVM because it's an entire emulated machine, not a virtual machine. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-arm/conf/machine/qemu-generic-arm64.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arm/conf/machine/qemu-generic-arm64.conf b/meta-arm/conf/machine/qemu-generic-arm64.conf index edd15475..6925854f 100644 --- a/meta-arm/conf/machine/qemu-generic-arm64.conf +++ b/meta-arm/conf/machine/qemu-generic-arm64.conf @@ -30,3 +30,5 @@ QB_DEFAULT_KERNEL = "none" QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd -pflash @DEPLOY_DIR_IMAGE@/SBSA_FLASH0.fd -pflash @DEPLOY_DIR_IMAGE@/SBSA_FLASH1.fd" QB_SERIAL_OPT = "-device virtio-serial-pci -chardev null,id=virtcon -device virtconsole,chardev=virtcon" QB_TCPSERIAL_OPT = "-device virtio-serial-pci -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon" +# sbsa-ref is a true virtual machine so can't use KVM +QEMU_USE_KVM = "0"