fix(windows-server): default to e1000 network device. fixes #1315
This commit is contained in:
parent
e035121f71
commit
5e90e336fe
3
quickemu
3
quickemu
|
|
@ -747,7 +747,8 @@ function configure_os_quirks() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case ${guest_os} in
|
case ${guest_os} in
|
||||||
*bsd|linux*|windows*) NET_DEVICE="virtio-net";;
|
windows-server) NET_DEVICE="e1000";;
|
||||||
|
*bsd|linux*|windows) NET_DEVICE="virtio-net";;
|
||||||
freedos) sound_card="sb16";;
|
freedos) sound_card="sb16";;
|
||||||
*solaris) usb_controller="xhci"
|
*solaris) usb_controller="xhci"
|
||||||
sound_card="ac97";;
|
sound_card="ac97";;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue