kernel.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-bootable-kernel" xreflabel="Linux" role="wrap">
  7. <title>Linux-&linux-version;</title>
  8. <?dbhtml filename="kernel.html"?>
  9. <indexterm zone="ch-bootable-kernel"><primary sortas="a-Linux">Linux</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The Linux package contains the kernel and the header files.</para>
  12. <segmentedlist>
  13. <segtitle>&buildtime;</segtitle>
  14. <segtitle>&diskspace;</segtitle>
  15. <seglistitem><seg>All default options: 4.20 SBU</seg>
  16. <seg>All default options: 181 MB</seg></seglistitem>
  17. </segmentedlist>
  18. <segmentedlist>
  19. <segtitle>Linux installation depends on</segtitle>
  20. <seglistitem><seg>Bash, Binutils, Coreutils, Findutils,
  21. GCC, Glibc, Grep, Gzip, Make, Modutils, Perl, Sed</seg></seglistitem>
  22. </segmentedlist>
  23. </sect2>
  24. <sect2 role="installation">
  25. <title>Installation of the kernel</title>
  26. <para>Building the kernel involves a few steps: configuration, compilation, and
  27. installation. If you don't like the way this book configures the kernel, view
  28. the <filename>README</filename> file in the kernel source tree for alternative
  29. methods.</para>
  30. <para>Prepare for compilation by running the following command:</para>
  31. <screen><userinput>make mrproper</userinput></screen>
  32. <para>This ensures that the kernel tree is absolutely clean. The kernel team
  33. recommends that this command be issued prior to <emphasis>each</emphasis>
  34. kernel compilation. You shouldn't rely on the source tree being clean after
  35. un-tarring.</para>
  36. <para>Also, ensure that the kernel does not attempt to pass hotplugging events
  37. to userspace until userspace specifies that it is ready:</para>
  38. <screen><userinput>sed -i 's@/sbin/hotplug@/bin/true@' kernel/kmod.c</userinput></screen>
  39. <para>If, in <xref linkend="ch-scripts-console"/>, you decided you want
  40. to compile the keymap into the kernel, issue the command below:</para>
  41. <screen><userinput>loadkeys -m /usr/share/kbd/keymaps/<replaceable>[path to keymap]</replaceable> &gt; \
  42. <replaceable>[unpacked sources dir]</replaceable>/linux-&linux-version;/drivers/char/defkeymap.c</userinput></screen>
  43. <para>For example, if you have a Dutch keyboard, you would use
  44. <filename>/usr/share/kbd/keymaps/i386/qwerty/nl.map.gz</filename>.</para>
  45. <para>Configure the kernel via a menu-driven interface:</para>
  46. <screen><userinput>make menuconfig</userinput></screen>
  47. <para><command>make oldconfig</command> may be more appropriate in some
  48. situations. See the <filename>README</filename> file for more
  49. information.</para>
  50. <para>If you wish, you may skip kernel configuration by simply copying the
  51. kernel config file, <filename>.config</filename>, from your host system
  52. (assuming it is available) to the unpacked <filename class="directory">linux-&linux-version;</filename>
  53. directory. However, we
  54. don't recommend this option. You're much better off exploring all the
  55. configuration menus and creating your own kernel configuration from
  56. scratch.</para>
  57. <para>For POSIX shared memory support, ensure that the kernel config option
  58. <quote>Virtual memory file system support</quote> is enabled. It resides within
  59. the <quote>File systems</quote> menu and is normally enabled by default.</para>
  60. <para>LFS bootscripts make the assumption that you either compile
  61. both <quote>Support for Host-side USB</quote> and
  62. <quote>USB device filesystem</quote> directly into the kernel, or don't compile them at
  63. all. Bootscripts will not work properly if it is a module (<filename>usbcore.ko</filename>).</para>
  64. <note><para>NPTL requires the kernel to be compiled with GCC 3.x, in this case
  65. &gcc-version;. Compiling with 2.95.x is known to cause failures in the glibc
  66. testsuite, so do <emphasis>not</emphasis> compile the kernel with gcc 2.95.x
  67. unless you know what you're getting yourself into.</para></note>
  68. <para>Compile the kernel image and modules:</para>
  69. <screen><userinput>make</userinput></screen>
  70. <para>If you intend to use kernel modules, you may need an
  71. <filename>/etc/modprobe.conf</filename> file. Information pertaining
  72. to modules and to kernel configuration in general may be found in the
  73. kernel documentation, which is found in the
  74. <filename class="directory">linux-&linux-version;/Documentation</filename> directory.
  75. The modprobe.conf man page
  76. <!-- removed for review from tldp.org
  77. and the kernel HOWTO at
  78. <ulink url="http://www.tldp.org/HOWTO/Kernel-HOWTO.html"/> -->
  79. may also be of interest to you.</para>
  80. <para>Be very suspicious while reading other documentation, because it
  81. usually applies to 2.4.x kernels only. As far as the editors know, kernel
  82. configuration issues specific to Hotplug and Udev
  83. are documented nowhere. The problem is that Udev will create a device node
  84. only if Hotplug or a user-written script inserts the corresponding module
  85. into the kernel, and not all modules are detectable by Hotplug. Note
  86. that statements like
  87. <screen>alias char-major-XXX some-module</screen>
  88. in <filename>/etc/modprobe.conf</filename> file don't work with
  89. Udev, and other aliases are often unnecessary with Hotplug.</para>
  90. <para>Because of all those compilcations with Hotplug, Udev and modules, we
  91. strongly recommend you to start with a completely non-modular kernel
  92. configuration, especially if this is the first time you use Udev.</para>
  93. <para>Install the modules, if your kernel configuration uses them:</para>
  94. <screen><userinput>make modules_install</userinput></screen>
  95. <para>If you have a lot of modules and very little space, you may want to
  96. consider stripping and compressing the modules. For most people such compression
  97. isn't worth the trouble, but if you're really pressed for space, then have a look at
  98. <ulink url="http://www.linux-mips.org/archives/linux-mips/2002-04/msg00031.html"/>.</para>
  99. <para>Kernel compilation has finished but more steps are required to complete
  100. the installation. Some files need to be copied to the <filename class="directory">/boot</filename>
  101. directory.</para>
  102. <para>The path to the kernel image may vary depending on the platform you're
  103. using. Issue the following command to install the kernel:</para>
  104. <screen><userinput>cp arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen>
  105. <para><filename>System.map</filename> is a symbol file for the kernel. It maps
  106. the function entry points of every function in the kernel API (Application Programming Interface), as well as the
  107. addresses of the kernel data structures for the running kernel. Issue the
  108. following command to install the map file:</para>
  109. <screen><userinput>cp System.map /boot/System.map-&linux-version;</userinput></screen>
  110. <para><filename>.config</filename> is the kernel configuration file that was
  111. produced by the <command>make menuconfig</command> step above. It contains all
  112. the config selections for the kernel that was just compiled. It's a good idea
  113. to keep this file for future reference:</para>
  114. <screen><userinput>cp .config /boot/config-&linux-version;</userinput></screen>
  115. <para>It is important to note that the files in the kernel source directory are
  116. not owned by <emphasis>root</emphasis>. Whenever you unpack a package as user
  117. <emphasis>root</emphasis> (like we did here inside chroot), the files end up
  118. having the user and group IDs of whatever they were on the packager's computer.
  119. This is usually not a problem for any other package you install because you
  120. remove the source tree after the installation. But the Linux source tree is
  121. often kept around for a long time, so there's a chance that whatever user ID
  122. the packager used will be assigned to somebody on your machine and then that
  123. person would have write access to the kernel source.</para>
  124. <para>If you are going to keep the kernel source tree around, you may want to
  125. run <command>chown -R 0:0</command> on the
  126. <filename class="directory">linux-&linux-version;</filename> directory to ensure all files are
  127. owned by user <emphasis>root</emphasis>.</para>
  128. </sect2>
  129. <sect2 id="contents-kernel" role="content"><title>Contents of Linux</title>
  130. <segmentedlist>
  131. <segtitle>Installed files</segtitle>
  132. <seglistitem><seg>the kernel, the kernel headers,
  133. and the System.map</seg></seglistitem>
  134. </segmentedlist>
  135. <variablelist><title>Short descriptions</title>
  136. <varlistentry id="kernel">
  137. <term>The <emphasis>kernel</emphasis></term>
  138. <listitem>
  139. <indexterm zone="ch-bootable-kernel kernel"><primary sortas="b-kernel">kernel</primary></indexterm>
  140. <para>is the engine of your Linux system.
  141. When switching on your box, the kernel is the first part of your operating
  142. system that gets loaded. It detects and initializes all the components of your
  143. computer's hardware, then makes these components available as a tree of files
  144. to the software, and turns a single CPU into a multi-tasking machine capable
  145. of running scores of programs seemingly at the same time.</para>
  146. </listitem>
  147. </varlistentry>
  148. <varlistentry id="kernel-headers">
  149. <term>The <emphasis>kernel headers</emphasis></term>
  150. <listitem>
  151. <indexterm zone="ch-bootable-kernel kernel-headers"><primary sortas="e-kernel-headers">kernel headers</primary></indexterm>
  152. <para>define the interface to the
  153. services that the kernel provides. The headers in your system's
  154. <filename class="directory">include</filename> directory should <emphasis>always</emphasis> be
  155. the ones against which Glibc was compiled and should therefore
  156. <emphasis>not</emphasis> be replaced when upgrading the kernel.</para>
  157. </listitem>
  158. </varlistentry>
  159. <varlistentry id="System.map">
  160. <term><filename>System.map</filename></term>
  161. <listitem>
  162. <indexterm zone="ch-bootable-kernel System.map"><primary sortas="e-/boot/System.map">/boot/System.map</primary></indexterm>
  163. <para>is a list of addresses and symbols. It maps the entry points and addresses
  164. of all the functions and data structures in the kernel.</para>
  165. </listitem>
  166. </varlistentry>
  167. </variablelist>
  168. </sect2>
  169. </sect1>