From 64eedfe7c558e09892210d4824c9019c3e0f4d2f Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 25 Jan 2026 12:40:26 +0000 Subject: [PATCH] build(quickemu): require QEMU 6.1.0 minimum - Raise global minimum QEMU version from 6.0.0 to 6.1.0. - The option -global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off used for macOS guests is only available in QEMU 6.1.0 and later; prefer raising the global requirement rather than adding per-flag conditionals. - Update version check and error message in quickemu. BREAKING CHANGE: Require QEMU 6.1.0; older QEMU will fail the version check. --- quickemu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 609f47e..b6565cd 100755 --- a/quickemu +++ b/quickemu @@ -2551,8 +2551,8 @@ QEMU_VER_LONG=$(${QEMU_IMG} --version | head -n 1 | awk '{print $3}') QEMU_VER_SHORT="${QEMU_VER_LONG%.*}" QEMU_VER_SHORT="${QEMU_VER_SHORT/./}" -if [ "${QEMU_VER_SHORT}" -lt 60 ]; then - echo "ERROR! QEMU 6.0.0 or newer is required, detected ${QEMU_VER_LONG}." +if [ "${QEMU_VER_SHORT}" -lt 61 ]; then + echo "ERROR! QEMU 6.1.0 or newer is required, detected ${QEMU_VER_LONG}." exit 1 fi