1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-06 10:50:37 +00:00

sdcard_image bbclass: make payload errors non-fatal

This commit is contained in:
Koen Kooi
2011-11-04 15:03:55 +01:00
parent 6ce2516808
commit 7ea2cf4849
+2 -1
View File
@@ -109,7 +109,8 @@ IMAGE_CMD_sdimg () {
if [ -n ${FATPAYLOAD} ] ; then
echo "Copying payload into VFAT"
for entry in ${FATPAYLOAD} ; do
cp -av ${IMAGE_ROOTFS}$entry ${WORKDIR}/tmp-mnt-boot
# add the || true to stop aborting on vfat issues like not supporting .~lock files
cp -av ${IMAGE_ROOTFS}$entry ${WORKDIR}/tmp-mnt-boot || true
done
fi