I’m experiencing the same issue with two of my Fedora Kinoite 39 devices. The error message is exactly the same as the one shown in your picture. Given the timing of the updates, the issue is related to the new kernel version 6.9.4 from your recent update.
After recent kernel update still the issue persists… What would be the way out?
Notably I have no layered package.
kernel version :- 6.8.11-300.fc40.x86_64
I have tried to update 6.9.4 but the error still there because of the fact that the error still persists so system can not be updated . Please anyone can solve the issue
Have you tried the workaround? Specifically, the one from Fedora Silverblue’s issue tracker.
Here are the exact steps:
Warning: Do at your own risk, make backups
Here is the set of commands I’ve just used to update my (x86_64) EFI booted system successfully:
# Enter a root shell on the host (i.e. not in a toolbox)
$ sudo -i
# Make a backup of the content of the EFI partition
$ cd /boot/efi/
$ cp -a EFI EFI.bkp
# Copy updated bootloader versions
$ cp /usr/lib/ostree-boot/efi/EFI/BOOT/{BOOTIA32.EFI,BOOTX64.EFI,fbia32.efi,fbx64.efi} /boot/efi/EFI/BOOT/
$ cp /usr/lib/ostree-boot/efi/EFI/fedora/{BOOTIA32.CSV,BOOTX64.CSV,grubia32.efi,grubx64.efi,mmia32.efi,mmx64.efi,shim.efi,shimia32.efi,shimx64.efi} /boot/efi/EFI/fedora/
# Only needed if it exists already on your system
$ cp /usr/lib/ostree-boot/efi/EFI/fedora/shimx64.efi /boot/efi/EFI/fedora/shimx64-fedora.efi
# Sync changes to the disk
$ sync
# Reboot
Once reboot is successful, you can remove the backup copies:
# Enter a root shell on the host (i.e. not in a toolbox)
$ sudo -i
# Make a backup of the content of the EFI partition
$ cd /boot/efi/
$ rm -ri ./EFI.bkp
# Sync changes to the disk
$ sync