grub-luks2-improved-stable/grub.install
Christian Hesse b7cfff4062 * new upstream release
* pacman hooks - remove info file handling from install script
* fix Intel ucode handling (FS#47941)
* remove trailing white spaces from PKGBUILD
2016-07-29 07:59:10 +00:00

16 lines
406 B
Plaintext

post_install() {
if [ -f /boot/grub/grub.cfg.pacsave ]; then
echo "Copying /boot/grub/grub.cfg.pacsave to /boot/grub/grub.cfg"
install -D -m0644 /boot/grub/grub.cfg.pacsave /boot/grub/grub.cfg
fi
cat << 'EOM'
Generating grub.cfg.example config file...
This may fail on some machines running a custom kernel.
EOM
grub-mkconfig -o /boot/grub/grub.cfg.example 2> /dev/null
echo "done."
}