diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-02-06 18:38:31 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-06 18:38:31 +0000 |
commit | 4476d4b3760464127d42bf6288405d0f4d5bb1a8 (patch) | |
tree | 474f078d15c5540cbb20e4a07e342eafd7aac1ca /classes | |
parent | 34c0522e2cf2e45c4a6e49fcfb63154b81dbc673 (diff) |
add class for nylon-image and update nylon distro configuration
patches courtesy Martin Dietze <dietze@4g-systems.com>
Martin: I'm not sure whether you really need a dedicated class for nylon image,
you may want to think about that. the patch against the mtx-1 machine configuration
didn't apply, please handle this on your own after you got commit access.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/nylon-image.bbclass | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/classes/nylon-image.bbclass b/classes/nylon-image.bbclass new file mode 100644 index 0000000000..8517c033e9 --- /dev/null +++ b/classes/nylon-image.bbclass @@ -0,0 +1,16 @@ +# we dont need the kernel in the image +ROOTFS_POSTPROCESS_COMMAND = "rm -f ${IMAGE_ROOTFS}/tmp/zImage*" + +# create a tar.gz (.imgz) file containing the filesystem and the kernel +nylon_create_imgz() { + rm -rf ${DEPLOY_DIR_IMAGE}/tmp + rm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.imgz + install -d ${DEPLOY_DIR_IMAGE}/tmp + + cp ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_NAME}.flash.bin ${DEPLOY_DIR_IMAGE}/tmp/zImage.flash + cp ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.${type} ${DEPLOY_DIR_IMAGE}/tmp/rootfs.${type} + ( cd ${DEPLOY_DIR_IMAGE}/tmp; tar cvzf ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.imgz * ) + rm -r ${DEPLOY_DIR_IMAGE}/tmp +} + +IMAGE_POSTPROCESS_COMMAND += "nylon_create_imgz;" |