blob: 40f522ace4edaf5c2851af3c52bea3602e49aed7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- util/grub-mkconfig.in.orig 2014-03-03 11:00:26.000000000 -0500
+++ util/grub-mkconfig.in 2014-07-03 11:31:47.013881961 -0400
@@ -278,3 +278,11 @@
gettext "done" >&2
echo >&2
+
+# If pcbsd-utils are installed, the restamp-grub command will exist
+# Use it to do the grub-install and copy grub.cfg to other BEs
+which restamp-grub >/dev/null 2>/dev/null
+if [ $? -eq 0 ] ; then
+ restamp-grub
+fi
+
|