diff options
Diffstat (limited to 'meta/lib/bblayers/buildconf.py')
-rw-r--r-- | meta/lib/bblayers/buildconf.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/meta/lib/bblayers/buildconf.py b/meta/lib/bblayers/buildconf.py index 87a5e5a55b..722cf0723c 100644 --- a/meta/lib/bblayers/buildconf.py +++ b/meta/lib/bblayers/buildconf.py | |||
@@ -20,7 +20,10 @@ def plugin_init(plugins): | |||
20 | return BuildConfPlugin() | 20 | return BuildConfPlugin() |
21 | 21 | ||
22 | class BuildConfPlugin(LayerPlugin): | 22 | class BuildConfPlugin(LayerPlugin): |
23 | notes_fixme = """FIXME: Please place here the description of this build configuration. | 23 | notes_fixme = """FIXME: Please place here the detailed instructions for using this build configuration. |
24 | They will be shown to the users when they set up their builds via TEMPLATECONF. | ||
25 | """ | ||
26 | summary_fixme = """FIXME: Please place here the short summary of what this build configuration is for. | ||
24 | It will be shown to the users when they set up their builds via TEMPLATECONF. | 27 | It will be shown to the users when they set up their builds via TEMPLATECONF. |
25 | """ | 28 | """ |
26 | 29 | ||
@@ -41,14 +44,17 @@ It will be shown to the users when they set up their builds via TEMPLATECONF. | |||
41 | bblayers_data = bblayers_data.replace(abspath, "##OEROOT##/" + relpath) | 44 | bblayers_data = bblayers_data.replace(abspath, "##OEROOT##/" + relpath) |
42 | dest.write(bblayers_data) | 45 | dest.write(bblayers_data) |
43 | 46 | ||
47 | with open(os.path.join(destdir, "conf-summary.txt"), 'w') as dest: | ||
48 | dest.write(self.summary_fixme) | ||
44 | with open(os.path.join(destdir, "conf-notes.txt"), 'w') as dest: | 49 | with open(os.path.join(destdir, "conf-notes.txt"), 'w') as dest: |
45 | dest.write(self.notes_fixme) | 50 | dest.write(self.notes_fixme) |
46 | 51 | ||
47 | logger.info("""Configuration template placed into {} | 52 | logger.info("""Configuration template placed into {} |
48 | Please review the files in there, and particularly provide a configuration description in {} | 53 | Please review the files in there, and particularly provide a configuration summary in {} |
54 | and notes in {} | ||
49 | You can try out the configuration with | 55 | You can try out the configuration with |
50 | TEMPLATECONF={} . {}/oe-init-build-env build-try-{}""" | 56 | TEMPLATECONF={} . {}/oe-init-build-env build-try-{}""" |
51 | .format(destdir, os.path.join(destdir, "conf-notes.txt"), destdir, oecorepath, templatename)) | 57 | .format(destdir, os.path.join(destdir, "conf-summary.txt"), os.path.join(destdir, "conf-notes.txt"), destdir, oecorepath, templatename)) |
52 | 58 | ||
53 | def do_save_build_conf(self, args): | 59 | def do_save_build_conf(self, args): |
54 | """ Save the currently active build configuration (conf/local.conf, conf/bblayers.conf) as a template into a layer.\n This template can later be used for setting up builds via TEMPLATECONF. """ | 60 | """ Save the currently active build configuration (conf/local.conf, conf/bblayers.conf) as a template into a layer.\n This template can later be used for setting up builds via TEMPLATECONF. """ |