Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2015-08-15 11:39:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/linuxrc (Old)
 and      /work/SRC/openSUSE:Factory/.linuxrc.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "linuxrc"

Changes:
--------
--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2015-08-11 
08:25:55.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes     2015-08-15 
11:39:01.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Aug 14 15:15:11 CEST 2015 - snw...@suse.com
+
+- s390x: handle kvm virtio devices
+- s390x: in kvm, don't ask for net device type
+- 5.0.51
+
+-------------------------------------------------------------------

Old:
----
  linuxrc-5.0.49.tar.xz

New:
----
  linuxrc-5.0.51.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.aC8QIC/_old  2015-08-15 11:39:02.000000000 +0200
+++ /var/tmp/diff_new_pack.aC8QIC/_new  2015-08-15 11:39:02.000000000 +0200
@@ -25,7 +25,7 @@
 Summary:        SUSE Installation Program
 License:        GPL-3.0+
 Group:          System/Boot
-Version:        5.0.49
+Version:        5.0.51
 Release:        0
 Source:         %{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ linuxrc-5.0.49.tar.xz -> linuxrc-5.0.51.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.49/VERSION new/linuxrc-5.0.51/VERSION
--- old/linuxrc-5.0.49/VERSION  2015-08-10 11:38:43.000000000 +0200
+++ new/linuxrc-5.0.51/VERSION  2015-08-12 12:45:46.000000000 +0200
@@ -1 +1 @@
-5.0.49
+5.0.51
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.49/changelog new/linuxrc-5.0.51/changelog
--- old/linuxrc-5.0.49/changelog        2015-08-10 11:38:43.000000000 +0200
+++ new/linuxrc-5.0.51/changelog        2015-08-12 12:45:46.000000000 +0200
@@ -1,3 +1,9 @@
+2015-08-11:    5.0.51
+       - s390x: in kvm, don't ask for net device type
+
+2015-08-11:    5.0.50
+       - s390x: handle kvm virtio devices
+
 2015-08-06:    5.0.49
        - adjust git log parser
        - with netsetup=dhcp,all, do network setup at once, else we'll never 
get it done (bsc #932692)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.49/net.c new/linuxrc-5.0.51/net.c
--- old/linuxrc-5.0.49/net.c    2015-08-10 11:38:43.000000000 +0200
+++ new/linuxrc-5.0.51/net.c    2015-08-12 12:45:46.000000000 +0200
@@ -1373,7 +1373,6 @@
     return -1;
   }
   else {       /* no hd_t entry -> ask */
-    dia_item_t di;
     dia_item_t items[] = {
       di_390net_osa,
       di_390net_hsi,
@@ -1384,15 +1383,13 @@
       di_none
     };
     if(!strncmp(config.hwp.hypervisor, "KVM", sizeof "KVM" - 1)) {
-      items[0] = di_390net_virtio;
-      items[1] = di_none;
+      config.hwp.type = di_390net_virtio;
     }
-
-    IFNOTAUTO(config.hwp.type) {
-      di = dia_menu2("Please select the type of your network device.", 60, 0, 
items, config.hwp.type?:di_390net_iucv);
-      config.hwp.type = di;
+    else {
+      IFNOTAUTO(config.hwp.type) {
+        config.hwp.type = dia_menu2("Please select the type of your network 
device.", 60, 0, items, config.hwp.type?:di_390net_iucv);
+      }
     }
-    else di = config.hwp.type;
   }
 
   /* hwcfg parms common to all devices */
@@ -1536,6 +1533,10 @@
     }
     
     break;
+
+  case di_390net_virtio:
+    return 0;
+    break;
     
   default:
     return -1;


Reply via email to