summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image
diff options
context:
space:
mode:
authorJoão Henrique Ferreira de Freitas <joaohf@gmail.com>2014-04-04 23:14:09 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-13 19:35:11 +0100
commit8387f1f00093e5c45f20bb4d4bc9bc6ef549a795 (patch)
treee1f7766ad8a3c8995088e27d0d79ceef0d217e78 /scripts/lib/image
parentbf7364ec9bc2cd0aabb075e96e54161c2a8cb791 (diff)
downloadast2050-yocto-poky-8387f1f00093e5c45f20bb4d4bc9bc6ef549a795.zip
ast2050-yocto-poky-8387f1f00093e5c45f20bb4d4bc9bc6ef549a795.tar.gz
wic: Move find_bitbake_env_line() to oe.misc
Move find_bitbake_env_line() since they're going to need to be accessible from source plugins. (From OE-Core rev: d881ec6136255fd0f4a8cf36f9ce148ade02c103) Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image')
-rw-r--r--scripts/lib/image/engine.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py
index 0643780..311737a 100644
--- a/scripts/lib/image/engine.py
+++ b/scripts/lib/image/engine.py
@@ -60,23 +60,6 @@ def verify_build_env():
return True
-def find_bitbake_env_lines(image_name):
- """
- If image_name is empty, plugins might still be able to use the
- environment, so set it regardless.
- """
- if image_name:
- bitbake_env_cmd = "bitbake -e %s" % image_name
- else:
- bitbake_env_cmd = "bitbake -e"
- rc, bitbake_env_lines = exec_cmd(bitbake_env_cmd)
- if rc != 0:
- print "Couldn't get '%s' output." % bitbake_env_cmd
- return None
-
- return bitbake_env_lines
-
-
def find_artifacts(image_name):
"""
Gather the build artifacts for the current image (the image_name
OpenPOWER on IntegriCloud