fix(macos): prevent default sound card overriding the compatible selection

Signed-off-by: Martin Wimpress <martin@wimpress.org>
This commit is contained in:
Martin Wimpress 2026-01-26 01:31:40 +00:00 committed by Martin Wimpress
parent a98a416133
commit 36d1c7f3de
1 changed files with 2 additions and 2 deletions

View File

@ -1103,7 +1103,7 @@ function configure_os_quirks() {
NET_DEVICE="virtio-net-pci"
USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci"
GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off"
sound_card="${sound_card:-virtio-sound-pci}"
sound_card="virtio-sound-pci"
usb_controller="xhci";;
big-sur)
# Big Sur uses VirtIO but usb-audio/VoodooHDA don't work reliably
@ -1113,7 +1113,7 @@ function configure_os_quirks() {
NET_DEVICE="virtio-net-pci"
USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci"
GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off"
sound_card="${sound_card:-ich9-intel-hda}"
sound_card="ich9-intel-hda"
usb_controller="xhci";;
*)
# Backwards compatibility if no macos_release is specified.