From 5b594449f73f6cff99695119eb00ee5dcc672aed Mon Sep 17 00:00:00 2001 From: Laurentiu Palcu Date: Fri, 28 Mar 2014 15:07:40 +0200 Subject: image.py: check file exists before deleting When RM_OLD_IMAGE = "1", we delete old images but we didn't check they actually exist... [YOCTO #6029] (From OE-Core rev: 8910d3cc94899ab4d509e681b438ae96218fa777) Signed-off-by: Laurentiu Palcu Signed-off-by: Richard Purdie --- meta/lib/oe/image.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/lib/oe') diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py index a03b73e4c0..c9b9033132 100644 --- a/meta/lib/oe/image.py +++ b/meta/lib/oe/image.py @@ -192,7 +192,8 @@ class Image(ImageDepGraph): if img.find(self.d.getVar('IMAGE_LINK_NAME', True)) == 0: img = os.path.join(deploy_dir, img) if os.path.islink(img): - if self.d.getVar('RM_OLD_IMAGE', True) == "1": + if self.d.getVar('RM_OLD_IMAGE', True) == "1" and \ + os.path.exists(os.path.realpath(img)): os.remove(os.path.realpath(img)) os.remove(img) -- cgit v1.2.3-54-g00ecf