- bsc#983241 - Using eepro1000 emulated driver leads to 'eepro100'

is not a valid device model name
  Drop virtman-eepro100.patch
- Remove unecessary hyphen '-' from tumbleweed name
  virtinst-fix-tumbleweed-detection.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=313
This commit is contained in:
Charles Arnold 2016-06-09 21:54:40 +00:00 committed by Git OBS Bridge
parent b05c8c6864
commit 9a1b2d03e1
4 changed files with 10 additions and 16 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Tue Jun 7 14:18:32 MDT 2016 - carnold@suse.com
- bsc#983241 - Using eepro1000 emulated driver leads to 'eepro100'
is not a valid device model name
Drop virtman-eepro100.patch
- Remove unecessary hyphen '-' from tumbleweed name
virtinst-fix-tumbleweed-detection.patch
-------------------------------------------------------------------
Tue Jun 7 12:14:23 UTC 2016 - mvetter@suse.com

View File

@ -54,7 +54,6 @@ Patch75: virtman-dont-allow-grub.xen-to-be-deleted.patch
Patch76: virtinst-pvgrub2-bootloader.patch
Patch77: virtinst-nfs-install-sanitize.patch
# Features or Enhancements
Patch100: virtman-eepro100.patch
Patch101: virtman-default-guest-from-host-os.patch
Patch102: virtman-default-to-xen-pv.patch
Patch103: virtman-packages.patch
@ -180,7 +179,6 @@ machine).
%patch76 -p1
%patch77 -p1
# Enhancements
%patch100 -p1
%patch101 -p1
%patch102 -p1
%patch103 -p1

View File

@ -24,7 +24,7 @@ Index: virt-manager-1.3.2/virtinst/urlfetcher.py
- self.os_variant += distro_version
+ # Tumbleweed 8 digit date
+ if len(version) == 8:
+ self.os_variant += "-tumbleweed"
+ self.os_variant += "tumbleweed"
+ else:
+ self.os_variant += distro_version
else:

View File

@ -1,13 +0,0 @@
Enhancement to add the eepro100 NIC for KVM
Index: virt-manager-1.3.2/virtManager/addhardware.py
===================================================================
--- virt-manager-1.3.2.orig/virtManager/addhardware.py
+++ virt-manager-1.3.2/virtManager/addhardware.py
@@ -571,6 +571,7 @@ class vmmAddHardware(vmmGObjectUI):
if vm.is_hvm():
mod_list = []
if vm.get_hv_type() in ["kvm", "qemu", "test"]:
+ mod_list.append("eepro100")
mod_list.append("virtio")
mod_list.append("rtl8139")
mod_list.append("e1000")