Ignore:
Timestamp:
10/06/2004 10:58:24 PM (20 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
6.0
Children:
c059c37
Parents:
f67ec77a
Message:

Last edit round.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/kernel.xml

    rf67ec77a r2256873  
    5757
    5858<para>For example, if using a Dutch keyboard, use
    59 <filename>/usr/share/kbd/keymaps/i386/qwerty/nl.map.gz</filename>.</para>
     59<phrase
     60condition="html"><filename>/usr/share/kbd/keymaps/i386/qwerty/nl.map.gz</filename></phrase><phrase
     61condition="pdf"><filename>/usr/share/kbd/keymaps/i386/
     62qwerty/nl.map.gz</filename></phrase>.</para>
    6063
    6164<para>Configure the kernel via a menu-driven interface:</para>
     
    6366<screen><userinput>make menuconfig</userinput></screen>
    6467
    65 <para><command>make oldconfig</command> may be more appropriate in some
     68<para>Alternatively, <command>make oldconfig</command> may be more appropriate in some
    6669situations. See the <filename>README</filename> file for more
    6770information.</para>
     
    116119a user-written script inserts the corresponding module into the
    117120kernel, and not all modules are detectable by Hotplug. Note that
    118 statements like <screen>alias char-major-XXX some-module</screen> in
    119 the <filename>/etc/modprobe.conf</filename> file do not work with
    120 Udev.</para>
     121statements like the one below in the
     122<filename>/etc/modprobe.conf</filename> file do not work with
     123Udev:</para>
     124
     125<para><screen>alias char-major-XXX some-module</screen></para>
    121126
    122127<para>Because of the complications with Hotplug, Udev, and modules, we
     
    150155<screen><userinput>cp System.map /boot/System.map-&linux-version;</userinput></screen>
    151156
    152 <para><filename>.config</filename> is the kernel's configuration file
    153 that was produced by the <command>make menuconfig</command> step
    154 above. It contains all the configuration selections for the kernel
     157<para>The kernel configuration file <filename>.config</filename>
     158produced by the <command>make menuconfig</command> step
     159above contains all the configuration selections for the kernel
    155160that was just compiled. It is a good idea to keep this file for future
    156161reference:</para>
     
    185190</segmentedlist>
    186191
    187 <variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
     192<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
    188193<?dbfo list-presentation="list"?>
    189194
    190195<varlistentry id="kernel">
    191 <term><command>kernel</command></term>
     196<term><filename>kernel</filename></term>
    192197<listitem>
    193 <para>the engine of the Linux system. When turning on the computer,
     198<para>The engine of the Linux system. When turning on the computer,
    194199the kernel is the first part of the operating system that gets loaded.
    195200It detects and initializes all components of the computer's hardware,
     
    202207
    203208<varlistentry id="kernel-headers">
    204 <term><command>kernel headers</command></term>
     209<term><filename>kernel headers</filename></term>
    205210<listitem>
    206 <para>defines the interface to the services that the kernel provides.
     211<para>Defines the interface to the services that the kernel provides.
    207212The headers in the system's <filename
    208213class="directory">include</filename> directory should
     
    217222<term><filename>System.map</filename></term>
    218223<listitem>
    219 <para>a list of addresses and symbols. It maps the entry points and
     224<para>A list of addresses and symbols; it maps the entry points and
    220225addresses of all the functions and data structures in the
    221 kernel.</para>
     226kernel</para>
    222227<indexterm zone="ch-bootable-kernel System.map"><primary sortas="e-/boot/System.map">/boot/System.map</primary></indexterm>
    223228</listitem>
Note: See TracChangeset for help on using the changeset viewer.