diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-10-12 21:46:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-15 10:01:42 +0100 |
commit | 751cb2c894122807ed62341ae6b5f129a65e399b (patch) | |
tree | 06a336087a9fba0d14c599d89578b85e347b8660 /meta/classes/rootfs-postcommands.bbclass | |
parent | 1a95d4a0701b87ae3674239a01aabe38a0123585 (diff) | |
download | poky-751cb2c894122807ed62341ae6b5f129a65e399b.tar.gz |
Remove RM_OLD_IMAGE, it's no longer useful
Since the move to put image deployment under sstate control in
d54339d4b1a7e884de636f6325ca60409ebd95ff old images are automatically
removed before a new image is deployed (the default behaviour of the
sstate logic).
RM_OLD_IMAGE is therefore no longer required to provide this
behaviour, remove the variable and its users.
(From OE-Core rev: 93631befe8b962bf99524746b49f4ebca336175c)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs-postcommands.bbclass')
-rw-r--r-- | meta/classes/rootfs-postcommands.bbclass | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass index 07e265c5ac..0c7ceea542 100644 --- a/meta/classes/rootfs-postcommands.bbclass +++ b/meta/classes/rootfs-postcommands.bbclass | |||
@@ -232,9 +232,6 @@ python write_image_manifest () { | |||
232 | if os.path.exists(manifest_name): | 232 | if os.path.exists(manifest_name): |
233 | manifest_link = deploy_dir + "/" + link_name + ".manifest" | 233 | manifest_link = deploy_dir + "/" + link_name + ".manifest" |
234 | if os.path.lexists(manifest_link): | 234 | if os.path.lexists(manifest_link): |
235 | if d.getVar('RM_OLD_IMAGE', True) == "1" and \ | ||
236 | os.path.exists(os.path.realpath(manifest_link)): | ||
237 | os.remove(os.path.realpath(manifest_link)) | ||
238 | os.remove(manifest_link) | 235 | os.remove(manifest_link) |
239 | os.symlink(os.path.basename(manifest_name), manifest_link) | 236 | os.symlink(os.path.basename(manifest_name), manifest_link) |
240 | } | 237 | } |