diff options
| author | malus-brandywine <51343135+malus-brandywine@users.noreply.github.com> | 2019-06-04 18:07:09 -0400 |
|---|---|---|
| committer | Andrei Gherzan <andrei@gherzan.ro> | 2019-07-20 21:56:21 +0100 |
| commit | 510f7c8672d6502d9be9eae2551c6f9373e1e355 (patch) | |
| tree | a8288e49fa36f1640e6f4b36520e90d34940f3c4 | |
| parent | e18023cd9d3dea79b2f272fa6c9f47a28be021e2 (diff) | |
| download | meta-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.bbclass | 2 |
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 |
