Skip to content

Commit 2c52c0d

Browse files
authored
Merge pull request #6720 from CharlesJS/fix-m68k-scsi
Fix `'lsi53c895a' is not a valid device model name` error when starting m68k macOS VM
2 parents 662dfb9 + 06c35b8 commit 2c52c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Configuration/UTMQemuConfiguration+Arguments.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ import Virtualization // for getting network interfaces
644644
f()
645645
} else if drive.interface == .scsi {
646646
var bus = "scsi"
647-
if system.architecture != .sparc && system.architecture != .sparc64 {
647+
if system.architecture != .sparc && system.architecture != .sparc64 && system.architecture != .m68k {
648648
bus = "scsi0"
649649
if busindex == 0 {
650650
f("-device")

0 commit comments

Comments
 (0)