I spend some time to find why .ubifs generate, but .ubi image do not. In IMAGE_CMD_ubi it's like "mkfs.ubifs ... && ubinize", and while && is there, "set -e" do not work.
-- EvoLogics GmbH Ackerstraße 76, 13355 Berlin Tel.: + 49- (0) 30- 46 06 82 26 Fax: + 49- (0) 30- 46 06 82 15 Geschäftsführer: Dr. Rudolf Bannasch, Dr. Kostyantyn Kebkal Amtsgericht Berlin, Charlottenburg (unter der) Nummer HR B 77787 Steuer- Nr.: 37/296/20446
From e75f2ce250198e12f855f3492168b661b2e672b9 Mon Sep 17 00:00:00 2001 From: Maksym Komar <[email protected]> Date: Fri, 25 Apr 2014 12:59:52 +0200 Subject: [PATCH] fix not show error if mkfs.ubifs fail --- meta/classes/image_types.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index f38e3b6..a7d18c7 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -93,7 +93,8 @@ IMAGE_CMD_ubi () { echo vol_type=dynamic >> ubinize.cfg echo vol_name=${UBI_VOLNAME} >> ubinize.cfg echo vol_flags=autoresize >> ubinize.cfg - mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubifs ${MKUBIFS_ARGS} && ubinize -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubi ${UBINIZE_ARGS} ubinize.cfg + mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubifs ${MKUBIFS_ARGS} + ubinize -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubi ${UBINIZE_ARGS} ubinize.cfg } IMAGE_CMD_ubifs = "mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubifs ${MKUBIFS_ARGS}" -- 1.9.1
signature.asc
Description: Digital signature
-- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
