mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-21 05:26:55 +00:00
sdcard_image-rpi : minor bug in use of FATPAYLOAD
Double quotation marks were added around FATPAYLOAD to prevent parsing error when FATPAYLOAD contains list of file names Signed-off-by: Nataliya Korovkina <malus.brandywine@gmail.com>
This commit is contained in:
committed by
Andrei Gherzan
parent
920822c0fb
commit
40283f583b
@@ -143,7 +143,7 @@ IMAGE_CMD_rpi-sdimg () {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n ${FATPAYLOAD} ] ; then
|
if [ -n "${FATPAYLOAD}" ] ; then
|
||||||
echo "Copying payload into VFAT"
|
echo "Copying payload into VFAT"
|
||||||
for entry in ${FATPAYLOAD} ; do
|
for entry in ${FATPAYLOAD} ; do
|
||||||
# add the || true to stop aborting on vfat issues like not supporting .~lock files
|
# add the || true to stop aborting on vfat issues like not supporting .~lock files
|
||||||
|
|||||||
Reference in New Issue
Block a user