New commits:
commit f84a32dad3a92fdf938954fe4ce63f36f91e0514
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>
add-sauce.sh: Add grub files to the system fs
Ensure that the grub stage files are added to the system /boot/grub
directory so that grub can work properly. This fixes bug #14582.
diff --git a/scripts/add-sauce.sh b/scripts/add-sauce.sh
index f59e9ab..708b3bf 100755
--- a/scripts/add-sauce.sh
+++ b/scripts/add-sauce.sh
@@ -43,10 +43,18 @@ fi >&2
rm -rf $TEMPDIR
mkdir -m 0700 $TEMPDIR
cp -a $MYDIR/base/* $TEMPDIR/
+
+# ISO Sauce
if [[ $TYPE == "iso" ]] ;then
cp -a $MYDIR/iso/* $TEMPDIR/
fi
-# Insert copy of system here, once/if we need one.
+
+# System Sauce
+if [[ $TYPE == "system" ]]
+then
+ # make sure that grub the grub files are available in /boot
+ cp -a $CHROOTDIR/usr/lib/grub/i386-pc/* $TEMPDIR/boot/grub/
+fi
# ==== FIXUP starts here ====
chown -R 0:0 $TEMPDIR/
[SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (f84a32dad3a92fdf938954fe4ce63f36f91e0514),
Justin Boffemmyer, 10/07/2008