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 /scripts/lib/devtool | |
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 'scripts/lib/devtool')
-rw-r--r-- | scripts/lib/devtool/sdk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/sdk.py b/scripts/lib/devtool/sdk.py index 2f416b36f5..7a842afc24 100644 --- a/scripts/lib/devtool/sdk.py +++ b/scripts/lib/devtool/sdk.py | |||
@@ -170,7 +170,7 @@ def sdk_update(args, config, basepath, workspace): | |||
170 | logger.error("Updating meta data via git failed") | 170 | logger.error("Updating meta data via git failed") |
171 | return ret | 171 | return ret |
172 | logger.debug("Updating conf files ...") | 172 | logger.debug("Updating conf files ...") |
173 | conf_files = ['local.conf', 'bblayers.conf', 'devtool.conf', 'work-config.inc', 'locked-sigs.inc'] | 173 | conf_files = ['local.conf', 'bblayers.conf', 'devtool.conf', 'locked-sigs.inc'] |
174 | for conf in conf_files: | 174 | for conf in conf_files: |
175 | ret = subprocess.call("wget -q -O - %s/conf/%s > conf/%s" % (args.updateserver, conf, conf), shell=True) | 175 | ret = subprocess.call("wget -q -O - %s/conf/%s > conf/%s" % (args.updateserver, conf, conf), shell=True) |
176 | if ret != 0: | 176 | if ret != 0: |