diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-08-25 08:19:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-08-25 08:19:59 +0200 |
commit | a205184ee0da1d819a5aada8c2d8640956ec4400 (patch) | |
tree | e040caefca52cdf2f6a2c639c589d34a86aae969 | |
parent | 8af7b2ce46031724b626a837bb655649d44f98cd (diff) |
Fix
-rwxr-xr-x | test-machine-m1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-machine-m1 b/test-machine-m1 index c52d2e1..fc4f7b1 100755 --- a/test-machine-m1 +++ b/test-machine-m1 @@ -4,6 +4,7 @@ # # - Need QEMU 7 or later. # - Expect to find QEMU_EFI.fd next to disk.img. +# - Replaced -usb (EHCI) with -device qemu-xhci (XHCI). # - Must run on either P or E cores (https://gitlab.com/qemu-project/qemu/-/issues/1002) # - On M1 0-3 are E, 4-7 are P (lscpu, lscpu -e) # @@ -82,7 +83,7 @@ fi -drive "if=none,id=disk0,file=$dir/disk.img,format=raw" \ -device "virtio-blk-pci,scsi=off,drive=disk0" \ \ - -usb \ + -device qemu-xhci \ -device usb-tablet \ \ -chardev stdio,id=qmp \ |