Skip to Content.
Sympa Menu

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

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 (ecc928f582a678b35d10995db3fb807adc71dfd9)
  • Date: Sat, 3 Jan 2009 07:10:39 -0600

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

iso/usr/share/smgl.install/smgl-kernel | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ecc928f582a678b35d10995db3fb807adc71dfd9
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

smgl.install/smgl-kernel: fix ISO kernel ref

Referenced the ISO kernel wrong. Isolinux doesn't handle symlinks, so
the ISO kernel is fixed to /boot/linux.

diff --git a/iso/usr/share/smgl.install/smgl-kernel
b/iso/usr/share/smgl.install/smgl-kernel
index 7e85889..7de02ee 100755
--- a/iso/usr/share/smgl.install/smgl-kernel
+++ b/iso/usr/share/smgl.install/smgl-kernel
@@ -26,10 +26,10 @@ shift $(($OPTIND - 1))
TARGET="${TARGET:-/mnt/root}"

# Copy the kernel config
-cp -f /boot/config-$(uname -r) "$TARGET"/boot/config-$(uname -r)-SMGL-iso
+cp -f /boot/config-$(uname -r) "$TARGET"/boot/config-$(uname -r)

# Copy the kernel image
-cp -f /boot/linux-$(uname -r) "$TARGET"/boot/vmlinuz-$(uname -r)-SMGL-iso
+cp -f /boot/linux "$TARGET"/boot/vmlinuz-$(uname -r)

# Copy all kernel modules
[[ -d "$TARGET"/lib/modules ]] || mkdir -p "$TARGET"/lib/modules



  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (ecc928f582a678b35d10995db3fb807adc71dfd9), Justin Boffemmyer, 01/03/2009

Archive powered by MHonArc 2.6.24.

Top of Page