Browse Source

Benjamin Schieder:


			
			
				rocklinux
			
			
		
Benjamin Schieder 19 years ago
parent
commit
86fc4c9409
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      package/base/rockinitrd/mkinitrd.sh

+ 4
- 1
package/base/rockinitrd/mkinitrd.sh

@ -115,7 +115,10 @@ for x in ${rootdir}/etc/conf/initrd/initrd_* ; do
[ -f ${x} ] || continue [ -f ${x} ] || continue
while read file target ; do while read file target ; do
file="${rootdir}/${file}" file="${rootdir}/${file}"
[ -e ${file} ] || continue
if [ ! -e ${file} ] ; then
echo "${file} is requested by ${x} but doesn't exist!" >&2
continue
fi
while read f ; do while read f ; do
tfile=${targetdir}/${target}${f#${file}} tfile=${targetdir}/${target}${f#${file}}

Loading…
Cancel
Save