aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-08-30 18:32:47 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-31 11:36:54 +0100
commit53cb00b8af58c326e2a045cd6f8a04a24dc4c1b5 (patch)
tree38d27311cadc4a9e0c868ccd1221b50c39e69a01 /scripts
parentefe685711ae6f4beec06ba591c74140ce56b96af (diff)
downloadopenembedded-core-contrib-53cb00b8af58c326e2a045cd6f8a04a24dc4c1b5.tar.gz
devtool: build-image: generate notification callback
Added notification callback to <image>.bbapend to notify user that image is modified by build-image plugin. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/devtool/build-image.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/lib/devtool/build-image.py b/scripts/lib/devtool/build-image.py
index 341ab28d8e..d246fad0e3 100644
--- a/scripts/lib/devtool/build-image.py
+++ b/scripts/lib/devtool/build-image.py
@@ -55,6 +55,15 @@ def build_image(args, config, basepath, workspace):
with open(appendfile, 'w') as afile:
afile.write('IMAGE_INSTALL_append = " %s"\n' % ' '.join(recipes))
+ # Generate notification callback devtool_warn_image_extended
+ afile.write('do_rootfs[prefuncs] += "devtool_warn_image_extended"\n\n')
+ afile.write("python devtool_warn_image_extended() {\n")
+ afile.write(" bb.plain('NOTE: %%s: building with additional '\n"
+ " 'packages due to \"devtool build-image\"'"
+ " %% d.getVar('PN', True))\n"
+ " bb.plain('NOTE: delete %%s to clear this' %% \\\n"
+ " '%s')\n" % os.path.relpath(appendfile, basepath))
+ afile.write("}\n")
try:
exec_build_env_command(config.init_path, basepath,
'bitbake %s' % image, watch=True)