[PATCH 10/18] selftest: renamed variable
From: Ed Bartosh <hidden>
Date: 2016-08-30 09:31:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ed Bartosh <hidden>
Date: 2016-08-30 09:31:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
Renamed variable deploy_dir to deploy_dir_image to avoid confusion with DEPLOYDIR variable. Signed-off-by: Ed Bartosh <redacted> --- meta/lib/oeqa/selftest/imagefeatures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/lib/oeqa/selftest/imagefeatures.py b/meta/lib/oeqa/selftest/imagefeatures.py
index 08e382f..d015c49 100644
--- a/meta/lib/oeqa/selftest/imagefeatures.py
+++ b/meta/lib/oeqa/selftest/imagefeatures.py@@ -113,9 +113,9 @@ class ImageFeatures(oeSelfTest): image_name = 'core-image-minimal' bitbake(image_name) - deploy_dir = get_bb_var('DEPLOY_DIR_IMAGE') + deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') link_name = get_bb_var('IMAGE_LINK_NAME', image_name) - image_path = os.path.join(deploy_dir, "%s.ext4" % link_name) + image_path = os.path.join(deploy_dir_image, "%s.ext4" % link_name) bmap_path = "%s.bmap" % image_path # check if result image and bmap file are in deploy directory
--
2.1.4