Changing how syslinux files are copied to make netboot images work properly.

This commit is contained in:
chals 2013-05-05 12:01:57 +02:00 committed by Daniel Baumann
parent 9a15cd0114
commit 36a44c849a
1 changed files with 3 additions and 3 deletions

View File

@ -145,13 +145,13 @@ Install_package
# Copying files
case "${LB_BUILD_WITH_CHROOT}" in
true)
mkdir -p $(dirname ${_TARGET})
mkdir -p ${_TARGET}
# Copy in two steps since the theme can have absolute symlinks and would therefore not be dereferenced correctly
cp -a ${_SOURCE} chroot/root
Chroot chroot cp -aL /root/$(basename ${_SOURCE}) /root/$(basename ${_SOURCE}).tmp || true
rm -rf chroot/root/$(basename ${_SOURCE})
mv chroot/root/$(basename ${_SOURCE}).tmp ${_TARGET}
cp -a chroot/root/$(basename ${_SOURCE}).tmp/* ${_TARGET}
rm -rf chroot/root/$(basename ${_SOURCE}) chroot/root/$(basename ${_SOURCE}).tmp
;;
false)