Changeset a56c4bb


Ignore:
Timestamp:
05/29/2004 03:11:32 PM (20 years ago)
Author:
Alexander E. Patrakov <alexander@…>
Branches:
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, 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
Children:
7e8ac1b
Parents:
1cd9252
Message:

Several kernel-related textual changes

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r1cd9252 ra56c4bb  
    103103</listitem>
    104104
     105<listitem><para>May 29, 2004 [alexander]: Mentioned the hotplug+udev+modules
     106problem. Removed the effectively dead link to the Kernel
     107HOWTO.</para></listitem>
     108
     109<listitem><para>May 29, 2004 [alexander]: Corrected usbfs line in
     110/etc/fstab.</para></listitem>
     111
     112<listitem><para>May 29, 2004 [alexander]: New LFS bootscripts already come
     113with the /etc/sysconfig/console file. Corrected the text.</para></listitem>
     114
    105115<listitem><para>May 25, 2004 [jeremy]: Chapter 6 - Upgraded psmisc to
    10611621.5.</para></listitem>
  • chapter07/console.xml

    r1cd9252 ra56c4bb  
    2323as a configuration file. You need to decide which keymap and screen font you
    2424will use. The language-specific HOWTO can help you.
    25 In the future releases of LFS-Bootscripts, there will be a pre-made
     25A pre-made
    2626<filename>/etc/sysconfig/console</filename> file with known
    27 good settings for several countries, and you will just have to uncomment
    28 the relevant section.
     27good settings for several countries was installed with the LFS-Bootscripts
     28package, and you just have to uncomment
     29the relevant section if your country is supported (but read the rest
     30of this section anyway).
    2931If still in doubt,
    3032look into <filename class="directory">/usr/share/kbd</filename>
  • chapter08/fstab.xml

    r1cd9252 ra56c4bb  
    2626devpts        /dev/pts     devpts   gid=4,mode=620  0     0
    2727shm           /dev/shm     tmpfs    defaults        0     0
    28 usbfs         /proc/bus/usb usbfs   devgid=14,devmode=0660 0 0
    2928# End /etc/fstab
    3029<userinput>EOF</userinput></screen>
     
    3433for example <filename>hda2</filename>, <filename>hda5</filename> and
    3534<filename>reiserfs</filename>. For all the details on the six fields in this
    36 table, see <command>man 5 fstab</command>. Omit the usbfs line if you didn't
    37 compile "USB device filesystem" into the kernel.</para>
     35table, see <command>man 5 fstab</command>.</para>
    3836
    3937<para>When using a reiserfs partition, the <emphasis>1 1</emphasis> at the
     
    5452use USB devices:</para>
    5553
    56 <screen>usbfs       /proc/bus/usb  usbfs    defaults    0     0</screen>
     54<screen> usbfs         /proc/bus/usb usbfs   devgid=14,devmode=0660 0 0 </screen>
    5755
    58 <para>This option will of course only work if you have the relevant support
    59 compiled into your kernel.</para>
     56<para>This option will of course only work if you have the
     57"Support for Host-side USB" and "USB device filesystem"
     58compiled into your kernel (not as a module).</para>
    6059
    6160</sect1>
  • chapter08/kernel.xml

    r1cd9252 ra56c4bb  
    6565
    6666<para>LFS bootscripts make the assumption that you either compile
    67 "USB device filesystem" directly into the kernel, or don't compile it at
    68 all. They will not work properly if it is a module (usbcore.ko).</para>
     67both "Support for Host-side USB" and
     68"USB device filesystem" directly into the kernel, or don't compile them at
     69all. Bootscripts will not work properly if it is a module (usbcore.ko).</para>
    6970
    7071<note><para>NPTL requires the kernel to be compiled with GCC 3.x, in this case
     
    7778<screen><userinput>make</userinput></screen>
    7879
    79 <para>If you intend to use kernel modules, you will need an
     80<para>If you intend to use kernel modules, you may need an
    8081<filename>/etc/modprobe.conf</filename> file. Information pertaining
    8182to modules and to kernel configuration in general may be found in the
    8283kernel documentation, which is found in the
    83 <filename>linux-&linux-version;/Documentation</filename> directory. The
    84 modules.conf man page and the kernel HOWTO at
    85 <ulink url="http://www.tldp.org/HOWTO/Kernel-HOWTO.html"/> may also be of
     84<filename>linux-&linux-version;/Documentation</filename> directory.
     85The
     86modprobe.conf man page
     87<!-- removed for review from tldp.org
     88and the kernel HOWTO at
     89<ulink url="http://www.tldp.org/HOWTO/Kernel-HOWTO.html"/> -->
     90may also be of
    8691interest to you.</para>
    8792
    88 <para>Install the modules:</para>
     93<para>Be very suspicious while reading other documentation, because it
     94usually applies to 2.4.x kernels only. As far as the editors know, kernel
     95configuration issues specific to Hotplug and Udev
     96are documented nowhere. The problem is that Udev will create a device node
     97only if Hotplug or a user-written script inserts the corresponding module
     98into the kernel, and not all modules are detectable by Hotplug. Note
     99that statements like
     100<screen>alias char-major-XXX some-module</screen>
     101in <filename>/etc/modprobe.conf</filename> file don't work with
     102Udev, and other aliases are often unnecessary with Hotplug.</para>
     103
     104<para>Because of all those compilcations with Hotplug, Udev and modules, we
     105strongly recommend you to start with a completely non-modular kernel
     106configuration, especially if this is the first time you use Udev.</para>
     107
     108<para>Install the modules, if your kernel configuration uses them:</para>
    89109
    90110<screen><userinput>make modules_install</userinput></screen>
  • general.ent

    r1cd9252 ra56c4bb  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "CVS-20040525">
    3 <!ENTITY releasedate "May 25, 2004">
     2<!ENTITY version "CVS-20040529">
     3<!ENTITY releasedate "May 29, 2004">
    44<!ENTITY milestone "6.0">
    55
Note: See TracChangeset for help on using the changeset viewer.