grub-luks2-improved-stable/grub.install

31 lines
914 B
Plaintext
Raw Normal View History

#!/bin/sh
post_upgrade() {
# We used to package /boot/grub/grub.cfg, but there is no reason to.
# Remove the file from package, but move real file back in place.
if [ ! -f /boot/grub/grub.cfg -a -f /boot/grub/grub.cfg.pacsave ]; then
mv /boot/grub/grub.cfg.pacsave /boot/grub/grub.cfg
2012-06-28 19:51:38 +02:00
fi
# https://md.archlinux.org/F1JuYj5xQtWyhvH8_ilErg#
2021-06-08 22:00:12 +02:00
if [[ -e /sys/firmware/efi/efivars ]]; then
cat <<EOM
:: Recent versions of grub may fail to boot with secure boot enabled. The
message will look like this:
> error: verification requested but nobody cares:
> (hd0,gpt2)/grub/x86_64-efi/normal.mod
> Entering rescue mode...
Handle installation to UEFI with care and be prepared!
For details see: https://md.archlinux.org/F1JuYj5xQtWyhvH8_ilErg#
EOM
2021-06-08 22:00:12 +02:00
fi
}
2012-06-28 19:51:38 +02:00
post_install() {
cat <<EOM
:: Generate your bootloader configuration with:
grub-mkconfig -o /boot/grub/grub.cfg
2012-06-28 19:51:38 +02:00
EOM
}