summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-05 13:01:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-05 13:01:39 +0000
commitbc954f74620959703a0e921fcac3a6892675fe0d (patch)
treef84a84c1fb9df1c472599337ffddabb92481197e
parentcff2c258b77fde01d530a5923e553e6111b15eb5 (diff)
downloadbitbake-bc954f74620959703a0e921fcac3a6892675fe0d.tar.gz
cooker.py: Add missing BB_WORKERCONTEXT conditionals
Its desireable to run be able to execute bitbake tasks directly, only loading as much of the cooker is as necessary to do this. This use case can be identified by the BB_WORKERCONTEXT variable. There were a couple of places cooker code needed to be conditional on this but wasn't. This brings in the missing conditionals from poky where those code paths are used more heavily completing the support in master. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cooker.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 27abca0fa..15243f219 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -170,6 +170,9 @@ class BBCooker:
def loadConfigurationData(self):
self.configuration.data = bb.data.init()
+ if not self.server_registration_cb:
+ self.configuration.data.setVar("BB_WORKERCONTEXT", "1")
+
filtered_keys = bb.utils.approved_variables()
bb.data.inheritFromOS(self.configuration.data, self.savedenv, filtered_keys)
@@ -827,7 +830,8 @@ class BBCooker:
for var in data.getVar('__BBHANDLERS') or []:
bb.event.register(var, data.getVar(var))
- bb.fetch.fetcher_init(data)
+ if data.getVar("BB_WORKERCONTEXT", False) is None:
+ bb.fetch.fetcher_init(data)
bb.codeparser.parser_cache_init(data)
bb.parse.init_parser(data)
bb.event.fire(bb.event.ConfigParsed(), data)