kernel.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-bootable-kernel" role="wrap">
  8. <?dbhtml filename="kernel.html"?>
  9. <sect1info condition="script">
  10. <productname>linux</productname>
  11. <productnumber>&linux-version;</productnumber>
  12. <address>&linux-url;</address>
  13. </sect1info>
  14. <title>Linux-&linux-version;</title>
  15. <indexterm zone="ch-bootable-kernel">
  16. <primary sortas="a-Linux">Linux</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Linux package contains the Linux kernel.</para>
  21. <segmentedlist>
  22. <segtitle>&buildtime;</segtitle>
  23. <segtitle>&diskspace;</segtitle>
  24. <seglistitem>
  25. <seg>&linux-ch8-sbu;</seg>
  26. <seg>&linux-ch8-du;</seg>
  27. </seglistitem>
  28. </segmentedlist>
  29. </sect2>
  30. <sect2 role="installation">
  31. <title>Installation of the kernel</title>
  32. <para>Building the kernel involves a few steps&mdash;configuration,
  33. compilation, and installation. Read the <filename>README</filename> file
  34. in the kernel source tree for alternative methods to the way this book
  35. configures the kernel.</para>
  36. <para>Prepare for compilation by running the following command:</para>
  37. <screen><userinput remap="pre">make mrproper</userinput></screen>
  38. <para>This ensures that the kernel tree is absolutely clean. The
  39. kernel team recommends that this command be issued prior to each
  40. kernel compilation. Do not rely on the source tree being clean after
  41. un-tarring.</para>
  42. <!-- Support for compiling a keymap into the kernel is deliberately removed -->
  43. <para>Configure the kernel via a menu-driven interface. For general
  44. information on kernel configuration see <ulink
  45. url="&hints-root;kernel-configuration.txt"/>. BLFS has some information
  46. regarding particular kernel configuration requirements of packages outside
  47. of LFS at <ulink
  48. url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>. Additional
  49. information about configuring and building the kernel can be found at
  50. <ulink url="http://www.kroah.com/lkn/"/> </para>
  51. <note><para>A good starting place for setting up the kernel configuration
  52. is to run <command>make defconfig</command>. This will set the base
  53. configuration to a good state that takes your current system architecture
  54. into account.</para>
  55. <para>Be sure to enable or disable following features:</para>
  56. <screen role="nodump">General setup ---&gt;
  57. [*] open by fhandle syscalls
  58. [*] Control Group support
  59. Processor type and features ---&gt;
  60. [*] Enable seccomp to safely compute untrusted bytecode
  61. Networking support ---&gt;
  62. Networking options ---&gt;
  63. &lt;*&gt; The IPv6 protocol
  64. Device Drivers ---&gt;
  65. Generic Driver Options ---&gt;
  66. () path to uevent helper
  67. [*] Maintain a devtmpfs filesystem to mount at /dev
  68. [ ] Fallback user-helper invocation for firmware loading
  69. File systems ---&gt;
  70. [*] Inotify support for userspace
  71. &lt;*&gt; Kernel automounter version 4 support (also supports v3)
  72. Pseudo filesystems ---&gt;
  73. [*] Tmpfs POSIX Access Control Lists
  74. [*] Tmpfs extended attributes</screen></note>
  75. <screen role="nodump"><userinput>make LANG=<replaceable>&lt;host_LANG_value&gt;</replaceable> LC_ALL= menuconfig</userinput></screen>
  76. <variablelist>
  77. <title>The meaning of the make parameters:</title>
  78. <varlistentry>
  79. <term><parameter>LANG=&lt;host_LANG_value&gt; LC_ALL=</parameter></term>
  80. <listitem>
  81. <para>This establishes the locale setting to the one used on the host.
  82. This is needed for a proper menuconfig ncurses interface line
  83. drawing on UTF-8 linux text console.</para>
  84. <para>Be sure to replace <replaceable>&lt;host_LANG_value&gt;</replaceable>
  85. by the value of the <envar>$LANG</envar> variable from your host.
  86. If not set, you could use instead the host's value of <envar>$LC_ALL</envar>
  87. or <envar>$LC_CTYPE</envar>.</para>
  88. </listitem>
  89. </varlistentry>
  90. </variablelist>
  91. <para>Alternatively, <command>make oldconfig</command> may be more
  92. appropriate in some situations. See the <filename>README</filename>
  93. file for more information.</para>
  94. <para>If desired, skip kernel configuration by copying the kernel
  95. config file, <filename>.config</filename>, from the host system
  96. (assuming it is available) to the unpacked <filename
  97. class="directory">linux-&linux-version;</filename> directory. However,
  98. we do not recommend this option. It is often better to explore all the
  99. configuration menus and create the kernel configuration from
  100. scratch.</para>
  101. <para>Compile the kernel image and modules:</para>
  102. <screen><userinput remap="make">make</userinput></screen>
  103. <para>If using kernel modules, module configuration in <filename
  104. class="directory">/etc/modprobe.d</filename> may be required.
  105. Information pertaining to modules and kernel configuration is
  106. located in <xref linkend="ch-scripts-udev"/> and in the kernel
  107. documentation in the <filename
  108. class="directory">linux-&linux-version;/Documentation</filename> directory.
  109. Also, <filename>modprobe.conf(5)</filename> may be of interest.</para>
  110. <para>Install the modules, if the kernel configuration uses them:</para>
  111. <screen><userinput remap="install">make modules_install</userinput></screen>
  112. <para>After kernel compilation is complete, additional steps are
  113. required to complete the installation. Some files need to be copied to
  114. the <filename class="directory">/boot</filename> directory.</para>
  115. <para>The path to the kernel image may vary depending on the platform being
  116. used. The filename below can be changed to suit your taste, but the stem of
  117. the filename should be <emphasis>vmlinuz</emphasis> to be compatible with
  118. the automatic setup of the boot process described in the next section. The
  119. following command assumes an x86 architecture:</para>
  120. <screen><userinput remap="install">cp -v arch/x86/boot/bzImage /boot/vmlinuz-&linux-version;-lfs-&version;</userinput></screen>
  121. <para><filename>System.map</filename> is a symbol file for the kernel.
  122. It maps the function entry points of every function in the kernel API,
  123. as well as the addresses of the kernel data structures for the running
  124. kernel. It is used as a resource when investigating kernel problems.
  125. Issue the following command to install the map file:</para>
  126. <screen><userinput remap="install">cp -v System.map /boot/System.map-&linux-version;</userinput></screen>
  127. <para>The kernel configuration file <filename>.config</filename>
  128. produced by the <command>make menuconfig</command> step
  129. above contains all the configuration selections for the kernel
  130. that was just compiled. It is a good idea to keep this file for future
  131. reference:</para>
  132. <screen><userinput remap="install">cp -v .config /boot/config-&linux-version;</userinput></screen>
  133. <para>Install the documentation for the Linux kernel:</para>
  134. <screen><userinput remap="install">install -d /usr/share/doc/linux-&linux-version;
  135. cp -r Documentation/* /usr/share/doc/linux-&linux-version;</userinput></screen>
  136. <para>It is important to note that the files in the kernel source
  137. directory are not owned by <emphasis>root</emphasis>. Whenever a
  138. package is unpacked as user <emphasis>root</emphasis> (like we did
  139. inside chroot), the files have the user and group IDs of whatever
  140. they were on the packager's computer. This is usually not a problem
  141. for any other package to be installed because the source tree is
  142. removed after the installation. However, the Linux source tree is
  143. often retained for a long time. Because of this, there is a chance
  144. that whatever user ID the packager used will be assigned to somebody
  145. on the machine. That person would then have write access to the kernel
  146. source.</para>
  147. <para>If the kernel source tree is going to be retained, run
  148. <command>chown -R 0:0</command> on the <filename
  149. class="directory">linux-&linux-version;</filename> directory to ensure
  150. all files are owned by user <emphasis>root</emphasis>.</para>
  151. <warning>
  152. <para>Some kernel documentation recommends creating a symlink from
  153. <filename class="symlink">/usr/src/linux</filename> pointing to the kernel
  154. source directory. This is specific to kernels prior to the 2.6 series and
  155. <emphasis>must not</emphasis> be created on an LFS system as it can cause
  156. problems for packages you may wish to build once your base LFS system is
  157. complete.</para>
  158. </warning>
  159. <warning>
  160. <para>The headers in the system's <filename
  161. class="directory">include</filename> directory (<filename
  162. class="directory">/usr/include</filename>) should
  163. <emphasis>always</emphasis> be the ones against which Glibc was compiled,
  164. that is, the sanitised headers installed in <xref
  165. linkend="ch-system-linux-headers"/>. Therefore, they should
  166. <emphasis>never</emphasis> be replaced by either the raw kernel headers
  167. or any other kernel sanitized headers.</para>
  168. </warning>
  169. </sect2>
  170. <sect2 id="conf-modprobe" role="configuration">
  171. <title>Configuring Linux Module Load Order</title>
  172. <indexterm zone="conf-modprobe">
  173. <primary sortas="e-/etc/modprobe.d/usb.conf">/etc/modprobe.d/usb.conf</primary>
  174. </indexterm>
  175. <para>Most of the time Linux modules are loaded automatically, but
  176. sometimes it needs some specific direction. The program that loads
  177. modules, <command>modprobe</command> or <command>insmod</command>, uses
  178. <filename>/etc/modprobe.d/usb.conf</filename> for this purpose. This file
  179. needs to be created so that if the USB drivers (ehci_hcd, ohci_hcd and
  180. uhci_hcd) have been built as modules, they will be loaded in the correct
  181. order; ehci_hcd needs to be loaded prior to ohci_hcd and uhci_hcd in order
  182. to avoid a warning being output at boot time.</para>
  183. <para>Create a new file <filename>/etc/modprobe.d/usb.conf</filename> by running
  184. the following:</para>
  185. <screen><userinput>install -v -m755 -d /etc/modprobe.d
  186. cat &gt; /etc/modprobe.d/usb.conf &lt;&lt; "EOF"
  187. <literal># Begin /etc/modprobe.d/usb.conf
  188. install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
  189. install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
  190. # End /etc/modprobe.d/usb.conf</literal>
  191. EOF</userinput></screen>
  192. </sect2>
  193. <sect2 id="contents-kernel" role="content">
  194. <title>Contents of Linux</title>
  195. <segmentedlist>
  196. <segtitle>Installed files</segtitle>
  197. <segtitle>Installed directories</segtitle>
  198. <seglistitem>
  199. <seg>config-&linux-version;,
  200. vmlinuz-&linux-version;-lfs-&version;, and
  201. System.map-&linux-version;</seg>
  202. <seg>/lib/modules, /usr/share/doc/linux-&linux-version;</seg>
  203. </seglistitem>
  204. </segmentedlist>
  205. <variablelist>
  206. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  207. <?dbfo list-presentation="list"?>
  208. <?dbhtml list-presentation="table"?>
  209. <varlistentry id="config">
  210. <term><filename>config-&linux-version;</filename></term>
  211. <listitem>
  212. <para>Contains all the configuration selections for the kernel</para>
  213. <indexterm zone="ch-bootable-kernel config">
  214. <primary sortas="e-/boot/config">/boot/config-&linux-version;</primary>
  215. </indexterm>
  216. </listitem>
  217. </varlistentry>
  218. <varlistentry id="lfskernel">
  219. <term><filename>vmlinuz-&linux-version;-lfs-&version;</filename></term>
  220. <listitem>
  221. <para>The engine of the Linux system. When turning on the computer,
  222. the kernel is the first part of the operating system that gets loaded.
  223. It detects and initializes all components of the computer's hardware,
  224. then makes these components available as a tree of files to the
  225. software and turns a single CPU into a multitasking machine capable
  226. of running scores of programs seemingly at the same time</para>
  227. <indexterm zone="ch-bootable-kernel lfskernel">
  228. <primary sortas="b-lfskernel">lfskernel-&linux-version;</primary>
  229. </indexterm>
  230. </listitem>
  231. </varlistentry>
  232. <varlistentry id="System.map">
  233. <term><filename>System.map-&linux-version;</filename></term>
  234. <listitem>
  235. <para>A list of addresses and symbols; it maps the entry points and
  236. addresses of all the functions and data structures in the
  237. kernel</para>
  238. <indexterm zone="ch-bootable-kernel System.map">
  239. <primary sortas="e-/boot/System.map">/boot/System.map-&linux-version;</primary>
  240. </indexterm>
  241. </listitem>
  242. </varlistentry>
  243. </variablelist>
  244. </sect2>
  245. </sect1>