From aa7ddb698ccc33fe77203a054f96851db14cadb6 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 27 Jul 2026 02:42:42 +0200 Subject: [PATCH] fix: Disable modern VirtIO for Windows XP on Q35 (#2003) --- src/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/install.sh b/src/install.sh index 6a7071a5..7d3e03f3 100644 --- a/src/install.sh +++ b/src/install.sh @@ -789,6 +789,8 @@ setMachine() { # Prevent bluescreen if 64 bit PCI hole size is >2G. ARGS="-global q35-pcihost.x-pci-hole64-fix=false" + ARGS+=" -global virtio-pci.disable-modern=on" + ARGS+=" -global virtio-pci.disable-legacy=off" fi ;;