summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/deploy.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2015-05-11 16:17:03 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-16 22:31:50 +0100
commitc977cdf3d85da74ff4f5c9b10bf3caad7cb25204 (patch)
tree59c8b4601ad204ae30058d8d42006fc61fac1983 /scripts/lib/devtool/deploy.py
parent87fba31ad7a90a10cbe28db15fa8b5a4dec66a14 (diff)
downloadpoky-c977cdf3d85da74ff4f5c9b10bf3caad7cb25204.tar.gz
devtool: rename unused variables
(From OE-Core rev: 92b84d54292518a387460ee1ec5a994023eb26fc) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/deploy.py')
-rw-r--r--scripts/lib/devtool/deploy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/deploy.py b/scripts/lib/devtool/deploy.py
index e46ee0530a..4f968c6f21 100644
--- a/scripts/lib/devtool/deploy.py
+++ b/scripts/lib/devtool/deploy.py
@@ -42,7 +42,7 @@ def deploy(args, config, basepath, workspace):
42 deploy_dir = os.path.join(basepath, 'target_deploy', args.target) 42 deploy_dir = os.path.join(basepath, 'target_deploy', args.target)
43 deploy_file = os.path.join(deploy_dir, args.recipename + '.list') 43 deploy_file = os.path.join(deploy_dir, args.recipename + '.list')
44 44
45 stdout, stderr = exec_build_env_command(config.init_path, basepath, 'bitbake -e %s' % args.recipename, shell=True) 45 stdout, _ = exec_build_env_command(config.init_path, basepath, 'bitbake -e %s' % args.recipename, shell=True)
46 recipe_outdir = re.search(r'^D="(.*)"', stdout, re.MULTILINE).group(1) 46 recipe_outdir = re.search(r'^D="(.*)"', stdout, re.MULTILINE).group(1)
47 if not os.path.exists(recipe_outdir) or not os.listdir(recipe_outdir): 47 if not os.path.exists(recipe_outdir) or not os.listdir(recipe_outdir):
48 logger.error('No files to deploy - have you built the %s recipe? If so, the install step has not installed any files.' % args.recipename) 48 logger.error('No files to deploy - have you built the %s recipe? If so, the install step has not installed any files.' % args.recipename)
@@ -50,7 +50,7 @@ def deploy(args, config, basepath, workspace):
50 50
51 if args.dry_run: 51 if args.dry_run:
52 print('Files to be deployed for %s on target %s:' % (args.recipename, args.target)) 52 print('Files to be deployed for %s on target %s:' % (args.recipename, args.target))
53 for root, dirs, files in os.walk(recipe_outdir): 53 for root, _, files in os.walk(recipe_outdir):
54 for fn in files: 54 for fn in files:
55 print(' %s' % os.path.join(destdir, os.path.relpath(root, recipe_outdir), fn)) 55 print(' %s' % os.path.join(destdir, os.path.relpath(root, recipe_outdir), fn))
56 return 0 56 return 0