aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Dimich <chris.dimich@boundarydevices.com>2023-09-08 18:28:50 +0200
committerArmin Kuster <akuster808@gmail.com>2023-09-15 07:21:29 -0400
commit6439ce2fe50261e19e2f934a6c9dc0d74f267fa8 (patch)
tree39589eececb413aad57d07795fb988749042bb7e
parentaf8bbeb0b83ee86d96e47f1d6da55d74df44150b (diff)
downloadmeta-openembedded-contrib-6439ce2fe50261e19e2f934a6c9dc0d74f267fa8.tar.gz
image_types_sparse: Fix syntax error
When using the image type: IMAGE_FSTYPES += " wic.sparse" IMAGE_CLASSES += " image_types_sparse" The following error arises: Syntax error: Bad function name So need to remove function in favor of variable. Signed-off-by: Chris Dimich <chris.dimich@boundarydevices.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Bastian Krause <bst@pengutronix.de> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/classes/image_types_sparse.bbclass12
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-oe/classes/image_types_sparse.bbclass b/meta-oe/classes/image_types_sparse.bbclass
index 69e24cbb79..68c5dbaa14 100644
--- a/meta-oe/classes/image_types_sparse.bbclass
+++ b/meta-oe/classes/image_types_sparse.bbclass
@@ -8,9 +8,11 @@ inherit image_types
SPARSE_BLOCK_SIZE ??= "4096"
CONVERSIONTYPES += "sparse"
-CONVERSION_CMD:sparse() {
- INPUT="${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}"
- truncate --no-create --size=%${SPARSE_BLOCK_SIZE} "$INPUT"
- img2simg -s "$INPUT" "$INPUT.sparse" ${SPARSE_BLOCK_SIZE}
-}
+
+CONVERSION_CMD:sparse = " \
+ INPUT="${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}"; \
+ truncate --no-create --size=%${SPARSE_BLOCK_SIZE} "$INPUT"; \
+ img2simg -s "$INPUT" "$INPUT.sparse" ${SPARSE_BLOCK_SIZE}; \
+ "
+
CONVERSION_DEPENDS_sparse = "android-tools-native"