diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-19 18:33:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-20 22:40:16 +0100 |
commit | 72a92f6e42861cbdbf91cf27e2fcdd589fcda2bf (patch) | |
tree | b23d75733a78f44122add229332f520bd03942f2 /meta | |
parent | 509227b3610f33203ab4cd129652c0c0eca8d48c (diff) | |
download | poky-72a92f6e42861cbdbf91cf27e2fcdd589fcda2bf.tar.gz |
image_types: Fix a shell syntax error in do_image_ubi
| DEBUG: Executing shell function do_image_ubi
| /home/pokybuild/yocto-worker/nightly-oe-selftest/build/build-st-31289/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/run.do_image_ubi.7928: 123: [: missing ]
(From OE-Core rev: e1c6442872c9361b6b61a83adcce9cade2f2ecd2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image_types.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 00a00d318f..05e5b0a2e0 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
@@ -154,7 +154,7 @@ multiubi_mkfs() { | |||
154 | local ubinize_args="$2" | 154 | local ubinize_args="$2" |
155 | 155 | ||
156 | # Added prompt error message for ubi and ubifs image creation. | 156 | # Added prompt error message for ubi and ubifs image creation. |
157 | if [ -z "$mkubifs_args"] || [ -z "$ubinize_args" ]; then | 157 | if [ -z "$mkubifs_args" ] || [ -z "$ubinize_args" ]; then |
158 | bbfatal "MKUBIFS_ARGS and UBINIZE_ARGS have to be set, see http://www.linux-mtd.infradead.org/faq/ubifs.html for details" | 158 | bbfatal "MKUBIFS_ARGS and UBINIZE_ARGS have to be set, see http://www.linux-mtd.infradead.org/faq/ubifs.html for details" |
159 | fi | 159 | fi |
160 | 160 | ||