diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-05-02 18:20:20 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-05-02 18:20:20 +0000 |
commit | bc82645e958948a6aefd3147a0d7f712de9eaf6b (patch) | |
tree | 4855b70f785c1e6bf04856e97824988120503b05 /chapter08 | |
parent | 55b50e3f6653cef278bad7e45fe5a378966953a7 (diff) |
Integrated Pure LFS - Phase 1
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2490 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/kernel-inst.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter08/kernel-inst.xml b/chapter08/kernel-inst.xml index 5d63dd322..6bd824eb3 100644 --- a/chapter08/kernel-inst.xml +++ b/chapter08/kernel-inst.xml @@ -33,15 +33,15 @@ directory.</para> <para>Verify dependencies and create dependency information files:</para> -<para><screen><userinput>make dep</userinput></screen></para> +<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc dep</userinput></screen></para> <para>Compile the kernel image:</para> -<para><screen><userinput>make bzImage</userinput></screen></para> +<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc bzImage</userinput></screen></para> <para>Compile the drivers which have been configured as modules:</para> -<para><screen><userinput>make modules</userinput></screen></para> +<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc modules</userinput></screen></para> <para>If you intend to use kernel modules, you will need an <filename>/etc/modules.conf</filename> file. Information pertaining @@ -54,7 +54,7 @@ interest to you.</para> <para>Install the modules:</para> -<para><screen><userinput>make modules_install</userinput></screen></para> +<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc modules_install</userinput></screen></para> <para>Kernel compilation has finished, but some of the files created still reside in the source tree. To complete the installation, two |