summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
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):
55 with open(appendfile, 'w') as afile: 55 with open(appendfile, 'w') as afile:
56 afile.write('IMAGE_INSTALL_append = " %s"\n' % ' '.join(recipes)) 56 afile.write('IMAGE_INSTALL_append = " %s"\n' % ' '.join(recipes))
57 57
58 # Generate notification callback devtool_warn_image_extended
59 afile.write('do_rootfs[prefuncs] += "devtool_warn_image_extended"\n\n')
60 afile.write("python devtool_warn_image_extended() {\n")
61 afile.write(" bb.plain('NOTE: %%s: building with additional '\n"
62 " 'packages due to \"devtool build-image\"'"
63 " %% d.getVar('PN', True))\n"
64 " bb.plain('NOTE: delete %%s to clear this' %% \\\n"
65 " '%s')\n" % os.path.relpath(appendfile, basepath))
66 afile.write("}\n")
58 try: 67 try:
59 exec_build_env_command(config.init_path, basepath, 68 exec_build_env_command(config.init_path, basepath,
60 'bitbake %s' % image, watch=True) 69 'bitbake %s' % image, watch=True)