Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (f84a32dad3a92fdf938954fe4ce63f36f91e0514)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (f84a32dad3a92fdf938954fe4ce63f36f91e0514)
  • Date: Tue, 7 Oct 2008 21:09:42 -0500

GIT changes to test cauldron by Justin Boffemmyer <flux AT sourcemage.org>:

scripts/add-sauce.sh | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletion(-)

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

Archive powered by MHonArc 2.6.24.

Top of Page