From 6bbe4fe48c93d1e2b67a36aa82d2ea5e289a219c Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Sat, 30 Apr 2016 12:41:00 -0700 Subject: bitbake: bitbake-layers: convert to plugin-based This uses bb.utils.load_plugins, based on the plugin handling in recipetool and devtool in oe-core. (Bitbake rev: 5e542df9b966a99b5a5b8aa7cf6100174aff54b2) Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- bitbake/lib/bblayers/__init__.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 bitbake/lib/bblayers/__init__.py (limited to 'bitbake/lib/bblayers/__init__.py') diff --git a/bitbake/lib/bblayers/__init__.py b/bitbake/lib/bblayers/__init__.py new file mode 100644 index 0000000000..3ad9513f40 --- /dev/null +++ b/bitbake/lib/bblayers/__init__.py @@ -0,0 +1,2 @@ +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) -- cgit v1.2.3-54-g00ecf