source: process-scripts.sh@ d53fefa

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 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 d53fefa 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
Line 
1#!/bin/bash
2
3# Boot scripts
4for s in bootscripts/lfs/init.d/* \
5 bootscripts/lfs/sysconfig/* \
6 bootscripts/lfs/lib/services/* \
7 bootscripts/lfs/sbin/* \
8 udev-lfs/*.rules
9do
10 script=$(basename $s)
11
12 # Skip directories
13 [ $script == 'network-devices' ] && continue
14 #[ $script == 'services' ] && continue
15
16 # Disambiguate duplicate file names
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';
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.