mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 13:07:50 +00:00
abcee477f0
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8552 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
# Boot scripts
|
|
for s in bootscripts/lfs/init.d/* \
|
|
bootscripts/lfs/sysconfig/* \
|
|
bootscripts/lfs/sysconfig/network-devices/* \
|
|
bootscripts/lfs/sysconfig/network-devices/services/*
|
|
do
|
|
script=$(basename $s)
|
|
|
|
# Skip directories
|
|
[ $script == 'network-devices' ] && continue
|
|
[ $script == 'services' ] && continue
|
|
|
|
# Disambiguate duplicate file names
|
|
[ $s == 'bootscripts/lfs/sysconfig/rc' ] && script='rc-sysinit';
|
|
[ $s == 'bootscripts/lfs/sysconfig/modules' ] && script='modules-sysinit';
|
|
|
|
sed -e 's/\&/\&\;/g' -e 's/</\<\;/g' -e 's/>/\>\;/g' \
|
|
-e "s/'/\&apos\;/g" -e 's/"/\"\;/g' -e 's/\t/ /g' \
|
|
$s > appendices/${script}.script
|
|
done
|
|
|
|
# Udev rules
|
|
for s in udev-config/*.rules
|
|
do
|
|
script=$(basename $s)
|
|
|
|
sed -e 's/\&/\&\;/g' -e 's/</\<\;/g' -e 's/>/\>\;/g' \
|
|
-e "s/'/\&apos\;/g" -e 's/"/\"\;/g' -e 's/\t/ /g' \
|
|
$s > appendices/${script}.script
|
|
done
|