summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-31 14:49:43 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-03 16:08:32 +0100
commit43595fabbe0c9084a3878645aef8e3e1c2f79452 (patch)
tree674fdee5617661909e824840f4028224addced13 /bitbake/lib/bb/cooker.py
parent453d8f49ac0340ecef6429fe539d0e0febf5071a (diff)
downloadast2050-yocto-poky-43595fabbe0c9084a3878645aef8e3e1c2f79452.zip
ast2050-yocto-poky-43595fabbe0c9084a3878645aef8e3e1c2f79452.tar.gz
bitbake: Implement signatures
Includes functionality to find out what changes between two different singature data dumps. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index ea33693..5cea9db 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -496,6 +496,8 @@ class BBCooker:
def parseConfigurationFiles(self, files):
try:
data = self.configuration.data
+
+ bb.parse.init_parser(data)
for f in files:
data = bb.parse.handle(f, data)
@@ -548,6 +550,8 @@ class BBCooker:
bb.fetch.fetcher_init(self.configuration.data)
bb.codeparser.parser_cache_init(self.configuration.data)
+ bb.parse.init_parser(data)
+
bb.event.fire(bb.event.ConfigParsed(), self.configuration.data)
except IOError as e:
OpenPOWER on IntegriCloud