From 084eb9d13b60f49b6ab580f193cf6a2b3e12afd75d6a90b03f4f3f89f6c2a8ef Mon Sep 17 00:00:00 2001 From: Chun-Yi Lee Date: Thu, 11 Dec 2025 13:34:43 +0800 Subject: [PATCH] shim-install: Add ca_string for SL Micro to update fallback loader The fallback loader, /boot/efi/EFI/BOOT/bootaa64.efi or bootx64.efi, cannot be upgraded by shim-install on SL Micro. The issue case is SL Micro 6.0. It causes that system gets regression bug because it's fallback to a old shim. So this patch adds ca_string to SL Micro. (bsc#1254336) --- shim-install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shim-install b/shim-install index d4a3614..a0519bf 100644 --- a/shim-install +++ b/shim-install @@ -71,9 +71,12 @@ fi efi_distributor="$bootloader_id" bootloader_id="${bootloader_id}-secureboot" +# bsc#1254336 The sl is for SL Micro. It can be removed afrer SL Micro is EoL case "$bootloader_id" in "sle"*) ca_string='SUSE Linux Enterprise Secure Boot CA1';; + "sl"*) + ca_string='SUSE Linux Enterprise Secure Boot CA1';; "opensuse"*) ca_string='openSUSE Secure Boot CA1';; *) ca_string="";; -- 2.51.1