diff --git a/quickemu b/quickemu index baee457459..457ba49fec 100755 --- a/quickemu +++ b/quickemu @@ -424,7 +424,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|sequoia) + ventura|sonoma|sequoia|tahoe) # 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 @@ -777,7 +777,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|sequoia) + big-sur|monterey|ventura|sonoma|sequoia|tahoe) BALLOON="-device virtio-balloon" MAC_DISK_DEV="virtio-blk-pci" NET_DEVICE="virtio-net" diff --git a/quickget b/quickget index 976e922d8b..0d2dc72fe6 100755 --- a/quickget +++ b/quickget @@ -836,7 +836,7 @@ function releases_maboxlinux() { } function releases_macos() { - echo mojave catalina big-sur monterey ventura sonoma sequoia + echo mojave catalina big-sur monterey ventura sonoma sequoia tahoe } function releases_mageia() { @@ -2118,6 +2118,8 @@ function get_macos() { BOARD_ID="Mac-827FAC58A8FDFA22";; sequoia|15) BOARD_ID="Mac-53FDB3D8DB8CA971";; + tahoe|26) + BOARD_ID="Mac-E1008331FDC96864";; # Mac-E1008331FDC96864 is MacBookPro16,1 (16-inch Late 2019) *) echo "ERROR! Unknown release: ${RELEASE}" releases_macos exit 1;;