diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
commit | 21ba4e3570c1c2524b0733d492ced9634b259353 (patch) | |
tree | f5124d2e6106d2e29e5b32f79b56a90defabdbd9 /chapter05/kernelheaders-inst.xml | |
parent | 1a7aecc6119f540e24a4e8da1b583a625b5690c1 (diff) |
Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of <para><screen> with <screen> (and of course the matching closing tags).
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/kernelheaders-inst.xml')
-rw-r--r-- | chapter05/kernelheaders-inst.xml | 14 |
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> |