source: BOOK/boot/x86/kernel.xml@ 031870f9

clfs-3.0.0-systemd systemd
Last change on this file since 031870f9 was 4e982a0, checked in by Chris Staub <chris@…>, 10 years ago

Updated text on kernel page

  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[3f8be484]1<?xml version="1.0" encoding="ISO-8859-1"?>
[aa18ac0]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[3f8be484]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-boot-kernel" role="wrap">
9 <?dbhtml filename="kernel.html"?>
10
[055aa17]11 <title>Linux-&linux-version;</title>
[3f8be484]12
13 <indexterm zone="ch-boot-kernel">
14 <primary sortas="a-Linux">Linux</primary>
15 <secondary>boot</secondary>
16 </indexterm>
17
[dabbced]18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[93adf44a]19 href="../../bootable/x86/kernel.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
[3f8be484]21
22 <sect2 role="installation">
23 <title>Installation of the kernel</title>
24
25 <warning os="aa">
[6bb43b3]26 <para>Here a temporary cross-compiled kernel will be built. When
[6d4c909]27 configuring it, select the minimal amount of options required to
28 boot the target machine and build the final system. I.e., no support
[3f8be484]29 for sound, printers, etc. will be needed.</para>
30
31 <para>Also, try to avoid the use of modules if possible, and don't
32 use the resulting kernel image for production systems.</para>
33 </warning>
34
[dabbced]35 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]36 href="../../bootable/x86/kernel.xml"
37 xpointer="xpointer(//*[@os='a'])"/>
38
[dabbced]39 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]40 href="../../bootable/x86/kernel.xml"
41 xpointer="xpointer(//*[@os='b'])"/>
42
[dabbced]43 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]44 href="../../bootable/x86/kernel.xml"
45 xpointer="xpointer(//*[@os='c'])"/>
46
[dabbced]47 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]48 href="../../bootable/x86/kernel.xml"
49 xpointer="xpointer(//*[@os='d'])"/>
50
[fe422de]51 <note os="kc"><para>A good starting place for setting up the kernel
52 configuration is to run <command>make defconfig</command>. This will set the base configuration to a good state that takes your current system
53 architecture into account.</para>
54
55 <para>Be sure to enable or disable following features or the system might
56 not work correctly or boot at all:</para>
57
58 <screen role="nodump">Device Drivers ---&gt;
59 Generic Driver Options ---&gt;
60 () path to uevent helper
61 [*] Maintain a devtmpfs filesystem to mount at /dev
62 [ ] Fallback user-helper invocation for firmware loading</screen></note>
63
[3f8be484]64 <para os="ae">Configure the kernel via a menu-driven interface:</para>
65
[07114c98]66<screen><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}- menuconfig</userinput></screen>
[3f8be484]67
[dabbced]68 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]69 href="../../bootable/x86/kernel.xml"
70 xpointer="xpointer(//*[@os='m'])"/>
71
[07114c98]72<screen><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}-</userinput></screen>
[3f8be484]73
74 <para os="af">If the use of kernel modules can't be avoided, an
[91ad4a4]75 <filename>/etc/modprobe.conf</filename> file may be needed.
[3f8be484]76 Information pertaining to modules and kernel configuration is
77 located in the kernel documentation in the <filename
78 class="directory">Documentation</filename> directory of the kernel
79 sources tree. The <filename>modprobe.conf</filename> man page may also
80 be of interest.</para>
81
[dabbced]82 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]83 href="../../bootable/x86/kernel.xml"
84 xpointer="xpointer(//*[@os='s'])"/>
85
[07114c98]86<screen><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}- \
[d2ecc65]87 INSTALL_MOD_PATH=/tools modules_install</userinput></screen>
[3f8be484]88
[e43babc]89 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1d9abb9]90 href="../../bootable/x86/kernel.xml"
[e43babc]91 xpointer="xpointer(//*[@os='s2'])"/>
92
93<screen><userinput>make ARCH=i386 CROSS_COMPILE=${CLFS_TARGET}- \
[a988b8e]94 INSTALL_MOD_PATH=/tools firmware_install</userinput></screen>
[e43babc]95
[1322a63]96 <para os="u">After kernel compilation is complete, additional steps are
97 required to complete the installation. Some files need to be copied to
[d2ecc65]98 the <filename class="directory">/tools/boot</filename> directory.</para>
[3f8be484]99
[d2ecc65]100 <para os="v">Issue the following commands to install the kernel:</para>
[3f8be484]101
[46974b0]102<screen><userinput>mkdir -pv /tools/boot
103cp -v arch/i386/boot/bzImage /tools/boot/vmlinuz-clfs-&linux-version;</userinput></screen>
[3f8be484]104
[dabbced]105 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[83ff67c]106 href="../../bootable/x86/kernel.xml"
107 xpointer="xpointer(//*[@os='w'])"/>
108
[d2ecc65]109<screen os="w1"><userinput>cp -v System.map /tools/boot/System.map-&linux-version;</userinput></screen>
[83ff67c]110
[dabbced]111 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]112 href="../../bootable/x86/kernel.xml"
113 xpointer="xpointer(//*[@os='x'])"/>
114
[d2ecc65]115<screen os="x1"><userinput>cp -v .config /tools/boot/config-&linux-version;</userinput></screen>
[3f8be484]116
117 </sect2>
118
119 <sect2 role="content">
120 <title/>
121
122 <para>Details on this package are located in <xref
123 linkend="contents-kernel" role="."/></para>
124
125 </sect2>
126
127</sect1>
Note: See TracBrowser for help on using the repository browser.