virt-manager/virtman-eepro100.diff
Charles Arnold 304b81595d - bnc#718861 - [SLES11SP2beta5] virt-manager unable to boot
Windows2008 guest with virtio disk and network device (kvm)
- Update to virt-manager 0.9.0 
  * Use a hiding toolbar for fullscreen mode
  * Use libguestfs to show guest packagelist and more (Richard W.M. Jones)
  * Basic 'New VM' wizard support for LXC guests
  * Remote serial console access (with latest libvirt)
  * Remote URL guest installs (with latest libvirt)
  * Add Hardware: Support <filesystem> devices
  * Add Hardware: Support <smartcard> devices (Marc-André Lureau)
  * Enable direct interface selection for qemu/kvm (Gerhard Stenzel)
  * Allow viewing and changing disk serial number
- Update to virtinst 0.600.0
  * virt-install: Various improvements to enable LXC/container guests:
  * New --filesystem option for <filesystem> devices
  * New --init option for container <init> path
  * New --container option (similar to --paravirt or --hvm)
  * virt-install: Make --location remotely (with latest libvirt)
  * virt-install: New --smartcard option for <smartcard> devices
  * (Marc-André Lureau)
  * virt-install: New --numatune option for building guest <numatune> XML
  * virt-install: option to set --disk error_policy=
  * virt-install: option to set --disk serial=

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=59
2011-09-20 15:08:57 +00:00

13 lines
602 B
Diff

Index: virt-manager-0.9.0/src/virtManager/uihelpers.py
===================================================================
--- virt-manager-0.9.0.orig/src/virtManager/uihelpers.py
+++ virt-manager-0.9.0/src/virtManager/uihelpers.py
@@ -290,6 +290,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")