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-06-13 16:43:20 +0100
commit40283f583b57d67798135ed4a94cb8b5288ea965 (patch)
tree7bd23d996268c300e5911f7e1b911d5f696c9dae
parent920822c0fbfab31eb8959278f5e7f13b1460d19e (diff)
downloadmeta-raspberrypi-40283f583b57d67798135ed4a94cb8b5288ea965.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