From: Andrei Gherzan Date: Fri, 18 May 2012 21:09:40 +0000 (+0300) Subject: image_types_fsl.bbclass: Fix the calculation of BOOT_BLOCKS X-Git-Tag: 2.1~1830^2~1 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=dfd5e77b477083b8627e9d7e0eaabf966fcc72fe;p=meta-freescale.git image_types_fsl.bbclass: Fix the calculation of BOOT_BLOCKS In awk the first cell/item is $1 not $0 in this way the size of the partition from parted is actually $4 not $3. Signed-off-by: Andrei Gherzan --- diff --git a/meta-fsl-arm/classes/image_types_fsl.bbclass b/meta-fsl-arm/classes/image_types_fsl.bbclass index 8471da2d..daea8ce1 100644 --- a/meta-fsl-arm/classes/image_types_fsl.bbclass +++ b/meta-fsl-arm/classes/image_types_fsl.bbclass @@ -77,7 +77,7 @@ generate_imx_sdcard () { esac BOOT_BLOCKS=$(LC_ALL=C parted -s ${SDCARD} unit b print \ - | awk '/ 2 / { print substr($3, 1, length($3 -1)) / 512 }') + | awk '/ 2 / { print substr($4, 1, length($4 -1)) / 512 }') mkfs.vfat -n "${BOOTDD_VOLUME_ID}" -S 512 -C ${WORKDIR}/boot.img $BOOT_BLOCKS mcopy -i ${WORKDIR}/boot.img -s ${DEPLOY_DIR_IMAGE}/uImage-${MACHINE}.bin ::/uImage @@ -122,7 +122,7 @@ generate_mxs_sdcard () { esac BOOT_BLOCKS=$(LC_ALL=C parted -s ${SDCARD} unit b print \ - | awk '/ 2 / { print substr($3, 1, length($3 -1)) / 512 }') + | awk '/ 2 / { print substr($4, 1, length($4 -1)) / 512 }') mkfs.vfat -n "${BOOTDD_VOLUME_ID}" -S 512 -C ${WORKDIR}/boot.img $BOOT_BLOCKS mcopy -i ${WORKDIR}/boot.img -s ${DEPLOY_DIR_IMAGE}/uImage-${MACHINE}.bin ::/uImage