PKGBUILDs/core/grub/grub.install
Vasily Khoruzhick 455cafc63e added core/grub
Grub can be used to boot linux on aarch64. u-boot support subset of
UEFI spec which is enough to start grub (and linux).
2019-11-13 20:09:45 -07:00

18 lines
427 B
Bash

#!/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
fi
}
post_install() {
cat << 'EOM'
Generate your bootloader configuration with:
grub-mkconfig -o /boot/grub/grub.cfg
EOM
}