summarylogtreecommitdiffstats
path: root/grub-libzfs.install
diff options
context:
space:
mode:
Diffstat (limited to 'grub-libzfs.install')
-rw-r--r--grub-libzfs.install17
1 files changed, 14 insertions, 3 deletions
diff --git a/grub-libzfs.install b/grub-libzfs.install
index c13ef99c77c5..c268996d1e57 100644
--- a/grub-libzfs.install
+++ b/grub-libzfs.install
@@ -6,12 +6,23 @@ post_upgrade() {
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
+
+ # return if old package version greater 2:2.06-0...
+ (( $(vercmp $2 '2:2.06-0') > 0 )) && return
+
+ if [[ -e /sys/firmware/efi/efivars ]]; then
+ cat <<EOM
+:: Grub does no longer support side-loading modules when secure boot is
+ enabled. Thus booting will fail, unless you have an efi executable
+ 'grubx64.efi' with bundled modules.
+EOM
+ fi
}
post_install() {
- cat << 'EOM'
-Generate your bootloader configuration with:
- grub-mkconfig -o /boot/grub/grub.cfg
+ cat <<EOM
+:: Generate your bootloader configuration with:
+ grub-mkconfig -o /boot/grub/grub.cfg
EOM
}