Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package linuxrc for openSUSE:Factory checked in at 2022-10-27 13:53:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linuxrc (Old) and /work/SRC/openSUSE:Factory/.linuxrc.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "linuxrc" Thu Oct 27 13:53:02 2022 rev:312 rq:1031370 version:8.16 Changes: -------- --- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes 2022-10-16 16:09:04.730735440 +0200 +++ /work/SRC/openSUSE:Factory/.linuxrc.new.2275/linuxrc.changes 2022-10-27 13:53:16.252291604 +0200 @@ -1,0 +2,7 @@ +Wed Oct 26 15:17:07 UTC 2022 - wfe...@opensuse.org + +- merge gh#openSUSE/linuxrc#307 +- s390x: support PCI-attached networking device (jsc#PED-619) +- 8.16 + +-------------------------------------------------------------------- Old: ---- linuxrc-8.15.tar.xz New: ---- linuxrc-8.16.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc.spec ++++++ --- /var/tmp/diff_new_pack.c3dw3p/_old 2022-10-27 13:53:17.800299500 +0200 +++ /var/tmp/diff_new_pack.c3dw3p/_new 2022-10-27 13:53:17.812299561 +0200 @@ -17,7 +17,7 @@ Name: linuxrc -Version: 8.15 +Version: 8.16 Release: 0 Summary: SUSE Installation Program License: GPL-3.0+ ++++++ linuxrc-8.15.tar.xz -> linuxrc-8.16.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-8.15/VERSION new/linuxrc-8.16/VERSION --- old/linuxrc-8.15/VERSION 2022-10-14 19:58:15.000000000 +0200 +++ new/linuxrc-8.16/VERSION 2022-10-26 17:17:07.000000000 +0200 @@ -1 +1 @@ -8.15 +8.16 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-8.15/changelog new/linuxrc-8.16/changelog --- old/linuxrc-8.15/changelog 2022-10-14 19:58:15.000000000 +0200 +++ new/linuxrc-8.16/changelog 2022-10-26 17:17:07.000000000 +0200 @@ -1,3 +1,7 @@ +2022-10-26: 8.16 + - merge gh#openSUSE/linuxrc#307 + - s390x: support PCI-attached networking device (jsc#PED-619) + 2022-10-14: 8.15 - merge gh#openSUSE/linuxrc#304 - make s390x hypervisor setting configurable (for debugging) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-8.15/dialog.c new/linuxrc-8.16/dialog.c --- old/linuxrc-8.15/dialog.c 2022-10-14 19:58:15.000000000 +0200 +++ new/linuxrc-8.16/dialog.c 2022-10-26 17:17:07.000000000 +0200 @@ -108,7 +108,8 @@ { di_390net_hsi, "HiperSockets" }, { di_390net_virtio, "VirtIO Ethernet CCW Device"}, { di_390net_sep, "#--------------------" }, - + { di_390net_pci, "PCI-attached networking device" }, + { di_ctc_compat, "Compatibility mode (default)" }, { di_ctc_ext, "Extended mode" }, { di_ctc_zos390, "Compatibility mode for OS/390 and z/OS peers" }, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-8.15/dialog.h new/linuxrc-8.16/dialog.h --- old/linuxrc-8.15/dialog.h 2022-10-14 19:58:15.000000000 +0200 +++ new/linuxrc-8.16/dialog.h 2022-10-26 17:17:07.000000000 +0200 @@ -91,6 +91,7 @@ di_390net_qdio, di_390net_lcs, di_390net_sep, + di_390net_pci, di_ctc_compat, di_ctc_ext, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-8.15/net.c new/linuxrc-8.16/net.c --- old/linuxrc-8.15/net.c 2022-10-14 19:58:15.000000000 +0200 +++ new/linuxrc-8.16/net.c 2022-10-26 17:17:07.000000000 +0200 @@ -1412,6 +1412,8 @@ di_390net_sep, di_390net_ctc, di_390net_iucv, + di_390net_sep, + di_390net_pci, di_none }; if(!strcmp(config.hwp.hypervisor, "KVM")) { @@ -1562,6 +1564,10 @@ return 0; break; + case di_390net_pci: + return 0; + break; + default: return -1; }