Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-bootloader for
openSUSE:Factory checked in at 2025-07-30 11:41:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
and /work/SRC/openSUSE:Factory/.yast2-bootloader.new.13279 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-bootloader"
Wed Jul 30 11:41:05 2025 rev:348 rq:1296059 version:5.0.23
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2025-07-15 16:43:07.678213651 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-bootloader.new.13279/yast2-bootloader.changes
2025-07-30 11:41:13.012380293 +0200
@@ -1,0 +2,9 @@
+Wed Jul 23 13:30:13 UTC 2025 - Stefan Schubert <[email protected]>
+
+- Proposal cleanup: If the system supports BLS bootloader, select
+ the BLS bootloader which is defined in the control.xml file.
+ If no one has been set, grub2-bls will be taken as default.
+ (jsc#PED-10703)
+- 5.0.23
+
+-------------------------------------------------------------------
Old:
----
yast2-bootloader-5.0.22.tar.bz2
New:
----
yast2-bootloader-5.0.23.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-bootloader.spec ++++++
--- /var/tmp/diff_new_pack.ZfZV9E/_old 2025-07-30 11:41:13.880416175 +0200
+++ /var/tmp/diff_new_pack.ZfZV9E/_new 2025-07-30 11:41:13.884416341 +0200
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 5.0.22
+Version: 5.0.23
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
++++++ yast2-bootloader-5.0.22.tar.bz2 -> yast2-bootloader-5.0.23.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-5.0.22/package/yast2-bootloader.changes
new/yast2-bootloader-5.0.23/package/yast2-bootloader.changes
--- old/yast2-bootloader-5.0.22/package/yast2-bootloader.changes
2025-07-11 13:44:26.000000000 +0200
+++ new/yast2-bootloader-5.0.23/package/yast2-bootloader.changes
2025-07-28 11:08:41.000000000 +0200
@@ -1,4 +1,13 @@
-------------------------------------------------------------------
+Wed Jul 23 13:30:13 UTC 2025 - Stefan Schubert <[email protected]>
+
+- Proposal cleanup: If the system supports BLS bootloader, select
+ the BLS bootloader which is defined in the control.xml file.
+ If no one has been set, grub2-bls will be taken as default.
+ (jsc#PED-10703)
+- 5.0.23
+
+-------------------------------------------------------------------
Fri Jul 11 11:18:56 UTC 2025 - Stefan Schubert <[email protected]>
- Allowing systemd-boot as default bootloader (set in control.xml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-5.0.22/package/yast2-bootloader.spec
new/yast2-bootloader-5.0.23/package/yast2-bootloader.spec
--- old/yast2-bootloader-5.0.22/package/yast2-bootloader.spec 2025-07-11
13:44:26.000000000 +0200
+++ new/yast2-bootloader-5.0.23/package/yast2-bootloader.spec 2025-07-28
11:08:41.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 5.0.22
+Version: 5.0.23
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-5.0.22/src/lib/bootloader/bootloader_factory.rb
new/yast2-bootloader-5.0.23/src/lib/bootloader/bootloader_factory.rb
--- old/yast2-bootloader-5.0.22/src/lib/bootloader/bootloader_factory.rb
2025-07-11 13:44:26.000000000 +0200
+++ new/yast2-bootloader-5.0.23/src/lib/bootloader/bootloader_factory.rb
2025-07-28 11:08:41.000000000 +0200
@@ -135,12 +135,7 @@
return preferred_bootloader
end
- devicegraph = Y2Storage::StorageManager.instance.staging
- if bls_installable? && devicegraph.encryptions&.any? { |e| e.method.id
== :systemd_fde }
- return "grub2-bls" # systemd_fde encryption prefers grub2-bls
bootloader
- end
-
- if ["systemd-boot", "grub2-bls"].include?(preferred_bootloader) &&
bls_installable?
+ if bls_installable? && ["systemd-boot",
"grub2-bls"].include?(preferred_bootloader)
return preferred_bootloader
end