]> code.ossystems Code Review - openembedded-core.git/commitdiff
rootfs-postcommands: Ensure license manifests respect RM_OLD_IMAGE
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 17 Jan 2016 11:15:14 +0000 (11:15 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Jan 2016 16:35:37 +0000 (16:35 +0000)
When RM_OLD_IMAGE is set, old manifest files should be removed
along with old image files and our QA tests expect this.

This patch ensures this happens.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/rootfs-postcommands.bbclass

index 96d3051429c31c114c806c18497cddc648684170..970e9f34b14af95033ee740e36739c342182624d 100644 (file)
@@ -219,6 +219,9 @@ python write_image_manifest () {
     if manifest_name is not None and os.path.exists(manifest_name):
         manifest_link = deploy_dir + "/" + link_name + ".manifest"
         if os.path.exists(manifest_link):
+            if d.getVar('RM_OLD_IMAGE', True) == "1" and \
+                    os.path.exists(os.path.realpath(manifest_link)):
+                os.remove(os.path.realpath(manifest_link))
             os.remove(manifest_link)
         os.symlink(os.path.basename(manifest_name), manifest_link)
 }