Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2020-10-22 14:21:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Bootloader.new.3463 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Bootloader"

Thu Oct 22 14:21:47 2020 rev:192 rq:842523 version:0.932

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes  
2020-07-26 16:17:35.688710135 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Bootloader.new.3463/perl-Bootloader.changes    
    2020-10-22 14:23:09.322797275 +0200
@@ -1,0 +2,8 @@
+Mon Oct 19 10:26:56 UTC 2020 - wfe...@opensuse.org
+
+- merge gh#openSUSE/perl-bootloader#131
+- grub2 install: honor UPDATE_NVRAM in /etc/sysconfig/bootloader
+  (bsc#1157550 jsc#SLE-11500).
+- 0.932
+
+--------------------------------------------------------------------

Old:
----
  perl-Bootloader-0.931.tar.xz

New:
----
  perl-Bootloader-0.932.tar.xz

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

Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.cxwBc3/_old  2020-10-22 14:23:10.262798119 +0200
+++ /var/tmp/diff_new_pack.cxwBc3/_new  2020-10-22 14:23:10.266798121 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Bootloader
-Version:        0.931
+Version:        0.932
 Release:        0
 Requires:       coreutils
 Requires:       perl-base = %{perl_version}

++++++ perl-Bootloader-0.931.tar.xz -> perl-Bootloader-0.932.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.931/VERSION 
new/perl-Bootloader-0.932/VERSION
--- old/perl-Bootloader-0.931/VERSION   2020-07-24 09:06:12.000000000 +0200
+++ new/perl-Bootloader-0.932/VERSION   2020-10-19 12:26:56.000000000 +0200
@@ -1 +1 @@
-0.931
+0.932
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.931/changelog 
new/perl-Bootloader-0.932/changelog
--- old/perl-Bootloader-0.931/changelog 2020-07-24 09:06:12.000000000 +0200
+++ new/perl-Bootloader-0.932/changelog 2020-10-19 12:26:56.000000000 +0200
@@ -1,3 +1,8 @@
+2020-10-19:    0.932
+       - merge gh#openSUSE/perl-bootloader#131
+       - grub2 install: honor UPDATE_NVRAM in /etc/sysconfig/bootloader
+         (bsc#1157550 jsc#SLE-11500).
+
 2020-07-24:    0.931
        - merge gh#openSUSE/perl-bootloader#129
        - Check tpm.mod in the new grub2 directory (bsc#1174320)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.931/grub2/install 
new/perl-Bootloader-0.932/grub2/install
--- old/perl-Bootloader-0.931/grub2/install     2020-07-24 09:06:12.000000000 
+0200
+++ new/perl-Bootloader-0.932/grub2/install     2020-10-19 12:26:56.000000000 
+0200
@@ -138,6 +138,11 @@
   grep -q PowerNV /proc/cpuinfo && exit 0
 fi
 
+append=
+if [ "$SYS__BOOTLOADER__UPDATE_NVRAM" = "no" ] ; then
+    append="$append --no-nvram"
+fi
+
 if [ "$SYS__BOOTLOADER__TRUSTED_BOOT" = yes -a -d 
"/usr/lib/trustedgrub2/$target" ] ; then
   trusted="--directory=/usr/lib/trustedgrub2/$target"
 fi
@@ -152,7 +157,7 @@
         [ "${device::1}" != "/" ] && continue
         if [ -b "$device" -o -f "$device" ] ; then
           has_device=1
-          ( set -x ; /usr/sbin/grub2-install $trusted --target="$target" 
--force --skip-fs-probe "$device" ) || err=1
+          ( set -x ; /usr/sbin/grub2-install $append $trusted 
--target="$target" --force --skip-fs-probe "$device" ) || err=1
         else
           echo "$device: not a block device"
           err=1
@@ -167,7 +172,7 @@
         if [ "$device" ] ; then
           device="/dev/$device"
           has_device=1
-          ( set -x ; /usr/sbin/grub2-install $trusted --target="$target" 
--force --skip-fs-probe "$device" ) || err=1
+          ( set -x ; /usr/sbin/grub2-install $append $trusted 
--target="$target" --force --skip-fs-probe "$device" ) || err=1
         fi
       fi
     fi
@@ -176,7 +181,7 @@
       err=1
     fi
   else
-    ( set -x ; /usr/sbin/grub2-install $trusted --target="$target" )
+    ( set -x ; /usr/sbin/grub2-install $append $trusted --target="$target" )
   fi
 else
   echo "grub2-install: command not found"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.931/grub2-efi/install 
new/perl-Bootloader-0.932/grub2-efi/install
--- old/perl-Bootloader-0.931/grub2-efi/install 2020-07-24 09:06:12.000000000 
+0200
+++ new/perl-Bootloader-0.932/grub2-efi/install 2020-10-19 12:26:56.000000000 
+0200
@@ -60,6 +60,10 @@
   append="$append --suse-enable-tpm"
 fi
 
+if [ "$SYS__BOOTLOADER__UPDATE_NVRAM" = "no" ] ; then
+    append="$append --no-nvram"
+fi
+
 if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" -a "$target" != "arm64-efi" ] ; 
then
   if [ -x /usr/sbin/shim-install ] ; then
     ( set -x ; /usr/sbin/shim-install --config-file=/boot/grub2/grub.cfg 
$append )


Reply via email to