nixos/test-driver: use usb-ehci controller instead of piix3-usb-uhci
On my system this change offers ~5X speed up of nixosTests.boot.biosUsb and nixosTests.boot.uefiUsb tests.
This commit is contained in:
parent
7a1fbc38a4
commit
b2319b086c
|
@ -307,8 +307,9 @@ class Machine:
|
||||||
start_command += "-cdrom " + args["cdrom"] + " "
|
start_command += "-cdrom " + args["cdrom"] + " "
|
||||||
|
|
||||||
if "usb" in args:
|
if "usb" in args:
|
||||||
|
# https://github.com/qemu/qemu/blob/master/docs/usb2.txt
|
||||||
start_command += (
|
start_command += (
|
||||||
"-device piix3-usb-uhci -drive "
|
"-device usb-ehci -drive "
|
||||||
+ "id=usbdisk,file="
|
+ "id=usbdisk,file="
|
||||||
+ args["usb"]
|
+ args["usb"]
|
||||||
+ ",if=none,readonly "
|
+ ",if=none,readonly "
|
||||||
|
|
Loading…
Reference in New Issue