Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package s390-tools for openSUSE:Factory checked in at 2023-05-02 16:19:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/s390-tools (Old) and /work/SRC/openSUSE:Factory/.s390-tools.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "s390-tools" Tue May 2 16:19:36 2023 rev:60 rq:1084026 version:2.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/s390-tools/s390-tools.changes 2023-04-26 17:26:47.438123534 +0200 +++ /work/SRC/openSUSE:Factory/.s390-tools.new.1533/s390-tools.changes 2023-05-02 16:24:21.835709496 +0200 @@ -1,0 +2,6 @@ +Tue May 2 11:40:12 UTC 2023 - Nikolay Gueorguiev <nikolay.gueorgu...@suse.com> + +- Applies a fix, splitting of rd.zdev-parameters, in + * s390-tools-ALP-zdev-live.patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ s390-tools-ALP-zdev-live.patch ++++++ --- /var/tmp/diff_new_pack.KAWnRK/_old 2023-05-02 16:24:23.295718153 +0200 +++ /var/tmp/diff_new_pack.KAWnRK/_new 2023-05-02 16:24:23.299718178 +0200 @@ -65,17 +65,17 @@ +# KEY=VALUE separated by commas. + +zdev_enable="--persistent --enable" -+zdev_base_args="--force --yes --no-root-update --no-settle" ++zdev_base_args="--yes --no-root-update --no-settle" + -+for zdev in $(getargs rd.zdev -d 'rd_ZDEV=') ; do -+ IFS=, read -r z_drv z_chan z_opts <<< "$zdev" -+ if [ -n "$z_drv" ] && [ "$z_drv" = "no-auto" -o "$z_drv" = "auto" ] ; then ++for zdevs in $(getargs rd.zdev) ; do ++ IFS=',' read -r -a zdev <<< "$zdevs" ++ if [ -n "$zdev" ] && [ "$zdev" = "no-auto" -o "$zdev" = "auto" ] ; then + : # ignore, as it's handled by 95zdev -+ elif [ -z "$z_drv" ] || [ -z "$z_chan" ] ; then -+ warn "Unsupported arguments for rd.zdev=" ++ elif [ -z "$zdev" ] || [ -z "${zdev[1]}" ] ; then ++ warn "Unsupported usage of rd.zdev=$zdevs" + else -+ info "+ chzdev $zdev_enable [...] $z_drv $z_chan $z_opts" -+ chzdev $zdev_enable $zdev_base_args $z_drv $z_chan $z_opts ++ info "+ chzdev $zdev_enable [...] ${zdev[@]}" ++ chzdev $zdev_enable $zdev_base_args "${zdev[@]}" + fi +done +