void-packages/srcpkgs/grub/files/kernel.d/grub.post

18 lines
286 B
Plaintext
Raw Normal View History

2011-07-10 00:03:36 +02:00
#!/bin/sh
#
# Kernel hook for GRUB 2.
#
# Arguments passed to this script: $1 pkgname, $2 version.
#
PKGNAME="$1"
VERSION="$2"
if command -v grub-mkconfig >/dev/null 2>&1; then
if [ -d $ROOTDIR/boot/grub ]; then
grub-mkconfig -o $ROOTDIR/boot/grub/grub.cfg
exit $?
fi
2011-07-10 00:03:36 +02:00
fi
exit 0