installing kernel docs with the kernel instead of separately

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2682 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Alex Gronenwoud 2003-08-26 21:35:10 +00:00
parent 140190c033
commit a8b6190cae
6 changed files with 21 additions and 54 deletions

View File

@ -6,26 +6,6 @@
<itemizedlist> <itemizedlist>
<listitem><para>August 26, 2003 [jeremy] - Chapter 07 -
Creating /etc/hosts: Changed www.mydomain.org to
&lt;value of HOSTNAME&gt;.mydomain.org</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 04 -
Mounting the LFS partition: Added text regarding mounting
with too restrictive permissions.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 06 -
Creating Directories: Added the creation of the /dev/shm
directory.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 08 -
Creating fstab: Added the mount of tmpfs filesystem to
/dev/shm.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 08 -
Kernel Installation: Added a reminder to compile tmpfs
support into the kernel.</para></listitem>
<listitem><para>Upgraded to: <listitem><para>Upgraded to:
<itemizedlist> <itemizedlist>
<listitem><para>automake-1.7.6</para></listitem> <listitem><para>automake-1.7.6</para></listitem>
@ -102,6 +82,18 @@ support into the kernel.</para></listitem>
</itemizedlist> </itemizedlist>
</para></listitem> </para></listitem>
<listitem><para>August 26th, 2003 [alex]: Chapter 06 &amp; 08 - Moved the
installation of the kernel manpages from chapter 6 to 8.</para></listitem>
<listitem><para>August 25th, 2003 [alex]: Chapter 06 - Rewrote the installation
text of Shadow and Util-Linux while correcting some typos.</para></listitem>
<listitem><para>August 25th, 2003 [alex]: Chapter 05 &amp; 06 - Made the
"Locking in" and "Re-adjusting" look similar.</para></listitem>
<listitem><para>August 24th, 2003 [alex]: Chapter 04 - Merged the many little
files into one file. Gave packages and patches a separate page.</para></listitem>
<listitem><para>August 17th, 2003 [alex]: Chapter 05 - From Bash to Perl: <listitem><para>August 17th, 2003 [alex]: Chapter 05 - From Bash to Perl:
put text in between commands. Added a section on stripping unneeded put text in between commands. Added a section on stripping unneeded
symbols to decrease the size of the tools.</para></listitem> symbols to decrease the size of the tools.</para></listitem>

View File

@ -63,7 +63,6 @@
&c6-tar; &c6-tar;
&c6-utillinux; &c6-utillinux;
&c6-gcc-2953; &c6-gcc-2953;
&c6-kernel-manpages;
&c6-revisedchroot; &c6-revisedchroot;
&c6-bootscripts; &c6-bootscripts;
&c6-configure; &c6-configure;

View File

@ -1,13 +0,0 @@
<sect2>
<title>Installation of the kernel man pages</title>
<para>Build the manual pages:</para>
<para><screen><userinput>make mandocs</userinput></screen></para>
<para>Install the manual pages:</para>
<para><screen><userinput>cp -a Documentation/man /usr/share/man/man9</userinput></screen></para>
</sect2>

View File

@ -1,12 +0,0 @@
<sect1 id="ch06-kernel-manpages">
<title>Installing Linux-&kernel-version; man pages</title>
<?dbhtml filename="kernel-manpages.html" dir="chapter06"?>
<screen>Estimated build time: &kernel-manpages-time;
Estimated required disk space: &kernel-manpages-compsize;</screen>
&aa-kernel-shortdesc;
&c6-kernel-manpages-inst;
</sect1>

View File

@ -31,10 +31,6 @@ system to the
<filename class="directory">$LFS/usr/src/linux-&kernel-version;</filename> <filename class="directory">$LFS/usr/src/linux-&kernel-version;</filename>
directory.</para> directory.</para>
<para>It's important to note that to be compliant with Posix shared memory
requirements, we must enable the tmpfs filesystem option, and mount a tmpfs
filesystem at /dev/shm.</para>
<para>Verify dependencies and create dependency information files:</para> <para>Verify dependencies and create dependency information files:</para>
<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc dep</userinput></screen></para> <para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc dep</userinput></screen></para>
@ -60,6 +56,15 @@ interest to you.</para>
<para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc modules_install</userinput></screen></para> <para><screen><userinput>make CC=/opt/gcc-2.95.3/bin/gcc modules_install</userinput></screen></para>
<para>As nothing is complete without documentation, build the manual pages
that come with the kernel:</para>
<para><screen><userinput>make mandocs</userinput></screen></para>
<para>And install these pages:</para>
<para><screen><userinput>cp -a Documentation/man /usr/share/man/man9</userinput></screen></para>
<para>Kernel compilation has finished, but some of the files created <para>Kernel compilation has finished, but some of the files created
still reside in the source tree. To complete the installation, two still reside in the source tree. To complete the installation, two
files should to be copied to the <filename>/boot</filename> files should to be copied to the <filename>/boot</filename>

View File

@ -6,8 +6,6 @@
<!ENTITY c6-kernel SYSTEM "../chapter06/kernel.xml"> <!ENTITY c6-kernel SYSTEM "../chapter06/kernel.xml">
<!ENTITY c6-kernel-inst SYSTEM "../chapter06/kernel-inst.xml"> <!ENTITY c6-kernel-inst SYSTEM "../chapter06/kernel-inst.xml">
<!ENTITY c6-kernel-exp-headers SYSTEM "../chapter06/kernel-exp-headers.xml"> <!ENTITY c6-kernel-exp-headers SYSTEM "../chapter06/kernel-exp-headers.xml">
<!ENTITY c6-kernel-manpages SYSTEM "../chapter06/kernel-manpages.xml">
<!ENTITY c6-kernel-manpages-inst SYSTEM "../chapter06/kernel-manpages-inst.xml">
<!ENTITY c8-kernel SYSTEM "../chapter08/kernel.xml"> <!ENTITY c8-kernel SYSTEM "../chapter08/kernel.xml">
<!ENTITY c8-kernel-inst SYSTEM "../chapter08/kernel-inst.xml"> <!ENTITY c8-kernel-inst SYSTEM "../chapter08/kernel-inst.xml">
@ -29,7 +27,5 @@
<!ENTITY kernel-time-headers "0.02 SBU"> <!ENTITY kernel-time-headers "0.02 SBU">
<!ENTITY kernel-compsize "All default options: 181 MB"> <!ENTITY kernel-compsize "All default options: 181 MB">
<!ENTITY kernel-manpages-compsize "To Be Determined">
<!ENTITY kernel-time "All default options: 4.20 SBU"> <!ENTITY kernel-time "All default options: 4.20 SBU">
<!ENTITY kernel-manpages-time "0.01 SBU">