Skip to Content.
Sympa Menu

sm-commit - Re: [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: Ladislav Hagara <ladislav.hagara AT unob.cz>
  • To: Justin Boffemmyer <flux AT sourcemage.org>
  • Cc: "sm-commit AT lists.ibiblio.org" <sm-commit AT lists.ibiblio.org>
  • Subject: Re: [SM-Commit] GIT changes to master cauldron by Justin Boffemmyer (5e4d66d5de859ed4253be19a9ef4f6f8260017b5)
  • Date: Wed, 03 Sep 2008 00:19:54 +0200


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

Instead of cp I run "make install" or even I compile kernel by "cast -r -c linux".
The cast is fine because socery know about linux (gaze version linux) after reboot.
Btw, latest stable kernel sources on install iso instead of 2.6.22, what was the conclusion?

--
Ladislav Hagara




Archive powered by MHonArc 2.6.24.

Top of Page