d9d300204b
* Support for adding usb redirection devices (Marc-André Lureau) * Option to switch usb controller to support usb2.0 (Marc-André Lureau) * Option to specify machine type for non-x86 guests (Li Zhang) * Support for filesystem device type and write policy (Deepak C Shetty) * Many bug fixes! - Update to virtinst 0.600.1 * virt-install: --redir option for usb redirection (Marc-André Lureau) * virt-install: Advanced --controller support for usb2 (Marc-André Lureau) * Many bug fixes and minor improvments. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=86
13 lines
602 B
Diff
13 lines
602 B
Diff
Index: virt-manager-0.9.1/src/virtManager/uihelpers.py
|
|
===================================================================
|
|
--- virt-manager-0.9.1.orig/src/virtManager/uihelpers.py
|
|
+++ virt-manager-0.9.1/src/virtManager/uihelpers.py
|
|
@@ -309,6 +309,7 @@ def populate_netmodel_combo(vm, combo):
|
|
if vm.is_hvm():
|
|
mod_list = ["rtl8139", "ne2k_pci", "pcnet", "e1000"]
|
|
if vm.get_hv_type() in ["kvm", "qemu", "test"]:
|
|
+ mod_list.append("eepro100")
|
|
mod_list.append("virtio")
|
|
if vm.get_hv_type() in ["xen", "test"]:
|
|
mod_list.append("netfront")
|