aboutsummaryrefslogtreecommitdiffstats
path: root/classes/base.bbclass
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-08-23 16:39:20 -0400
committerChris Larson <chris_larson@mentor.com>2010-08-23 16:40:11 -0400
commit5678affd4e1b6453d6802b8cfb7823fec6f47269 (patch)
treec2a379c4bd4d036d4f3329304835a6f5142ef6f5 /classes/base.bbclass
parentc566d33ddc8950dd8e9d98af643a35dc67a59be8 (diff)
downloadopenembedded-5678affd4e1b6453d6802b8cfb7823fec6f47269.tar.gz
base: use a variable for the modules to import/inject
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r--classes/base.bbclass21
1 files changed, 8 insertions, 13 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index 89f983f548..ef9921d04c 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -9,31 +9,26 @@ inherit utils
inherit utility-tasks
inherit metadata_scm
-python sys_path_eh () {
- if isinstance(e, bb.event.ConfigParsed):
- import sys
- import os
- import time
+OE_IMPORTS += "oe.path oe.utils sys os time"
+python oe_import () {
+ if isinstance(e, bb.event.ConfigParsed):
bbpath = e.data.getVar("BBPATH", True).split(":")
sys.path[0:0] = [os.path.join(dir, "lib") for dir in bbpath]
def inject(name, value):
- """Make a python object accessible from everywhere for the metadata"""
+ """Make a python object accessible from the metadata"""
if hasattr(bb.utils, "_context"):
bb.utils._context[name] = value
else:
__builtins__[name] = value
- import oe.path
- import oe.utils
- inject("bb", bb)
- inject("sys", sys)
- inject("time", time)
- inject("oe", oe)
+ for toimport in e.data.getVar("OE_IMPORTS", True).split():
+ imported = __import__(toimport)
+ inject(toimport, imported)
}
-addhandler sys_path_eh
+addhandler oe_import
die() {
oefatal "$*"