Ignore:
Timestamp:
03/23/2014 04:02:52 AM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 7.6, 7.7, 7.8, 7.9, 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:
9c6887d
Parents:
2d3b3df
Message:

Update to eudev-1.5.3 and add /etc/udev/rules.d/55-lfs.rules
Update to man-pages-3.63.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/eudev.xml

    r2d3b3df r111bb20  
    8787<screen><userinput remap="install">make install</userinput></screen>
    8888
    89 <para>Finally, install the man pages:</para>
     89<para>Now, install the man pages:</para>
    9090
    9191<screen><userinput remap="install">tar -xvf ../eudev-1.5.1-manpages.tar.bz2 -C /usr/share</userinput></screen>
     92
     93    <para>Finally, create some custom rules that are not covered as a part of the
     94    defaults:</para>
     95
     96<screen><userinput remap="install">cat &gt; /etc/udev/rules.d/55-lfs.rules &lt;&lt; "EOF"
     97# /etc/udev/rules.d/55-lfs.rules: Rule definitions for LFS.
     98
     99# Core kernel devices
     100
     101# This causes the system clock to be set as soon as /dev/rtc becomes available.
     102SUBSYSTEM=="rtc", ACTION=="add", MODE="0644", RUN+="/etc/rc.d/init.d/setclock start"
     103KERNEL=="rtc", ACTION=="add", MODE="0644", RUN+="/etc/rc.d/init.d/setclock start"
     104
     105# Comms devices
     106
     107KERNEL=="ippp[0-9]*",       GROUP="dialout"
     108KERNEL=="isdn[0-9]*",       GROUP="dialout"
     109KERNEL=="isdnctrl[0-9]*",   GROUP="dialout"
     110KERNEL=="dcbri[0-9]*",      GROUP="dialout"
     111EOF</userinput></screen>
    92112
    93113  </sect2>
Note: See TracChangeset for help on using the changeset viewer.