diff --git a/package/yast2-bootloader.changes b/package/yast2-bootloader.changes index d43b69eb9..6801308d3 100644 --- a/package/yast2-bootloader.changes +++ b/package/yast2-bootloader.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Apr 5 08:08:09 UTC 2024 - Josef Reidinger + +- Follow up of previous change to use even more precise wording + (bsc#1219989,bsc#1222353) +- 5.0.8 + ------------------------------------------------------------------- Fri Mar 15 10:11:13 UTC 2024 - Josef Reidinger diff --git a/package/yast2-bootloader.spec b/package/yast2-bootloader.spec index cec51f30f..c6f1f2203 100644 --- a/package/yast2-bootloader.spec +++ b/package/yast2-bootloader.spec @@ -17,7 +17,7 @@ Name: yast2-bootloader -Version: 5.0.7 +Version: 5.0.8 Release: 0 Summary: YaST2 - Bootloader Configuration License: GPL-2.0-or-later diff --git a/src/lib/bootloader/grub2_widgets.rb b/src/lib/bootloader/grub2_widgets.rb index a94ae75b6..6669245bc 100644 --- a/src/lib/bootloader/grub2_widgets.rb +++ b/src/lib/bootloader/grub2_widgets.rb @@ -390,13 +390,14 @@ def validate value == Systeminfo.secure_boot_active? Yast::Popup.ContinueCancel( + # TRANSLATORS: IPL stands for Initial Program Load, IBM speak for system boot _( - "The secure boot IPL works only on IBM z15, IBM LinuxONE III or later.\n" \ - "Also note the following restrictions:" \ - "NVMe disks work since IBM LinuxONE III.\n" \ - "FC-attached SCSI disks need at least IBM LinuxONE III or IBM z15.\n" \ - "ECKD DASDs with CDL layout work on IBM z16, LinuxONE 4 or newer.\n" \ - "If these requirements are not met, the system will not IPL in secure mode." + "Secure boot IPL has the following minimum system requirements,\n" \ + "depending on the boot device to be IPLed:\n" \ + "NVMe disk: IBM LinuxONE III or newer.\n" \ + "FC-attached SCSI disk: IBM LinuxONE III, IBM z15 or newer.\n" \ + "ECKD DASD with CDL layout: IBM z16, LinuxONE 4 or newer.\n" \ + "If these requirements are not met, the system can be IPLed in non-secure mode only." ) ) end