Browse Source

Merge pull request #6720 from CharlesJS/fix-m68k-scsi

Fix `'lsi53c895a' is not a valid device model name` error when starting m68k macOS VM
pull/6825/head
osy 8 months ago
committed by GitHub
parent
commit
2c52c0d211
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      Configuration/UTMQemuConfiguration+Arguments.swift

2
Configuration/UTMQemuConfiguration+Arguments.swift

@ -644,7 +644,7 @@ import Virtualization // for getting network interfaces
f()
} else if drive.interface == .scsi {
var bus = "scsi"
if system.architecture != .sparc && system.architecture != .sparc64 {
if system.architecture != .sparc && system.architecture != .sparc64 && system.architecture != .m68k {
bus = "scsi0"
if busindex == 0 {
f("-device")

Loading…
Cancel
Save