Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Contributor Author

@philclifford philclifford Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there additional restrictions or requirements for 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
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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;;
Expand Down
Loading