Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master cauldron by Justin Boffemmyer (5e4d66d5de859ed4253be19a9ef4f6f8260017b5)

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 master cauldron by Justin Boffemmyer (5e4d66d5de859ed4253be19a9ef4f6f8260017b5)
  • Date: Tue, 19 Aug 2008 05:31:59 -0500

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

iso/usr/share/doc/smgl.install/steps/compile-kernel | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)

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

steps/compile-kernel: add "cd /usr/src/linux"

Added the missing instruction to cd into the new kernel source
directory before issuing the make commands. Also removed the
unnecessary "make modules".

diff --git a/iso/usr/share/doc/smgl.install/steps/compile-kernel
b/iso/usr/share/doc/smgl.install/steps/compile-kernel
index d1b0a38..d82143c 100644
--- a/iso/usr/share/doc/smgl.install/steps/compile-kernel
+++ b/iso/usr/share/doc/smgl.install/steps/compile-kernel
@@ -1,6 +1,6 @@
compile-kernel
-This step is optional. You may now set up a custom kernel for your
-installation. To do so, run the following commands.
+This step is optional but recommended. You may now set up a custom kernel for
+your installation. To do so, run the following commands.

chroot into your system:
 smgl-chroot
@@ -9,12 +9,12 @@ Unpack the kernel sources:
 cd /usr/src
 tar -jxvf linux-2.6.22.tar.bz2 (leave out v to silence tar
output)

-Symlink to /usr/src/linux
- ln -sf /usr/src/linux-2.6.22 /usr/src/linux
+Symlink to /usr/src/linux and change directory
+ ln -sf /usr/src/linux-2.6.22 /usr/src/linux && cd /usr/src/linux

Configure, make, and install:
 make menuconfig
- make; make modules; make modules_install
+ make && make modules_install
 cp -f /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-2.6.22

Exit the chroot:



  • [SM-Commit] GIT changes to master cauldron by Justin Boffemmyer (5e4d66d5de859ed4253be19a9ef4f6f8260017b5), Justin Boffemmyer, 08/19/2008

Archive powered by MHonArc 2.6.24.

Top of Page