Hello community,
here is the log from the commit of package perl-Bootloader for openSUSE:Factory
checked in at 2019-07-31 14:22:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old)
and /work/SRC/openSUSE:Factory/.perl-Bootloader.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Bootloader"
Wed Jul 31 14:22:23 2019 rev:186 rq:713155 version:0.925
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes
2018-10-02 19:40:58.954248757 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Bootloader.new.4126/perl-Bootloader.changes
2019-07-31 14:22:27.462465962 +0200
@@ -1,0 +2,16 @@
+Wed Jul 3 06:39:41 UTC 2019 - [email protected]
+
+- merge gh#openSUSE/perl-bootloader#122
+- Replace --suse-signed-grub by --suse-force-signed to follow
+ update from boo#1136601
+- 0.925
+
+--------------------------------------------------------------------
+Thu Jun 6 06:22:24 UTC 2019 - [email protected]
+
+- merge gh#openSUSE/perl-bootloader#121
+- Fix secureboot on aarch64 (boo#1136601)
+- [RFC] Fix secureboot on aarch64 (boo#1136601)
+- 0.924
+
+--------------------------------------------------------------------
Old:
----
perl-Bootloader-0.923.tar.xz
New:
----
perl-Bootloader-0.925.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.cH6Fvb/_old 2019-07-31 14:22:28.006465652 +0200
+++ /var/tmp/diff_new_pack.cH6Fvb/_new 2019-07-31 14:22:28.010465649 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Bootloader
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: perl-Bootloader
-Version: 0.923
+Version: 0.925
Release: 0
Requires: coreutils
Requires: perl-base = %{perl_version}
++++++ perl-Bootloader-0.923.tar.xz -> perl-Bootloader-0.925.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.923/VERSION
new/perl-Bootloader-0.925/VERSION
--- old/perl-Bootloader-0.923/VERSION 2018-09-27 13:15:33.000000000 +0200
+++ new/perl-Bootloader-0.925/VERSION 2019-07-03 08:39:41.000000000 +0200
@@ -1 +1 @@
-0.923
+0.925
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.923/changelog
new/perl-Bootloader-0.925/changelog
--- old/perl-Bootloader-0.923/changelog 2018-09-27 13:15:33.000000000 +0200
+++ new/perl-Bootloader-0.925/changelog 2019-07-03 08:39:41.000000000 +0200
@@ -1,3 +1,12 @@
+2019-07-03: 0.925
+ - merge gh#openSUSE/perl-bootloader#122
+ - Replace --suse-signed-grub by --suse-force-signed to follow
+ update from boo#1136601
+
+2019-06-06: 0.924
+ - merge gh#openSUSE/perl-bootloader#121
+ - Fix secureboot on aarch64 (boo#1136601)
+
2018-09-27: 0.923
- merge gh#openSUSE/perl-bootloader#120
- create temporary files in /tmp (bsc#1108777)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/perl-Bootloader-0.923/grub2-efi/install
new/perl-Bootloader-0.925/grub2-efi/install
--- old/perl-Bootloader-0.923/grub2-efi/install 2018-09-27 13:15:33.000000000
+0200
+++ new/perl-Bootloader-0.925/grub2-efi/install 2019-07-03 08:39:41.000000000
+0200
@@ -56,7 +56,7 @@
append="$append --suse-enable-tpm"
fi
-if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" ] ; then
+if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" -a "$target" != "arm64" ] ; then
if [ -x /usr/sbin/shim-install ] ; then
( set -x ; /usr/sbin/shim-install --config-file=/boot/grub2/grub.cfg
$append )
else
@@ -64,6 +64,10 @@
exit 1
fi
elif [ -x /usr/sbin/grub2-install ] ; then
+ # Use '--suse-force-signed' when shim is not used (aarch64 case)
+ if [ "$SYS__BOOTLOADER__SECURE_BOOT" = "yes" ]; then
+ append="$append --suse-force-signed"
+ fi
( set -x ; /usr/sbin/grub2-install --target="$target" $append )
else
echo "grub2-install: command not found"