diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-08-30 17:17:09 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-31 11:37:10 +0100 |
commit | 906f885efe9f5fb1e69f71dd49ea65facd17deb3 (patch) | |
tree | e12d54c75598e9d3e1010f23df42911cf2cdaf57 | |
parent | beea25ec424b242d10f6913efd891614509d80c3 (diff) | |
download | poky-906f885efe9f5fb1e69f71dd49ea65facd17deb3.tar.gz |
devtool: build-image: stop using add_md5
It doesn't make sense to use it as image recipe is not
in workspace. It means that we can't do 'devtool reset'
for the recipe, which is a main point of using add_md5.
(From OE-Core rev: f69613ed9d56c6e6ba322d8c9db07b7ed802042a)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/devtool/build-image.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/lib/devtool/build-image.py b/scripts/lib/devtool/build-image.py index d8e7b12832..ebd9c59bfc 100644 --- a/scripts/lib/devtool/build-image.py +++ b/scripts/lib/devtool/build-image.py | |||
@@ -21,7 +21,7 @@ import os | |||
21 | import logging | 21 | import logging |
22 | 22 | ||
23 | from bb.process import ExecutionError | 23 | from bb.process import ExecutionError |
24 | from devtool import exec_build_env_command, add_md5 | 24 | from devtool import exec_build_env_command |
25 | 25 | ||
26 | LOG = logging.getLogger('devtool') | 26 | LOG = logging.getLogger('devtool') |
27 | 27 | ||
@@ -38,8 +38,6 @@ def build_image(args, config, basepath, workspace): | |||
38 | afile.write('IMAGE_INSTALL_append = " %s"\n' % \ | 38 | afile.write('IMAGE_INSTALL_append = " %s"\n' % \ |
39 | ' '.join(workspace.keys())) | 39 | ' '.join(workspace.keys())) |
40 | 40 | ||
41 | add_md5(config, image, appendfile) | ||
42 | |||
43 | try: | 41 | try: |
44 | exec_build_env_command(config.init_path, basepath, | 42 | exec_build_env_command(config.init_path, basepath, |
45 | 'bitbake %s' % image, watch=True) | 43 | 'bitbake %s' % image, watch=True) |