diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-09-22 17:21:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 09:53:12 +0100 |
commit | 0dc9299774753b13c1eb04ef30de4625564429a6 (patch) | |
tree | 3a792839f6d77a7e02b2f98c049033d2f842d2b2 /meta/classes | |
parent | 3a0872867105bfc58e039c082d146832f212a140 (diff) | |
download | poky-0dc9299774753b13c1eb04ef30de4625564429a6.tar.gz |
classes/populate_sdk_ext: drop work-config.inc
This is not actually used for anything - I thought that we would need to
use it within devtool to set global configuration, but we're able to do
everything we need within the bbappends it creates, which also saves on
parse time. If we're not going to use work-config.inc let's just drop it
completely.
(From OE-Core rev: 84a1f82acd3b6ebb3c073aae6b996d2203dad2ce)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 947ec741ac..c244d9356b 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -165,7 +165,6 @@ python copy_buildsystem () { | |||
165 | f.write(line.strip() + '\n') | 165 | f.write(line.strip() + '\n') |
166 | 166 | ||
167 | f.write('require conf/locked-sigs.inc\n') | 167 | f.write('require conf/locked-sigs.inc\n') |
168 | f.write('require conf/work-config.inc\n') | ||
169 | 168 | ||
170 | sigfile = d.getVar('WORKDIR', True) + '/locked-sigs.inc' | 169 | sigfile = d.getVar('WORKDIR', True) + '/locked-sigs.inc' |
171 | oe.copy_buildsystem.generate_locked_sigs(sigfile, d) | 170 | oe.copy_buildsystem.generate_locked_sigs(sigfile, d) |
@@ -185,10 +184,6 @@ python copy_buildsystem () { | |||
185 | d.getVar('SSTATE_DIR', True), | 184 | d.getVar('SSTATE_DIR', True), |
186 | sstate_out, d, | 185 | sstate_out, d, |
187 | fixedlsbstring) | 186 | fixedlsbstring) |
188 | |||
189 | # Create a dummy config file for additional settings | ||
190 | with open(baseoutpath + '/conf/work-config.inc', 'w') as f: | ||
191 | pass | ||
192 | } | 187 | } |
193 | 188 | ||
194 | def extsdk_get_buildtools_filename(d): | 189 | def extsdk_get_buildtools_filename(d): |