aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/kernelheaders-inst.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05/kernelheaders-inst.xml')
-rw-r--r--chapter05/kernelheaders-inst.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/chapter05/kernelheaders-inst.xml b/chapter05/kernelheaders-inst.xml
index 15cf446ac..ecfa07732 100644
--- a/chapter05/kernelheaders-inst.xml
+++ b/chapter05/kernelheaders-inst.xml
@@ -9,7 +9,7 @@ place where <userinput>gcc</userinput> can later find them.</para>
<para>Prepare for the header installation with:</para>
-<para><screen><userinput>make mrproper</userinput></screen></para>
+<screen><userinput>make mrproper</userinput></screen>
<para>This ensures that the kernel tree is absolutely clean. The kernel team
recommends that this command be issued prior to <emphasis>each</emphasis> kernel
@@ -18,29 +18,29 @@ untarring.</para>
<para>Create the <filename>include/linux/version.h</filename> file:</para>
-<para><screen><userinput>make include/linux/version.h</userinput></screen></para>
+<screen><userinput>make include/linux/version.h</userinput></screen>
<para>Create the platform-specific <filename>include/asm</filename>
symlink:</para>
-<para><screen><userinput>make symlinks</userinput></screen></para>
+<screen><userinput>make symlinks</userinput></screen>
<para>Install the platform-specific header files:</para>
-<para><screen><userinput>mkdir /tools/include/asm
+<screen><userinput>mkdir /tools/include/asm
cp include/asm/* /tools/include/asm
-cp -R include/asm-generic /tools/include</userinput></screen></para>
+cp -R include/asm-generic /tools/include</userinput></screen>
<para>Install the cross-platform kernel header files:</para>
-<para><screen><userinput>cp -R include/linux /tools/include</userinput></screen></para>
+<screen><userinput>cp -R include/linux /tools/include</userinput></screen>
<para>There are a few kernel header files which make use of the
<filename>autoconf.h</filename> header file. Since we do not yet configure the
kernel, we need to create this file ourselves in order to avoid compilation
failures. Create an empty <filename>autoconf.h</filename> file:</para>
-<para><screen><userinput>touch /tools/include/linux/autoconf.h</userinput></screen></para>
+<screen><userinput>touch /tools/include/linux/autoconf.h</userinput></screen>
</sect2>