You are not logged in.
grub 2.12rc1 - as any version above 2.06.r499 - no longer works with the "CA keys" method (a.k.a. "measured secure boot") described here: https://wiki.archlinux.org/title/GRUB#S … ot_support
The fix introduced in 2.06.r591 only works for the SHIM secure boot method.
Last edited by -thc (2023-07-19 06:19:48)
Offline
Excuse my poor English.
Offline
Thanks - signing the kernel image does the trick.
Offline
I have created a pacman hook for automatic signing:
/usr/share/libalpm/hooks/sbsign.hook
------------------------------------------------------------
[Trigger]
Type = Path
Operation = Install
Operation = Upgrade
Target = usr/lib/modules/*/vmlinuz
[Action]
Description = Signing kernel image...
When = PostTransaction
Exec = /usr/bin/sbsign --key /path/to/signing.key --cert /path/to/signing.crt --output /boot/vmlinuz-linux /boot/vmlinuz-linux
Offline