From 1421492f87d90615472814e94e26eda31db1f96b Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 27 Oct 2021 11:56:56 +0100 Subject: [PATCH] Add initial support for macOS Monterey --- quickemu | 4 ++-- quickget | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/quickemu b/quickemu index 5843308..9b1e697 100755 --- a/quickemu +++ b/quickemu @@ -469,7 +469,7 @@ function vm_boot() { NET_DEVICE="vmxnet3" USB_HOST_PASSTHROUGH_CONTROLLER="usb-ehci" ;; - big-sur) + big-sur|monterey) BALLOON="-device virtio-balloon" MAC_DISK_DEV="virtio-blk-pci" NET_DEVICE="virtio-net" @@ -639,7 +639,7 @@ function vm_boot() { # - VGA is used on Mojave, although available resolutions are all 4:3 # - High Sierra will run at the default 1920x1080 only. case ${macos_release} in - catalina|big-sur) DISPLAY_DEVICE="qxl";; + catalina|big-sur|monterey) DISPLAY_DEVICE="qxl";; *) DISPLAY_DEVICE="VGA";; esac elif [ "${guest_os}" == "windows" ]; then diff --git a/quickget b/quickget index f81aa05..5928782 100755 --- a/quickget +++ b/quickget @@ -180,7 +180,8 @@ function releases_macos() { echo high-sierra \ mojave \ catalina \ - big-sur + big-sur \ + monterey } function releases_popos() { @@ -760,6 +761,9 @@ function get_macos() { big-sur) BOARD_ID="Mac-E43C1C25D4880AD6" MLB="00000000000000000";; + monterey) + BOARD_ID="Mac-06F11F11946D27C5" + MLB="00000000000000000";; *) echo "ERROR! Unknown release: ${RELEASE}" releases_macos exit 1;;