Skip to content

Commit

Permalink
Merge pull request #6720 from CharlesJS/fix-m68k-scsi
Browse files Browse the repository at this point in the history
Fix `'lsi53c895a' is not a valid device model name` error when starting m68k macOS VM
  • Loading branch information
osy authored Nov 20, 2024
2 parents 662dfb9 + 06c35b8 commit 2c52c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/UTMQemuConfiguration+Arguments.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 2c52c0d

Please sign in to comment.