copy annd not symlink the rescue dtb files

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2018-12-04 16:34:53 -06:00
parent 0fd81d639d
commit 79ce4741ca
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ copy_rescue_dtbs() {
if [ $has_rescue = 1 ] && [ ! -d "$dtbdest" ] ; then
mkdir "$dtbdest"
for dtb in $(ls "$dtbsource") ; do
ln "$dtbsource/$dtb" "$dtbdest/$dtb"
cp "$dtbsource/$dtb" "$dtbdest/$dtb"
done
fi
}