source: process-scripts.sh@ fa510ae

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 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
Last change on this file since fa510ae was b2b1e1a, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Move directory to make build easier

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

  • Property mode set to 100644
File size: 830 bytes
RevLine 
[abcee47]1#!/bin/bash
[1c48007]2
[12bc336]3# Boot scripts
[166497f]4for s in bootscripts/lfs/init.d/* \
5 bootscripts/lfs/sysconfig/* \
[f874424]6 bootscripts/lfs/lib/services/* \
[166497f]7 bootscripts/lfs/sbin/* \
[b2b1e1a]8 udev-lfs/*.rules
[1c48007]9do
[12bc336]10 script=$(basename $s)
[1c48007]11
12 # Skip directories
[43c2ecf0]13 [ $script == 'network-devices' ] && continue
[f874424]14 #[ $script == 'services' ] && continue
[1c48007]15
16 # Disambiguate duplicate file names
[6c3ab2e]17 [ $s == 'bootscripts/lfs/sysconfig/rc' ] && script='rc-sysinit';
18 [ $s == 'bootscripts/lfs/sysconfig/modules' ] && script='modules-sysinit';
19 [ $s == 'bootscripts/lfs/sysconfig/udev_retry' ] && script='config-udev-retry';
[1c48007]20
21 sed -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g' -e 's/>/\&gt\;/g' \
22 -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/ /g' \
23 $s > appendices/${script}.script
24done
Note: See TracBrowser for help on using the repository browser.