Thanks to the hard work by Elliotnunn and Mcayland, qemu-system-m68k supports:
-tablet style mouse
-file sharing with the host
-reading BasiliskII/SheepShaver style disk images
Note: These options are always based on the latest version of the declrom from: https://github.com/elliotnunn/classicvi ... tag/latest
macOS host
Add the declrom to the command line and make sure the line precedes any of the options below:
Code: Select all
-device nubus-virtio-mmio,romfile=declrom
Code: Select all
-device virtio-tablet-device
Code: Select all
-device virtio-9p-device,fsdev=UNIQUENAME,mount_tag="Macintosh HD"
-fsdev local,id=UNIQUENAME,security_model=none,path=/path-to-folder-on-host
Code: Select all
-blockdev driver=file,read-only=on,node-name=UNIQUENAME,filename=/path-to-disk-image-on-host
-device virtio-blk,drive=UNIQUENAME
Note: The options are the same as for a macOS host, with the exception that file sharing cannot not work due to failing patches for the virtio-9p-device!
Best,
Cat_7