Skip to content

Commit

Permalink
fix(macos): Correct version user receives from quickget; add sequoia (#…
Browse files Browse the repository at this point in the history
…1550)

* fix(macos): quickget macos sonoma download sequoia BaseSystem.dmg

* feat: Add macOS Sequoia

---------

Co-authored-by: Liam <33645555+lj3954@users.noreply.github.com>
  • Loading branch information
debuggerx01 and lj3954 authored Jan 15, 2025
1 parent 622ecfd commit 37190c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ function releases_maboxlinux() {
}

function releases_macos() {
echo mojave catalina big-sur monterey ventura sonoma
echo mojave catalina big-sur monterey ventura sonoma sequoia
}

function releases_mageia() {
Expand Down Expand Up @@ -2063,6 +2063,8 @@ function get_macos() {
ventura|13)
BOARD_ID="Mac-BE088AF8C5EB4FA2";;
sonoma|14)
BOARD_ID="Mac-827FAC58A8FDFA22";;
sequoia|15)
BOARD_ID="Mac-53FDB3D8DB8CA971";;
*) echo "ERROR! Unknown release: ${RELEASE}"
releases_macos
Expand Down

0 comments on commit 37190c7

Please sign in to comment.