From 7f07cbca3e699d398cd5d0a6e384629f50aadf6e Mon Sep 17 00:00:00 2001 From: debuggerx01 Date: Thu, 16 Jan 2025 01:36:50 +0800 Subject: [PATCH] fix(macos): Correct version user receives from quickget; add sequoia (#1550) * fix(macos): quickget macos sonoma download sequoia BaseSystem.dmg * feat: Add macOS Sequoia --------- Co-authored-by: Liam <33645555+lj3954@users.noreply.github.com> --- quickemu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 41d5b7a..743c3a2 100755 --- a/quickemu +++ b/quickemu @@ -414,7 +414,7 @@ function configure_cpu() { # A CPU with fma is required for Metal support # A CPU with invtsc is required for macOS to boot case ${macos_release} in - ventura|sonoma) + ventura|sonoma|sequoia) # A CPU with AVX2 support is required for >= macOS Ventura if check_cpu_flag sse4_2 && check_cpu_flag avx2; then if [ "${HOST_CPU_VENDOR}" != "GenuineIntel" ] && [ -z "${HYPERVISOR}" ]; then @@ -766,7 +766,7 @@ function configure_os_quirks() { # * VirtIO Memory Balloning is supported since Big Sur (https://pmhahn.github.io/virtio-balloon/) # * VirtIO RNG is supported since Big Sur, but exposed to all guests by default. case ${macos_release} in - big-sur|monterey|ventura|sonoma) + big-sur|monterey|ventura|sonoma|sequoia) BALLOON="-device virtio-balloon" MAC_DISK_DEV="virtio-blk-pci" NET_DEVICE="virtio-net"