Changeset aef269a for chapter08


Ignore:
Timestamp:
12/02/2023 08:41:23 PM (10 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.1, 12.1-rc1, 12.2, 12.2-rc1, multilib, trunk, xry111/arm64, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.1, xry111/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/update-glibc
Children:
642f779, 65ef924
Parents:
a851a78 (diff), 823fbde (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/udev.xml

    ra851a78 raef269a  
    5555
    5656 <screen><userinput remap="pre">sed '/systemd-sysctl/s/^/#/' -i rules.d/99-systemd.rules.in</userinput></screen>
     57
     58    <para>Adjust the hardcoded paths to network configuration files for the
     59    standalone udev installation:</para>
     60
     61 <screen><userinput remap="pre">sed '/NETWORK_DIRS/s/systemd/udev/' -i src/basic/path-lookup.h</userinput></screen>
    5762
    5863    <para>Prepare Udev for compilation:</para>
     
    129134    <para>Install the package:</para>
    130135
    131     <screen><userinput remap="install">install -vm755 -d {/usr/lib,/etc}/udev/{hwdb,rules}.d
     136    <screen><userinput remap="install">install -vm755 -d {/usr/lib,/etc}/udev/{hwdb.d,rules.d,network}
    132137install -vm755 -d /usr/{lib,share}/pkgconfig
    133138install -vm755 udevadm                             /usr/bin/
     
    144149install -vm644 hwdb.d/*  ../hwdb.d/{*.hwdb,README} /usr/lib/udev/hwdb.d/
    145150install -vm755 $(find src/udev \
    146                       -type f -not -name '*.*')    /usr/lib/udev</userinput></screen>
     151                      -type f -not -name '*.*')    /usr/lib/udev
     152install -vm644 ../network/99-default.link          /usr/lib/udev/network</userinput></screen>
    147153
    148154    <para>Install some custom rules and support files useful in an LFS
     
    159165    --no-same-owner --strip-components=1                              \
    160166    -C /usr/share/man --wildcards '*/udev*' '*/libudev*'              \
     167                                  '*/systemd.link.5'                  \
    161168                                  '*/systemd-'{hwdb,udevd.service}.8
     169
     170sed 's|systemd/network|udev/network|'                                 \
     171    /usr/share/man/man5/systemd.link.5                                \
     172  > /usr/share/man/man5/udev.link.5
     173
    162174sed 's/systemd\(\\\?-\)/udev\1/' /usr/share/man/man8/systemd-hwdb.8   \
    163175                               > /usr/share/man/man8/udev-hwdb.8
     176
    164177sed 's|lib.*udevd|sbin/udevd|'                                        \
    165178    /usr/share/man/man8/systemd-udevd.service.8                       \
    166179  > /usr/share/man/man8/udevd.8
    167 rm  /usr/share/man/man8/systemd-*.8</userinput></screen>
     180
     181rm /usr/share/man/man*/systemd*</userinput></screen>
    168182
    169183  </sect2>
Note: See TracChangeset for help on using the changeset viewer.