source: chapter08/kernel-inst.xml@ 3c09bf8

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 3c09bf8 was 3c09bf8, checked in by Timothy Bauscher <timothy@…>, 21 years ago

Converted kernel page to new format.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2323 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2>
4<title>Installation of the kernel</title>
5
6<para>Building the kernel involves a few steps: configuring it and compiling
7it. There are a few ways to configure the kernel. If you don't like the
8way this book does it, read the <filename>README</filename> that comes
9with the kernel source tree, and find out what the other options are.</para>
10
11<para>Something you could do, is take the <filename>.config</filename>
12file from your host distribution's kernel source tree and copy it to
13<filename class="directory">$LFS/usr/src/linux-&kernel-version;</filename>.
14This way you don't have to configure the entire kernel from scratch and
15can use your current values. If you choose to do this, first run the
16<userinput>make mrproper</userinput> command below, then copy the
17<filename>.config</filename> file over, then run
18<userinput>make menuconfig</userinput> followed by the rest of the commands
19(<userinput>make oldconfig</userinput> may be better in some situations.
20See the <filename>README</filename> file for more details when to use
21<userinput>make oldconfig</userinput>).</para>
22
23<para>If you intend to use kernel modules, you will need an
24<filename>/etc/modules.conf</filename> file. Information pertaining
25to modules and to kernel configuration in general may be found in the
26kernel documentation, which is stored stored in
27<filename>/usr/src/linux-&kernel-version;/Documentation</filename>. The
28modules.conf man page and the kernel HOWTO at
29<ulink url="&tldp-root;HOWTO/Kernel-HOWTO.html"/> may also be of
30interest to you.</para>
31
32<para>Prepare for compilation by running the following command:</para>
33
34<para><screen><userinput>make mrproper</userinput></screen></para>
35
36<para>This ensures that the kernel tree is absolutely clean. The kernel
37team recommends that this command be issued prior to
38<emphasis>each</emphasis> kernel compilation. You shouldn't rely
39on the source tree being clean after untarring.</para>
40
41<para><screen><userinput>make menuconfig &amp;&amp;
42make dep &amp;&amp;
43make bzImage &amp;&amp;
44make modules &amp;&amp;
45make modules_install</userinput></screen></para>
46
47<para>Kernel compilation has finished, but the files created are still
48in the source tree. The path to the kernel file,
49<filename>arch/i386/boot/bzImage</filename> below, may vary depending
50on the platform you're using.</para>
51
52<para><screen><userinput>cp arch/i386/boot/bzImage /boot/lfskernel &amp;&amp;
53cp System.map /boot</userinput></screen></para>
54
55</sect2>
Note: See TracBrowser for help on using the repository browser.