source: clfs-embedded/BOOK/bootable/x86/kernel.xml@ c06227f

Last change on this file since c06227f was bd48e48, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Updated CLFS-Embedded book sources to use DocBook-XML DTD 4.5.

  • Property mode set to 100644
File size: 9.0 KB
RevLine 
[a9e389d]1<?xml version="1.0" encoding="ISO-8859-1"?>
[bd48e48]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[a9e389d]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-bootable-kernel" role="wrap">
9 <?dbhtml filename="kernel.html"?>
10
11 <title>Linux-&linux-version;</title>
12
13 <indexterm zone="ch-bootable-kernel">
14 <primary sortas="a-Linux">Linux</primary>
15 </indexterm>
16
17 <sect2 role="package"><title/>
18 <para>The Linux package contains the Linux kernel.</para>
19
20 </sect2>
21
22 <sect2 role="installation">
23 <title>Installation of the kernel</title>
24
25 <para os="a">Building the kernel involves a few steps&mdash;configuration,
26 compilation, and installation. Read the <filename>README</filename>
27 file in the kernel source tree for alternative methods to the way this
28 book configures the kernel.</para>
29
30 <para os="b">Prepare for compilation by running the following command:</para>
31
32<screen os="c"><userinput>make mrproper</userinput></screen>
33
34 <para os="d">This ensures that the kernel tree is absolutely clean. The
35 kernel team recommends that this command be issued prior to each
36 kernel compilation. Do not rely on the source tree being clean after
37 un-tarring.</para>
38
[f23b5ee]39 <para os="e">Configure the kernel via a menu-driven interface.
[a9e389d]40 Please note that the udev bootscript requires "rtc" and "tmpfs" to be
41 enabled and built into the kernel, not as modules. BLFS has
42 some information regarding particular kernel configuration requirements of
43 packages outside of CLFS at <ulink
44 url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>:</para>
[81d9bce]45
46 <note os="f"><para>Since we are building for an embedded system we need to make sure
[89cc05c]47 our key components are built into the kernel and not as modules. Our key
[81d9bce]48 components are console/video, disk, and network. With out these built in our
[89cc05c]49 system will not function properly. If your concerned about disk space, your kernel
50 should be without modules.</para></note>
[a9e389d]51
[81d9bce]52<screen os="g"><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}- menuconfig</userinput></screen>
[a9e389d]53
[81d9bce]54 <para os="h">Alternatively, <command>make oldconfig</command> may be more
[a9e389d]55 appropriate in some situations. See the <filename>README</filename>
56 file for more information.</para>
57
[81d9bce]58 <para os="i">If desired, skip kernel configuration by copying the kernel
[a9e389d]59 config file, <filename>.config</filename>, from the host system
60 (assuming it is available) to the root directory of the unpacked kernel
61 sources. However, we do not recommend this option. It is often better
62 to explore all the configuration menus and create the kernel configuration
63 from scratch.</para>
64
[81d9bce]65 <para os="j">Compile the kernel image and modules:</para>
[a9e389d]66
[81d9bce]67<screen os="k"><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}-</userinput></screen>
[a9e389d]68
[81d9bce]69 <para os="l">If using kernel modules, an
[a9e389d]70 <filename>/etc/modprobe.conf</filename> file may be needed.
71 Information pertaining to modules and kernel configuration is
72 located in the kernel documentation in the <filename
73 class="directory">Documentation</filename> directory of the kernel
74 sources tree. Also, <filename>modprobe.conf(5)</filename> may
75 be of interest.</para>
76
[81d9bce]77 <para os="m">Be very careful when reading other documentation relating to
[a9e389d]78 kernel modules because it usually applies to 2.4.x kernels only. As
79 far as we know, kernel configuration issues specific to Hotplug and
80 Udev are not documented. The problem is that Udev will create a device
81 node only if Hotplug or a user-written script inserts the corresponding
82 module into the kernel, and not all modules are detectable by Hotplug.
83 Note that statements like the one below in the
84 <filename>/etc/modprobe.conf</filename> file do not work with Udev:</para>
85
[81d9bce]86<screen os="n"><literal>alias char-major-XXX some-module</literal></screen>
[a9e389d]87
[81d9bce]88 <para os="o">Because of the complications with Udev and modules,
[a9e389d]89 we strongly recommend starting with a completely non-modular kernel
90 configuration, especially if this is the first time using Udev.</para>
91
[81d9bce]92 <para os="p">Install the modules, if the kernel configuration uses
[a9e389d]93 them:</para>
94
[81d9bce]95<screen os="q"><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}- \
[a9e389d]96 INSTALL_MOD_PATH=${CLFS} modules_install</userinput></screen>
97
[81d9bce]98 <para os="r">After kernel compilation is complete, additional steps are
[a9e389d]99 required to complete the installation. Some files need to be copied to
100 the <filename class="directory">${CLFS}/boot</filename> directory.</para>
101
[81d9bce]102 <para os="s">Issue the following command to install the kernel:</para>
[a9e389d]103
[81d9bce]104<screen os="t"><userinput>cp vmlinux ${CLFS}/boot/clfskernel-&linux-version;</userinput></screen>
[a9e389d]105
[81d9bce]106 <para os="u"><filename>System.map</filename> is a symbol file for the kernel.
[a9e389d]107 It maps the function entry points of every function in the kernel API,
108 as well as the addresses of the kernel data structures for the running
109 kernel. Issue the following command to install the map file:</para>
110
[81d9bce]111<screen os="v"><userinput>cp System.map ${CLFS}/boot/System.map-&linux-version;</userinput></screen>
[f23b5ee]112
[81d9bce]113 <para os="w">If we compiled our kernel with modules and we made sure depmod.pl
[f23b5ee]114 is avaiable from busybox, we need to create the module dependency list by
115 issuing the following command:</para>
116
[81d9bce]117<screen os="x"><userinput>${CLFS}/cross-tools/bin/depmod.pl -F ${CLFS}/boot/System.map -b ${CLFS}/lib/modules/&linux-version;</userinput></screen>
[a9e389d]118
[81d9bce]119 <para os="y">The kernel configuration file <filename>.config</filename>
[a9e389d]120 produced by the <command>make menuconfig</command> step above contains
121 all the configuration selections for the kernel that was just compiled.
122 It is a good idea to keep this file for future reference:</para>
123
[81d9bce]124<screen os="z"><userinput>cp .config ${CLFS}/boot/config-&linux-version;</userinput></screen>
[a9e389d]125
[81d9bce]126 <warning os="aa">
[a9e389d]127 <para>Some kernel documentation recommends creating a symlink from
128 <filename class="symlink">/usr/src/linux</filename> pointing to the
129 kernel source directory. This is specific to kernels prior to the
130 2.6 series and <emphasis>must not</emphasis> be created on an CLFS
131 system as it can cause problems for packages you may wish to build
132 once your base CLFS system is complete.</para>
133
134 <para>Also, the headers in the system's <filename
135 class="directory">include</filename> directory should
136 <emphasis>always</emphasis> be the ones against which Glibc was
137 compiled (from the Linux-Headers package) and should
138 <emphasis>never</emphasis> be replaced by the kernel headers.</para>
139 </warning>
140
[81d9bce]141 <para os="ab">The bootloaders section contains more information on
142 how to configure the kernel for specifc bootloaders. Please refer
143 to this section for your specific needs.</para>
144
[a9e389d]145 </sect2>
146
147 <sect2 id="contents-kernel" role="content">
148 <title>Contents of Linux</title>
149
150 <segmentedlist>
151 <segtitle>Installed files</segtitle>
152
153 <seglistitem>
154 <seg>config-[linux-version], clfskernel-[linux-version],
155 and System.map-[linux-version]</seg>
156 </seglistitem>
157 </segmentedlist>
158
159 <variablelist>
160 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
161 <?dbfo list-presentation="list"?>
162 <?dbhtml list-presentation="table"?>
163
164 <varlistentry id="config">
165 <term><filename>config-[linux-version]</filename></term>
166 <listitem>
167 <para>Contains all the configuration selections for the kernel</para>
168 <indexterm zone="ch-bootable-kernel config">
169 <primary sortas="e-/boot/config">/boot/config-[linux-version]</primary>
170 </indexterm>
171 </listitem>
172 </varlistentry>
173
174 <varlistentry id="clfskernel">
175 <term><filename>clfskernel-[linux-version]</filename></term>
176 <listitem>
177 <para>The engine of the Linux system. When turning on the
178 computer, the kernel is the first part of the operating system
179 that gets loaded. It detects and initializes all components of
180 the computer's hardware, then makes these components available
181 as a tree of files to the software and turns a single CPU into
182 a multitasking machine capable of running scores of programs
183 seemingly at the same time.</para>
184 <indexterm zone="ch-bootable-kernel clfskernel">
185 <primary sortas="b-clfskernel">clfskernel-[linux-version]</primary>
186 </indexterm>
187 </listitem>
188 </varlistentry>
189
190 <varlistentry id="System.map">
191 <term><filename>System.map-[linux-version]</filename></term>
192 <listitem>
193 <para>A list of addresses and symbols; it maps the entry points
194 and addresses of all the functions and data structures in the
195 kernel</para>
196 <indexterm zone="ch-bootable-kernel System.map">
197 <primary sortas="e-/boot/System.map">/boot/System.map-[linux-version]</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201
202 </variablelist>
203
204 </sect2>
205
206</sect1>
Note: See TracBrowser for help on using the repository browser.