Changeset 166497f


Ignore:
Timestamp:
08/31/2012 06:32:57 PM (12 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.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:
0e50d11, b2b1e1a
Parents:
99cee8b
Message:

Clean up build rules
Delete obsolete sysconfig/rc file

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • appendices/scripts.xml

    r99cee8b r166497f  
    2727  <!ENTITY modules_sys        SYSTEM "modules-sysinit.script">
    2828  <!ENTITY cfg_udev_retry     SYSTEM "config-udev-retry.script">
    29   <!ENTITY rc_sys             SYSTEM "rc-sysinit.script">
    3029  <!ENTITY ifup               SYSTEM "ifup.script">
    3130  <!ENTITY ifdown             SYSTEM "ifdown.script">
     
    159158  </sect1>
    160159
    161   <sect1 id="rcsys" role="wrap">
    162     <title>/etc/sysconfig/rc</title>
    163     <screen>&rc_sys;</screen>
    164   </sect1>
    165 
    166160  <sect1 id="modulessys" role="wrap">
    167161    <title>/etc/sysconfig/modules</title>
  • process-scripts.sh

    r99cee8b r166497f  
    22
    33# Boot scripts
    4 for s in bootscripts/lfs/init.d/*                    \
    5          bootscripts/lfs/sysconfig/*                 \
     4for s in bootscripts/lfs/init.d/*       \
     5         bootscripts/lfs/sysconfig/*    \
    66         bootscripts/lfs/lib/services/* \
    7          bootscripts/lfs/sbin/*
     7         bootscripts/lfs/sbin/*         \
     8         ../udev-lfs/*.rules
    89do
    910  script=$(basename $s)
     
    2223       $s > appendices/${script}.script
    2324done
    24 
    25 # Udev rules
    26 for s in udev-config/*.rules
    27 do
    28   script=$(basename $s)
    29 
    30   sed  -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g'   -e 's/>/\&gt\;/g' \
    31        -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/    /g'  \
    32        $s > appendices/${script}.script
    33 done
Note: See TracChangeset for help on using the changeset viewer.