Hello community, here is the log from the commit of package linuxrc for openSUSE:Factory checked in at 2017-11-10 14:42:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linuxrc (Old) and /work/SRC/openSUSE:Factory/.linuxrc.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "linuxrc" Fri Nov 10 14:42:55 2017 rev:248 rq:540256 version:5.0.115 Changes: -------- --- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes 2017-10-28 14:19:26.804460673 +0200 +++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2017-11-10 14:42:57.703397852 +0100 @@ -1,0 +2,16 @@ +Thu Nov 9 15:41:15 UTC 2017 - [email protected] + +- merge gh#openSUSE/linuxrc#155 +- update broken module config even if list is empty +- 5.0.115 + +-------------------------------------------------------------------- +Mon Nov 6 09:15:36 UTC 2017 - [email protected] + +- merge gh#openSUSE/linuxrc#153 +- Updates for fate#322567 Changed *_configure calls to chzdev calls + with the --no-root-update option so that we won't run into + problems in the initrd environment. +- 5.0.114 + +-------------------------------------------------------------------- Old: ---- linuxrc-5.0.113.tar.xz New: ---- linuxrc-5.0.115.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc.spec ++++++ --- /var/tmp/diff_new_pack.8Nbme4/_old 2017-11-10 14:42:58.775359102 +0100 +++ /var/tmp/diff_new_pack.8Nbme4/_new 2017-11-10 14:42:58.779358957 +0100 @@ -17,7 +17,7 @@ Name: linuxrc -Version: 5.0.113 +Version: 5.0.115 Release: 0 Summary: SUSE Installation Program License: GPL-3.0+ ++++++ linuxrc-5.0.113.tar.xz -> linuxrc-5.0.115.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.113/VERSION new/linuxrc-5.0.115/VERSION --- old/linuxrc-5.0.113/VERSION 2017-10-24 15:42:56.000000000 +0200 +++ new/linuxrc-5.0.115/VERSION 2017-11-09 16:41:15.000000000 +0100 @@ -1 +1 @@ -5.0.113 +5.0.115 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.113/changelog new/linuxrc-5.0.115/changelog --- old/linuxrc-5.0.113/changelog 2017-10-24 15:42:56.000000000 +0200 +++ new/linuxrc-5.0.115/changelog 2017-11-09 16:41:15.000000000 +0100 @@ -1,3 +1,13 @@ +2017-11-09: 5.0.115 + - merge gh#openSUSE/linuxrc#155 + - update broken module config even if list is empty + +2017-11-06: 5.0.114 + - merge gh#openSUSE/linuxrc#153 + - Updates for fate#322567 Changed *_configure calls to chzdev calls + with the --no-root-update option so that we won't run into + problems in the initrd environment. + 2017-10-24: 5.0.113 - merge gh#openSUSE/linuxrc#152 - Revert "Fate322567" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.113/file.c new/linuxrc-5.0.115/file.c --- old/linuxrc-5.0.113/file.c 2017-10-24 15:42:56.000000000 +0200 +++ new/linuxrc-5.0.115/file.c 2017-11-09 16:41:15.000000000 +0100 @@ -1008,7 +1008,7 @@ case key_brokenmodules: slist_assign_values(&config.module.broken, f->value); - if(config.module.broken && !config.test) { + if(!config.test) { if((w = fopen("/etc/modprobe.d/blacklist.conf", "w"))) { for(sl = config.module.broken; sl; sl = sl->next) { if(sl->key) fprintf(w, "blacklist %s\n", sl->key); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.113/linuxrc.c new/linuxrc-5.0.115/linuxrc.c --- old/linuxrc-5.0.113/linuxrc.c 2017-10-24 15:42:56.000000000 +0200 +++ new/linuxrc-5.0.115/linuxrc.c 2017-11-09 16:41:15.000000000 +0100 @@ -1087,13 +1087,13 @@ mod_modprobe("zfcp",""); if(util_read_and_chop("/sys/firmware/ipl/device", device, sizeof device)) { - sprintf(cmd,"/sbin/zfcp_host_configure %s 1",device); + sprintf(cmd,"/sbin/chzdev -e zfcp-host --no-root-update %s",device); if(!config.test) lxrc_run(cmd); if(util_read_and_chop("/sys/firmware/ipl/wwpn", wwpn, sizeof wwpn)) { if(util_read_and_chop("/sys/firmware/ipl/lun", lun, sizeof lun)) { - sprintf(cmd,"/sbin/zfcp_disk_configure %s %s %s 1",device,wwpn,lun); + sprintf(cmd,"/sbin/chzdev -e zfcp-lun --no-root-update %s:%s:%s",device,wwpn,lun); if(!config.test) lxrc_run(cmd); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.113/net.c new/linuxrc-5.0.115/net.c --- old/linuxrc-5.0.113/net.c 2017-10-24 15:42:56.000000000 +0200 +++ new/linuxrc-5.0.115/net.c 2017-11-09 16:41:15.000000000 +0100 @@ -1601,19 +1601,19 @@ case di_390net_escon: setup_ctc: if(config.hwp.protocol > 0) - sprintf(cmd, "ctc_configure %s %s 1 %d", config.hwp.readchan, config.hwp.writechan, config.hwp.protocol - 1); + sprintf(cmd, "/sbin/chzdev -e ctc --no-root-update %s:%s protocol=%d", config.hwp.readchan, config.hwp.writechan, config.hwp.protocol - 1); else - sprintf(cmd, "ctc_configure %s %s 1", config.hwp.readchan, config.hwp.writechan); + sprintf(cmd, "/sbin/chzdev -e ctc --no-root-update %s %s", config.hwp.readchan, config.hwp.writechan); break; case di_390net_hsi: case di_390net_osa: if (config.hwp.interface == di_osa_lcs) goto setup_ctc; - ccmd += sprintf(ccmd, "qeth_configure "); + ccmd += sprintf(ccmd, "/sbin/chzdev -e qeth --no-root-update "); if(config.hwp.portno) - ccmd += sprintf(ccmd, "-n %d ", config.hwp.portno - 1); - ccmd += sprintf(ccmd, "%s %s %s %s 1", - config.hwp.layer2 == LAYER2_YES ? "-l" : "", + ccmd += sprintf(ccmd, "portno=%d ", config.hwp.portno - 1); + ccmd += sprintf(ccmd, "%s %s:%s:%s ", + config.hwp.layer2 == LAYER2_YES ? "layer2=1 " : "layer2=0 ", config.hwp.readchan, config.hwp.writechan, config.hwp.datachan);
