Skip to content

Commit 64eedfe

Browse files
committed
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.
1 parent 2384b0d commit 64eedfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickemu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2551,8 +2551,8 @@ QEMU_VER_LONG=$(${QEMU_IMG} --version | head -n 1 | awk '{print $3}')
25512551
QEMU_VER_SHORT="${QEMU_VER_LONG%.*}"
25522552
QEMU_VER_SHORT="${QEMU_VER_SHORT/./}"
25532553

2554-
if [ "${QEMU_VER_SHORT}" -lt 60 ]; then
2555-
echo "ERROR! QEMU 6.0.0 or newer is required, detected ${QEMU_VER_LONG}."
2554+
if [ "${QEMU_VER_SHORT}" -lt 61 ]; then
2555+
echo "ERROR! QEMU 6.1.0 or newer is required, detected ${QEMU_VER_LONG}."
25562556
exit 1
25572557
fi
25582558

0 commit comments

Comments
 (0)