Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] image_types.bbclass: Fix generating uncompressed ext2 images
@ 2012-01-12 17:13 Matthew McClintock
  2012-01-12 17:13 ` [PATCH 2/2] image_types_uboot.bbclass: Add uncompressed ext2 image option Matthew McClintock
  2012-01-17 20:11 ` [PATCH 1/2] image_types.bbclass: Fix generating uncompressed ext2 images Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Matthew McClintock @ 2012-01-12 17:13 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/classes/image_types.bbclass |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 3010549..4908ed9 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -40,7 +40,12 @@ IMAGE_CMD_sum.jffs2 = "${IMAGE_CMD_jffs2} && sumtool -i ${DEPLOY_DIR_IMAGE}/${IM
 
 IMAGE_CMD_cramfs = "mkcramfs ${IMAGE_ROOTFS} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cramfs ${EXTRA_IMAGECMD}"
 
-IMAGE_CMD_ext2 = "genext2fs -b $ROOTFS_SIZE -i 4096 -d ${IMAGE_ROOTFS} ${EXTRA_IMAGECMD} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2"
+IMAGE_CMD_ext2 () {
+	rm -rf ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN} && mkdir ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}
+	genext2fs -b $ROOTFS_SIZE -d ${IMAGE_ROOTFS} ${EXTRA_IMAGECMD} ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}/${IMAGE_NAME}.rootfs.ext2
+	mv ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}/${IMAGE_NAME}.rootfs.ext2 ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2
+	rmdir ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}
+}
 IMAGE_CMD_ext2.gz () {
 	rm -rf ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN} && mkdir ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}
 	genext2fs -b $ROOTFS_SIZE -i 4096 -d ${IMAGE_ROOTFS} ${EXTRA_IMAGECMD} ${DEPLOY_DIR_IMAGE}/tmp.gz-${PN}/${IMAGE_NAME}.rootfs.ext2
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-17 20:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-12 17:13 [PATCH 1/2] image_types.bbclass: Fix generating uncompressed ext2 images Matthew McClintock
2012-01-12 17:13 ` [PATCH 2/2] image_types_uboot.bbclass: Add uncompressed ext2 image option Matthew McClintock
2012-01-17 20:11 ` [PATCH 1/2] image_types.bbclass: Fix generating uncompressed ext2 images Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox