aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08/kernel.xml
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
commitb822811980a5f82726cb641cbeff66be9eb6d92a (patch)
tree27c4db3c62aaea065b053e43c39b2ba44c04a05f /chapter08/kernel.xml
parent46f5461af92bc70c62bbb92895032b930954d835 (diff)
XML changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@827 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r--chapter08/kernel.xml19
1 files changed, 6 insertions, 13 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml
index 4fd0bf4a2..55de3e743 100644
--- a/chapter08/kernel.xml
+++ b/chapter08/kernel.xml
@@ -1,17 +1,13 @@
<sect1 id="ch08-kernel">
<title>Installing a kernel</title>
-<para>
-Building the kernel involves a few steps: configuring it and compiling
+<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. The
-following commands are run to build the kernel:
-</para>
+following commands are run to build the kernel:</para>
-<para>
-<screen>
-<userinput>cd /usr/src/linux &amp;&amp;</userinput>
+<para><screen><userinput>cd /usr/src/linux &amp;&amp;</userinput>
<userinput>make mrproper &amp;&amp;</userinput>
<userinput>make menuconfig &amp;&amp;</userinput>
<userinput>make dep &amp;&amp;</userinput>
@@ -19,13 +15,10 @@ following commands are run to build the kernel:
<userinput>make modules &amp;&amp;</userinput>
<userinput>make modules_install &amp;&amp;</userinput>
<userinput>cp arch/i386/boot/bzImage /boot/lfskernel &amp;&amp;</userinput>
-<userinput>cp System.map /boot</userinput>
-</screen>
-</para>
+<userinput>cp System.map /boot</userinput></screen></para>
-<para>
-Note: the arch/i386/boot/bzImage path may vary on different platforms.
-</para>
+<para>Note: the arch/i386/boot/bzImage path may vary on
+different platforms.</para>
</sect1>