diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-01-23 20:49:24 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-01-23 20:49:24 +0000 |
commit | a1e18fa508b3e2d7b870480f289f5aa029a41cf6 (patch) | |
tree | 2f91025f9d7e790105a72da2f840f0b3d81705a3 | |
parent | 41ddb3b5c89bc278e3f9ef080dc228eedd1ed4fd (diff) |
Install Linux kernel documentation. Fixes bug 1683
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7295 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 10 | ||||
-rw-r--r-- | chapter08/kernel.xml | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 906a66553..4ac27cf1b 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,16 @@ <para>January 23, 2006</para> <itemizedlist> <listitem> + <para>[matthew] - Install documentation for the Linux kernel. Thanks +to Tushar for the report. Fixes bug 1683.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> + <para>January 23, 2006</para> + <itemizedlist> + <listitem> <para>[matthew] - Added a patch to enable Perl's DB_File module to compile with the latest version of Berkeley DB. Thanks to Alexander Patrakov for the patch.</para> diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 457e1c2fb..9a9de871b 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -147,6 +147,11 @@ <screen><userinput>cp -v .config /boot/config-&linux-version;</userinput></screen> + <para>Install the documentation for the Linux kernel:</para> + +<screen>install -d /usr/share/doc/linux-&linux-version; && +cp -r Documentation/* /usr/share/doc/linux-&linux-version;</screen> + <para>It is important to note that the files in the kernel source directory are not owned by <emphasis>root</emphasis>. Whenever a package is unpacked as user <emphasis>root</emphasis> (like we did |