summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormalus-brandywine <51343135+malus-brandywine@users.noreply.github.com>2019-06-04 18:07:09 -0400
committerAndrei Gherzan <andrei@gherzan.ro>2019-07-20 21:56:21 +0100
commit510f7c8672d6502d9be9eae2551c6f9373e1e355 (patch)
treea8288e49fa36f1640e6f4b36520e90d34940f3c4
parente18023cd9d3dea79b2f272fa6c9f47a28be021e2 (diff)
downloadmeta-raspberrypi-510f7c8672d6502d9be9eae2551c6f9373e1e355.tar.gz
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>
-rw-r--r--classes/sdcard_image-rpi.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sdcard_image-rpi.bbclass b/classes/sdcard_image-rpi.bbclass
index 538803d..6cbee8b 100644
--- a/classes/sdcard_image-rpi.bbclass
+++ b/classes/sdcard_image-rpi.bbclass
@@ -143,7 +143,7 @@ IMAGE_CMD_rpi-sdimg () {
143 fi 143 fi
144 fi 144 fi
145 145
146 if [ -n ${FATPAYLOAD} ] ; then 146 if [ -n "${FATPAYLOAD}" ] ; then
147 echo "Copying payload into VFAT" 147 echo "Copying payload into VFAT"
148 for entry in ${FATPAYLOAD} ; do 148 for entry in ${FATPAYLOAD} ; do
149 # add the || true to stop aborting on vfat issues like not supporting .~lock files 149 # add the || true to stop aborting on vfat issues like not supporting .~lock files