diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-18 19:17:55 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-18 19:17:55 +0000 |
commit | bee1e69712a65c10fc7dade2832afa947221cb49 (patch) | |
tree | bca08ff57272598c6d274ea65e7457e1fd1b74e7 /chapter08 | |
parent | 60ed866798672201b1e79c15a8f38e4f7f76a9a1 (diff) |
Removed cd command, since this is assumed for all packages except makedev.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2115 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/kernel.xml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index f4c972857..466d248a8 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -33,15 +33,14 @@ interest to you.</para> <para>The following commands are run to build the kernel:</para> -<para><screen><userinput>cd /usr/src/linux-&kernel-version; &&</userinput> -<userinput>make mrproper &&</userinput> -<userinput>make menuconfig &&</userinput> -<userinput>make dep &&</userinput> -<userinput>make bzImage &&</userinput> -<userinput>make modules &&</userinput> -<userinput>make modules_install &&</userinput> -<userinput>cp arch/i386/boot/bzImage /boot/lfskernel &&</userinput> -<userinput>cp System.map /boot</userinput></screen></para> +<para><screen><userinput>make mrproper && +make menuconfig && +make dep && +make bzImage && +make modules && +make modules_install && +cp arch/i386/boot/bzImage /boot/lfskernel && +cp System.map /boot</userinput></screen></para> <para>Note: the arch/i386/boot/bzImage path may vary on different platforms.</para> |