]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool: build-image: stop using add_md5
authorEd Bartosh <ed.bartosh@linux.intel.com>
Sun, 30 Aug 2015 14:17:09 +0000 (17:17 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 31 Aug 2015 10:36:13 +0000 (11:36 +0100)
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.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
scripts/lib/devtool/build-image.py

index d8e7b1283282d4b6b6dbabf3efdad5f5308eeb15..ebd9c59bfc339fa1390aca23c94457687ed89db4 100644 (file)
@@ -21,7 +21,7 @@ import os
 import logging
 
 from bb.process import ExecutionError
-from devtool import exec_build_env_command, add_md5
+from devtool import exec_build_env_command
 
 LOG = logging.getLogger('devtool')
 
@@ -38,8 +38,6 @@ def build_image(args, config, basepath, workspace):
         afile.write('IMAGE_INSTALL_append = " %s"\n' % \
                     ' '.join(workspace.keys()))
 
-    add_md5(config, image, appendfile)
-
     try:
         exec_build_env_command(config.init_path, basepath,
                                'bitbake %s' % image, watch=True)