diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-31 14:49:43 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-03 16:08:32 +0100 |
commit | 43595fabbe0c9084a3878645aef8e3e1c2f79452 (patch) | |
tree | 674fdee5617661909e824840f4028224addced13 /bitbake/lib/bb/cooker.py | |
parent | 453d8f49ac0340ecef6429fe539d0e0febf5071a (diff) | |
download | openembedded-core-43595fabbe0c9084a3878645aef8e3e1c2f79452.tar.gz openembedded-core-43595fabbe0c9084a3878645aef8e3e1c2f79452.tar.bz2 openembedded-core-43595fabbe0c9084a3878645aef8e3e1c2f79452.zip |
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.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index ea33693ddb..5cea9dba9d 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: |