ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
13 lines
594 B
Diff
13 lines
594 B
Diff
Index: virt-manager-0.10.0/virtManager/uihelpers.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/uihelpers.py
|
|
+++ virt-manager-0.10.0/virtManager/uihelpers.py
|
|
@@ -332,6 +332,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() == "kvm" and
|
|
vm.get_machtype() == "pseries"):
|