2022-10-14 17:45:40 +00:00
|
|
|
# KEEP THIS IN SYNC WITH https://github.com/coreos/fedora-coreos-config/blob/testing-devel/manifests/bootupd.yaml
|
|
|
|
# Integration with https://github.com/coreos/bootupd
|
|
|
|
# xref https://github.com/coreos/fedora-coreos-tracker/issues/510
|
|
|
|
packages:
|
|
|
|
- bootupd
|
|
|
|
|
|
|
|
postprocess:
|
|
|
|
- |
|
|
|
|
#!/bin/bash
|
|
|
|
set -xeuo pipefail
|
2024-09-04 13:54:06 +00:00
|
|
|
|
2022-10-14 17:45:40 +00:00
|
|
|
# Transforms /usr/lib/ostree-boot into a bootupd-compatible update payload
|
2024-02-08 10:27:47 +00:00
|
|
|
/usr/bin/bootupctl backend generate-update-metadata
|
2024-09-04 13:54:06 +00:00
|
|
|
|
|
|
|
# Trigger a bootloader update on boot
|
|
|
|
cat > /usr/lib/systemd/system/bootloader-update.service << 'EOF'
|
|
|
|
[Unit]
|
|
|
|
Description=Update bootloader on boot
|
|
|
|
Documentation=https://github.com/coreos/bootupd
|
|
|
|
ConditionFirmware=uefi
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
|
|
|
ExecStart=/usr/bin/bootupctl update
|
|
|
|
RemainAfterExit=yes
|
|
|
|
MountFlags=slave
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
EOF
|
|
|
|
chmod 644 /usr/lib/systemd/system/bootloader-update.service
|
|
|
|
echo "enable bootloader-update.service" > /usr/lib/systemd/system-preset/81-atomic-desktop.preset
|
2024-09-04 13:57:16 +00:00
|
|
|
|
|
|
|
# Turn permissive mode on for bootupd until all SELinux issues are fixed
|
|
|
|
semanage permissive --noreload --add bootupd_t
|