kernel.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  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>kernel</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-book;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>
  52. <para>A good starting place for setting up the kernel configuration is to
  53. run <command>make defconfig</command>. This will set the base
  54. configuration to a good state that takes your current system architecture
  55. into account.</para>
  56. <para>Be sure to enable/disable/set the following features or the system might
  57. not work correctly or boot at all:</para>
  58. <screen role="nodump" revision="sysv">
  59. Device Drivers ---&gt;
  60. Generic Driver Options ---&gt;
  61. [ ] Support for uevent helper [CONFIG_UEVENT_HELPER]
  62. [*] Maintain a devtmpfs filesystem to mount at /dev [CONFIG_DEVTMPFS]
  63. Kernel hacking ---&gt;
  64. Choose kernel unwinder (Frame pointer unwinder) ---&gt; [CONFIG_UNWINDER_FRAME_POINTER]</screen>
  65. <screen role="nodump" revision="systemd">
  66. General setup -->
  67. [ ] Enable deprecated sysfs features to support old userspace tools [CONFIG_SYSFS_DEPRECATED]
  68. [ ] Enable deprecated sysfs features by default [CONFIG_SYSFS_DEPRECATED_V2]
  69. [*] open by fhandle syscalls [CONFIG_FHANDLE]
  70. [ ] Auditing support [CONFIG_AUDIT]
  71. [*] Control Group support [CONFIG_CGROUPS]
  72. Processor type and features ---&gt;
  73. [*] Enable seccomp to safely compute untrusted bytecode [CONFIG_SECCOMP]
  74. Networking support ---&gt;
  75. Networking options ---&gt;
  76. &lt;*&gt; The IPv6 protocol [CONFIG_IPV6]
  77. Device Drivers ---&gt;
  78. Generic Driver Options ---&gt;
  79. [ ] Support for uevent helper [CONFIG_UEVENT_HELPER]
  80. [*] Maintain a devtmpfs filesystem to mount at /dev [CONFIG_DEVTMPFS]
  81. [ ] Fallback user-helper invocation for firmware loading [CONFIG_FW_LOADER_USER_HELPER]
  82. Firmware Drivers ---&gt;
  83. [*] Export DMI identification via sysfs to userspace [CONFIG_DMIID]
  84. File systems ---&gt;
  85. [*] Inotify support for userspace [CONFIG_INOTIFY_USER]
  86. &lt;*&gt; Kernel automounter version 4 support (also supports v3) [CONFIG_AUTOFS4_FS]
  87. Pseudo filesystems ---&gt;
  88. [*] Tmpfs POSIX Access Control Lists [CONFIG_TMPFS_POSIX_ACL]
  89. [*] Tmpfs extended attributes [CONFIG_TMPFS_XATTR]
  90. Kernel hacking ---&gt;
  91. Choose kernel unwinder (Frame pointer unwinder) ---&gt; [CONFIG_UNWINDER_FRAME_POINTER]</screen>
  92. </note>
  93. <note revision="systemd">
  94. <para>While "The IPv6 Protocol" is not strictly
  95. required, it is highly recommended by the systemd developers.</para>
  96. </note>
  97. <para revision="sysv">There are several other options that may be desired
  98. depending on the requirements for the system. For a list of options needed
  99. for BLFS packages, see the <ulink
  100. url="&lfs-root;blfs/view/&short-version;/longindex.html#kernel-config-index">BLFS
  101. Index of Kernel Settings</ulink>
  102. (&lfs-root;blfs/view/&short-version;/longindex.html#kernel-config-index).</para>
  103. <note>
  104. <para>If your host hardware is using UEFI, then the 'make defconfig'
  105. above should automatically add in some EFI-related kernel options.</para>
  106. <para>In order to allow your LFS kernel to be booted from within your
  107. host's UEFI boot environment, your kernel must have this option
  108. selected:</para>
  109. <screen role="nodump">Processor type and features ---&gt;
  110. [*] EFI stub support [CONFIG_EFI_STUB]</screen>
  111. <para>A fuller description of managing UEFI environments from within LFS
  112. is covered by the lfs-uefi.txt hint at
  113. <ulink
  114. url="http://www.linuxfromscratch.org/hints/downloads/files/lfs-uefi.txt"/>.
  115. </para>
  116. </note>
  117. <note arch="ml_32,ml_x32,ml_all">
  118. <para>
  119. Running a multilib system means also that the kernel has to be
  120. configured proper. It is required that the kernel is able to
  121. identify and start binaries compiled for different architectures
  122. than the default. Setup the required parameter in the kernel
  123. config:
  124. </para>
  125. <screen>Binary Emulations ---&gt;
  126. [*] IA32 Emulation
  127. &lt;M&gt; IA32 a.out support
  128. [*] x32 ABI for 64-bit mode
  129. </screen>
  130. <para>Make sure that the option
  131. 'IA32 Emulation' is set if you built support for the 32bit ABI.
  132. If you selected the x32 ABI or built support for both, also select
  133. 'x32 ABI for 64-bit mode'. The option 'IA32 a.out support' is
  134. optional.
  135. </para>
  136. </note>
  137. <variablelist>
  138. <title>The rationale for the above configuration items:</title>
  139. <varlistentry>
  140. <term><parameter>Support for uevent helper</parameter></term>
  141. <listitem>
  142. <para>Having this option set may interfere with device
  143. management when using Udev/Eudev. </para>
  144. </listitem>
  145. </varlistentry>
  146. <varlistentry>
  147. <term><parameter>Maintain a devtmpfs</parameter></term>
  148. <listitem>
  149. <para>This will create automated device nodes which are populated by the
  150. kernel, even without Udev running. Udev then runs on top of this,
  151. managing permissions and adding symlinks. This configuration
  152. item is required for all users of Udev/Eudev.</para>
  153. </listitem>
  154. </varlistentry>
  155. </variablelist>
  156. <screen role="nodump"><userinput>make menuconfig</userinput></screen>
  157. <variablelist>
  158. <title>The meaning of optional make environment variables:</title>
  159. <varlistentry>
  160. <term><parameter>LANG=&lt;host_LANG_value&gt; LC_ALL=</parameter></term>
  161. <listitem>
  162. <para>This establishes the locale setting to the one used on the
  163. host. This may be needed for a proper menuconfig ncurses interface
  164. line drawing on a UTF-8 linux text console.</para>
  165. <para>If used, be sure to replace
  166. <replaceable>&lt;host_LANG_value&gt;</replaceable> by the value of
  167. the <envar>$LANG</envar> variable from your host. You can
  168. alternatively use instead the host's value of <envar>$LC_ALL</envar>
  169. or <envar>$LC_CTYPE</envar>.</para>
  170. </listitem>
  171. </varlistentry>
  172. </variablelist>
  173. <para>Alternatively, <command>make oldconfig</command> may be more
  174. appropriate in some situations. See the <filename>README</filename>
  175. file for more information.</para>
  176. <para>If desired, skip kernel configuration by copying the kernel
  177. config file, <filename>.config</filename>, from the host system
  178. (assuming it is available) to the unpacked <filename
  179. class="directory">linux-&linux-version;</filename> directory. However,
  180. we do not recommend this option. It is often better to explore all the
  181. configuration menus and create the kernel configuration from
  182. scratch.</para>
  183. <para>Compile the kernel image and modules:</para>
  184. <screen><userinput remap="make">make</userinput></screen>
  185. <para>If using kernel modules, module configuration in <filename
  186. class="directory">/etc/modprobe.d</filename> may be required.
  187. Information pertaining to modules and kernel configuration is
  188. located in <xref linkend="ch-scripts-udev"/> and in the kernel
  189. documentation in the <filename
  190. class="directory">linux-&linux-version;/Documentation</filename> directory.
  191. Also, <filename>modprobe.d(5)</filename> may be of interest.</para>
  192. <para>Unless module support has been disabled in the kernel configuration,
  193. install the modules with:</para>
  194. <screen><userinput remap="install">make modules_install</userinput></screen>
  195. <para>After kernel compilation is complete, additional steps are
  196. required to complete the installation. Some files need to be copied to
  197. the <filename class="directory">/boot</filename> directory.</para>
  198. <caution>
  199. <para>If the host system has a separate /boot partition, the files copied
  200. below should go there. The easiest way to do that is to bind /boot on the
  201. host (outside chroot) to /mnt/lfs/boot before proceeding. As the root
  202. user in the <emphasis>host system</emphasis>:</para>
  203. <screen role="nodump"><userinput>mount --bind /boot /mnt/lfs/boot</userinput></screen>
  204. </caution>
  205. <para>The path to the kernel image may vary depending on the platform being
  206. used. The filename below can be changed to suit your taste, but the stem of
  207. the filename should be <emphasis>vmlinuz</emphasis> to be compatible with
  208. the automatic setup of the boot process described in the next section. The
  209. following command assumes an x86 architecture:</para>
  210. <screen arch="default" revision="sysv"><userinput remap="install">cp -iv arch/x86/boot/bzImage /boot/vmlinuz-&linux-version;-lfs-&version;</userinput></screen>
  211. <screen arch="ml_32,ml_x32,ml_all" revision="sysv"><userinput remap="install">cp -iv arch/x86/boot/bzImage /boot/vmlinuz-&linux-version;-lfs-&version;-multilib</userinput></screen>
  212. <screen arch="default" revision="systemd"><userinput remap="install">cp -iv arch/x86/boot/bzImage /boot/vmlinuz-&linux-version;-lfs-&versiond;</userinput></screen>
  213. <screen arch="ml_32,ml_x32,ml_all" revision="systemd"><userinput remap="install">cp -iv arch/x86/boot/bzImage /boot/vmlinuz-&linux-version;-lfs-&versiond;-multilib</userinput></screen>
  214. <para><filename>System.map</filename> is a symbol file for the kernel.
  215. It maps the function entry points of every function in the kernel API,
  216. as well as the addresses of the kernel data structures for the running
  217. kernel. It is used as a resource when investigating kernel problems.
  218. Issue the following command to install the map file:</para>
  219. <screen><userinput remap="install">cp -iv System.map /boot/System.map-&linux-version;</userinput></screen>
  220. <para>The kernel configuration file <filename>.config</filename>
  221. produced by the <command>make menuconfig</command> step
  222. above contains all the configuration selections for the kernel
  223. that was just compiled. It is a good idea to keep this file for future
  224. reference:</para>
  225. <screen><userinput remap="install">cp -iv .config /boot/config-&linux-version;</userinput></screen>
  226. <para>Install the documentation for the Linux kernel:</para>
  227. <screen><userinput remap="install">install -d /usr/share/doc/linux-&linux-version;
  228. cp -r Documentation/* /usr/share/doc/linux-&linux-version;</userinput></screen>
  229. <para>It is important to note that the files in the kernel source
  230. directory are not owned by <emphasis>root</emphasis>. Whenever a
  231. package is unpacked as user <emphasis>root</emphasis> (like we did
  232. inside chroot), the files have the user and group IDs of whatever
  233. they were on the packager's computer. This is usually not a problem
  234. for any other package to be installed because the source tree is
  235. removed after the installation. However, the Linux source tree is
  236. often retained for a long time. Because of this, there is a chance
  237. that whatever user ID the packager used will be assigned to somebody
  238. on the machine. That person would then have write access to the kernel
  239. source.</para>
  240. <note>
  241. <para>In many cases, the configuration of the kernel will need to be
  242. updated for packages that will be installed later in BLFS. Unlike
  243. other packages, it is not necessary to remove the kernel source tree
  244. after the newly built kernel is installed.</para>
  245. <para>If the kernel source tree is going to be retained, run
  246. <command>chown -R 0:0</command> on the <filename
  247. class="directory">linux-&linux-version;</filename> directory to ensure
  248. all files are owned by user <emphasis>root</emphasis>.</para>
  249. </note>
  250. <warning>
  251. <para>Some kernel documentation recommends creating a symlink from
  252. <filename class="symlink">/usr/src/linux</filename> pointing to the kernel
  253. source directory. This is specific to kernels prior to the 2.6 series and
  254. <emphasis>must not</emphasis> be created on an LFS system as it can cause
  255. problems for packages you may wish to build once your base LFS system is
  256. complete.</para>
  257. </warning>
  258. <warning>
  259. <para>The headers in the system's <filename
  260. class="directory">include</filename> directory (<filename
  261. class="directory">/usr/include</filename>) should
  262. <emphasis>always</emphasis> be the ones against which Glibc was compiled,
  263. that is, the sanitised headers installed in <xref
  264. linkend="ch-system-linux-headers"/>. Therefore, they should
  265. <emphasis>never</emphasis> be replaced by either the raw kernel headers
  266. or any other kernel sanitized headers.</para>
  267. </warning>
  268. </sect2>
  269. <sect2 id="conf-modprobe" role="configuration">
  270. <title>Configuring Linux Module Load Order</title>
  271. <indexterm zone="conf-modprobe">
  272. <primary sortas="e-/etc/modprobe.d/usb.conf">/etc/modprobe.d/usb.conf</primary>
  273. </indexterm>
  274. <para>Most of the time Linux modules are loaded automatically, but
  275. sometimes it needs some specific direction. The program that loads
  276. modules, <command>modprobe</command> or <command>insmod</command>, uses
  277. <filename>/etc/modprobe.d/usb.conf</filename> for this purpose. This file
  278. needs to be created so that if the USB drivers (ehci_hcd, ohci_hcd and
  279. uhci_hcd) have been built as modules, they will be loaded in the correct
  280. order; ehci_hcd needs to be loaded prior to ohci_hcd and uhci_hcd in order
  281. to avoid a warning being output at boot time.</para>
  282. <para>Create a new file <filename>/etc/modprobe.d/usb.conf</filename> by running
  283. the following:</para>
  284. <screen><userinput>install -v -m755 -d /etc/modprobe.d
  285. cat &gt; /etc/modprobe.d/usb.conf &lt;&lt; "EOF"
  286. <literal># Begin /etc/modprobe.d/usb.conf
  287. install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
  288. install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
  289. # End /etc/modprobe.d/usb.conf</literal>
  290. EOF</userinput></screen>
  291. </sect2>
  292. <sect2 id="contents-kernel" role="content">
  293. <title>Contents of Linux</title>
  294. <segmentedlist>
  295. <segtitle>Installed files</segtitle>
  296. <segtitle>Installed directories</segtitle>
  297. <seglistitem>
  298. <seg>config-&linux-version;,
  299. <phrase arch="default" revision="sysv">vmlinuz-&linux-version;-lfs-&version;,</phrase>
  300. <phrase arch="default" revision="systemd">vmlinuz-&linux-version;-lfs-&versiond;,</phrase>
  301. <phrase arch="ml_32,ml_x32,ml_all" revision="sysv">vmlinuz-&linux-version;-lfs-&version;-multilib,</phrase>
  302. <phrase arch="ml_32,ml_x32,ml_all" revision="systemd">vmlinuz-&linux-version;-lfs-&versiond;-multilib,</phrase>
  303. and System.map-&linux-version;</seg>
  304. <seg>/lib/modules, /usr/share/doc/linux-&linux-version;</seg>
  305. </seglistitem>
  306. </segmentedlist>
  307. <variablelist>
  308. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  309. <?dbfo list-presentation="list"?>
  310. <?dbhtml list-presentation="table"?>
  311. <varlistentry id="config">
  312. <term><filename>config-&linux-version;</filename></term>
  313. <listitem>
  314. <para>Contains all the configuration selections for the kernel</para>
  315. <indexterm zone="ch-bootable-kernel config">
  316. <primary sortas="e-/boot/config">/boot/config-&linux-version;</primary>
  317. </indexterm>
  318. </listitem>
  319. </varlistentry>
  320. <varlistentry id="lfskernel">
  321. <term revision="sysv"><filename>vmlinuz-&linux-version;-lfs-&version;</filename></term>
  322. <term revision="systemd"><filename>vmlinuz-&linux-version;-lfs-&versiond;</filename></term>
  323. <listitem>
  324. <para>The engine of the Linux system. When turning on the computer,
  325. the kernel is the first part of the operating system that gets loaded.
  326. It detects and initializes all components of the computer's hardware,
  327. then makes these components available as a tree of files to the
  328. software and turns a single CPU into a multitasking machine capable
  329. of running scores of programs seemingly at the same time</para>
  330. <indexterm zone="ch-bootable-kernel lfskernel">
  331. <primary sortas="b-lfskernel">lfskernel-&linux-version;</primary>
  332. </indexterm>
  333. </listitem>
  334. </varlistentry>
  335. <varlistentry id="System.map">
  336. <term><filename>System.map-&linux-version;</filename></term>
  337. <listitem>
  338. <para>A list of addresses and symbols; it maps the entry points and
  339. addresses of all the functions and data structures in the
  340. kernel</para>
  341. <indexterm zone="ch-bootable-kernel System.map">
  342. <primary sortas="e-/boot/System.map">/boot/System.map-&linux-version;</primary>
  343. </indexterm>
  344. </listitem>
  345. </varlistentry>
  346. </variablelist>
  347. </sect2>
  348. </sect1>