blob: 48a20aefb7593942257bf477782d78be5dd921a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "For the lastboot EFI entry to boot the correct filesystem,"
echo "the kernel command line of the UKI must be amended. If your"
echo "root filesystem is zroot/root/default, you can run"
echo ""
echo "# /usr/lib/systemd/ukify build --cmdline \"root=zfs:zroot/root/lastboot-default\" \\"
echo "# --output=/efi/EFI/Linux/lastboot-default.efi.extra.d/cmdline.addon.efi"
echo ""
echo "and sign the restulting file, if necessary. The service is"
echo "enabled by running"
echo ""
echo "# systemctl enable prepare-lastboot@default.timer"
}
|