diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-05-07 06:09:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-21 00:12:21 +0100 |
commit | b3e2e405c53d63bc71872d41f455507be833e7eb (patch) | |
tree | b0e0dfda592c36a98a141433d03b4511a13f0469 /meta/classes | |
parent | ae28ee3f7a060b9e0d13154a84f2444a98490b5b (diff) | |
download | openembedded-core-b3e2e405c53d63bc71872d41f455507be833e7eb.tar.gz openembedded-core-b3e2e405c53d63bc71872d41f455507be833e7eb.tar.bz2 openembedded-core-b3e2e405c53d63bc71872d41f455507be833e7eb.zip |
image_types.bbclass: remove the old images
Remove the old image before the new one generated to save disk
space when RM_OLD_IMAGE is set to 1, this is an easy way to keep
the DEPLOY_DIR_IMAGE clean.
[YOCTO #4391]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image_types.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 94837ae0a8..38647cfbc7 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -51,7 +51,11 @@ def get_imagecmds(d): types.remove("live") if d.getVar('IMAGE_LINK_NAME', True): - cmds += "\trm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.*" + if d.getVar('RM_OLD_IMAGE', True) == "1": + # Remove the old image + cmds += "\trm -f `find ${DEPLOY_DIR_IMAGE} -maxdepth 1 -type l -name ${IMAGE_LINK_NAME}'.*' -exec readlink -f {} \;`" + # Remove the symlink + cmds += "\n\trm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.*" for type in types: ccmd = [] |