diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-29 20:01:45 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-29 20:01:45 +0000 |
commit | 2bdc67d17847ca6c6eddee2c1af0f3c80a2aad64 (patch) | |
tree | 50781cf63ca5d275e8787ef02e49dbc01bcd4842 /chapter08/kernel.xml | |
parent | fa914e596245dfff0d0424b3bdffd6f762b40e19 (diff) |
Text updates
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1115 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r-- | chapter08/kernel.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 93616833d..ff973db72 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -7,14 +7,16 @@ Estimated required disk space: &kernel-compsize;</screen> <para>Building the kernel involves a few steps: configuring it and compiling it. There are a few ways to configure the kernel. If you don't like the way this book does it, read the <filename>README</filename> that comes -with the kernel source tree, and find out what the options are.</para> +with the kernel source tree, and find out what the other options are.</para> <para>Something you could do, is take the .config file from your host distribution's kernel source tree and copy it to $LFS/usr/src/linux. This way you don't have to configure the entire kernel from scratch and can use your current values. If you choose to do this, first run the make mrproper command below, then copy the .config file over, then run -make menuconfig.</para> +make menuconfig (make oldconfig may be better in some situations. See +the <filename>README</filename> file for more details when to use make +oldconfig).</para> <para>The following commands are run to build the kernel:</para> |