diff options
| author | sickcodes <[email protected]> | 2024-03-27 13:07:30 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2024-03-27 13:07:30 +0000 |
| commit | a208578bf0c8173f7b4f666144f819afde509931 (patch) | |
| tree | 570cb7a2d7c10c96d2857810df7a388f3b9f4594 /Dockerfile | |
| parent | Update submodule (diff) | |
| download | docker-osx-a208578bf0c8173f7b4f666144f819afde509931.tar.xz docker-osx-a208578bf0c8173f7b4f666144f819afde509931.zip | |
Merge @kholia/OSX-KVM Set XHCI controller to qemu-xhci for USB keyboard/ mouse on macOS 14.4 #238
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -197,7 +197,8 @@ RUN touch Launch.sh \ && tee -a Launch.sh <<< '-cpu ${CPU:-Penryn},${CPUID_FLAGS:-vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check,}${BOOT_ARGS} \' \ && tee -a Launch.sh <<< '-machine q35,${KVM-"accel=kvm:tcg"} \' \ && tee -a Launch.sh <<< '-smp ${CPU_STRING:-${SMP:-4},cores=${CORES:-4}} \' \ - && tee -a Launch.sh <<< '-usb -device usb-kbd -device usb-tablet \' \ + && tee -a Launch.sh <<< '-device qemu-xhci,id=xhci \' \ + && tee -a Launch.sh <<< '-device usb-kbd,bus=xhci.0 -device usb-tablet,bus=xhci.0 \' \ && tee -a Launch.sh <<< '-device isa-applesmc,osk=ourhardworkbythesewordsguardedpleasedontsteal\(c\)AppleComputerInc \' \ && tee -a Launch.sh <<< '-drive if=pflash,format=raw,readonly=on,file=/home/arch/OSX-KVM/OVMF_CODE.fd \' \ && tee -a Launch.sh <<< '-drive if=pflash,format=raw,file=/home/arch/OSX-KVM/OVMF_VARS-1024x768.fd \' \ |