forked from coreos/fedora-coreos-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
overlay/15fcos: upgrade bootloader for secureboot-enabled systems
kernel 6.9 won't boot on system installed prior to F39, as shim is too old. Shim 15.8-3 reached stable on 2023-03-21, so any system using secureboot installed before that won't be able to boot kernel 6.9 See coreos/fedora-coreos-tracker#1752 fedora-silverblue/issue-tracker#543
- Loading branch information
1 parent
159530e
commit 9ace03e
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
overlay.d/15fcos/usr/lib/systemd/system/coreos-bootupctl-update-secureboot.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Remove after the next barrier release | ||
# https://github.com/coreos/fedora-coreos-tracker/issues/1752 | ||
|
||
[Unit] | ||
Description=Update Bootloader for secureboot-enabled systems | ||
ConditionSecurity=uefi-secureboot | ||
ConditionFirmware=uefi | ||
# make sure to run after the aleph file is fixed | ||
# see https://github.com/coreos/fedora-coreos-tracker/issues/1724 | ||
After=coreos-fix-aleph-file.service | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/usr/bin/bootupctl update | ||
RemainAfterExit=yes | ||
|
||
[Install] | ||
WantedBy=multi-user.target |