summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-04-20 17:47:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-24 11:06:54 +0100
commit617a02d0fdeb1a06bddf3aab257b35acc5d73832 (patch)
tree4a05d58b00b94fef47e6b98a2a589369e3401e90
parent0c09ff23a52e7daef1104fc9d1965aebad7a19f4 (diff)
downloadpoky-617a02d0fdeb1a06bddf3aab257b35acc5d73832.tar.gz
classes/populate_sdk_ext: add warning against editing configuration
It may be tempting to edit the configuration of the encapsulated version of the build system, however that is not the way it is intended to be used, so add a warning against doing this. (From OE-Core rev: 80bbd763448fa061e3dbc3ace8d6bc9f65e4bfaf) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/populate_sdk_ext.bbclass10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 17a8e8cdf4..44b926e2d7 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -91,6 +91,11 @@ python copy_buildsystem () {
91 # Create bblayers.conf 91 # Create bblayers.conf
92 bb.utils.mkdirhier(baseoutpath + '/conf') 92 bb.utils.mkdirhier(baseoutpath + '/conf')
93 with open(baseoutpath + '/conf/bblayers.conf', 'w') as f: 93 with open(baseoutpath + '/conf/bblayers.conf', 'w') as f:
94 f.write('# WARNING: this configuration has been automatically generated and in\n')
95 f.write('# most cases should not be edited. If you need more flexibility than\n')
96 f.write('# this configuration provides, it is strongly suggested that you set\n')
97 f.write('# up a proper instance of the full build system and use that instead.\n\n')
98
94 f.write('LCONF_VERSION = "%s"\n\n' % d.getVar('LCONF_VERSION')) 99 f.write('LCONF_VERSION = "%s"\n\n' % d.getVar('LCONF_VERSION'))
95 f.write('BBPATH = "$' + '{TOPDIR}"\n') 100 f.write('BBPATH = "$' + '{TOPDIR}"\n')
96 f.write('SDKBASEMETAPATH = "$' + '{TOPDIR}"\n') 101 f.write('SDKBASEMETAPATH = "$' + '{TOPDIR}"\n')
@@ -102,6 +107,11 @@ python copy_buildsystem () {
102 107
103 # Create local.conf 108 # Create local.conf
104 with open(baseoutpath + '/conf/local.conf', 'w') as f: 109 with open(baseoutpath + '/conf/local.conf', 'w') as f:
110 f.write('# WARNING: this configuration has been automatically generated and in\n')
111 f.write('# most cases should not be edited. If you need more flexibility than\n')
112 f.write('# this configuration provides, it is strongly suggested that you set\n')
113 f.write('# up a proper instance of the full build system and use that instead.\n\n')
114
105 f.write('INHERIT += "%s"\n\n' % 'uninative') 115 f.write('INHERIT += "%s"\n\n' % 'uninative')
106 f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION')) 116 f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION'))
107 117