devtool: build-image: add comments

Added couple of hopefully useful comments to the code.

(From OE-Core rev: 72dfe5b58c637d74971e025aef3ce0a64dc8172c)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2015-08-30 18:48:27 +03:00 committed by Richard Purdie
parent 2dac49db87
commit 15526a8591
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ def build_image(args, config, basepath, workspace):
recipes = _get_recipes(workspace, config)
if recipes:
with open(appendfile, 'w') as afile:
# include selected recipes into the image
afile.write('IMAGE_INSTALL_append = " %s"\n' % ' '.join(recipes))
# Generate notification callback devtool_warn_image_extended
@ -75,6 +76,7 @@ def build_image(args, config, basepath, workspace):
else:
logger.warning('No recipes in workspace, building image %s unmodified', image)
# run bitbake to build image
try:
exec_build_env_command(config.init_path, basepath,
'bitbake %s' % image, watch=True)