summaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/__init__.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-07 08:51:43 -0700
committerChris Larson <chris_larson@mentor.com>2011-01-07 10:58:11 -0500
commitd93bd42e8a6f66bf7a7a638d98e5e06ccd5a2c33 (patch)
tree914de98748b9040bbf0634788252e119325bc139 /lib/bb/parse/__init__.py
parent96ee6840010c1ae1080e6bf7ff0f4eb2d361e84b (diff)
parent315b83d1de954e51d0d077ff00140a7ec41ffbc7 (diff)
downloadbitbake-contrib-d93bd42e8a6f66bf7a7a638d98e5e06ccd5a2c33.tar.gz
Merge branch 'poky-sync'
* poky-sync: build: kill unneeded environment setup bits parse: save python functions into the metadata Include exported variables in task process env runqueue: start implementing quieterrors Overhaul environment handling runqueue: resurrect use of file objects for pipein/pipeout runqueue: clean up message log levels runqueue: use correct task ID when checking validity of setscene tasks Add support for 'noexec' tasks runqueue: implement cache checking from metadata runqueue: pass task hash information to tasks runqueue: avoid unnecessary delays Implement task signatures data: Add emit_func and generate_dependencies codeparser: Implement persistent cache data_smart: track variable references codeparser: add module for parsing shell/python runqueue: implement scenequeue fetch: add SRC_URI checksum Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/parse/__init__.py')
-rw-r--r--lib/bb/parse/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bb/parse/__init__.py b/lib/bb/parse/__init__.py
index 264d00996..eee8d9cdd 100644
--- a/lib/bb/parse/__init__.py
+++ b/lib/bb/parse/__init__.py
@@ -31,6 +31,7 @@ import stat
import logging
import bb
import bb.utils
+import bb.siggen
logger = logging.getLogger("BitBake.Parsing")
@@ -84,6 +85,9 @@ def init(fn, data):
if h['supports'](fn):
return h['init'](data)
+def init_parser(d):
+ bb.parse.siggen = bb.siggen.init(d)
+
def resolve_file(fn, d):
if not os.path.isabs(fn):
bbpath = bb.data.getVar("BBPATH", d, True)