diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-27 17:08:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-08 11:15:47 +0000 |
commit | 4901c9d471cab99d52876842980222ce271b66e4 (patch) | |
tree | f50450c9081ed060b95c77d04370bd2391f2adb1 /meta/lib | |
parent | d0ea143156f2808ab684b3d73fec039d2a62f229 (diff) | |
download | poky-4901c9d471cab99d52876842980222ce271b66e4.tar.gz |
base: Switch to use addpylib directive and BB_GLOBAL_PYMODULES
Since bitbake now supports an official method to inject python modules,
switch to it.
Anyone using OE_EXTRA_IMPORTS will need to adjust their code accordingly,
probably switching to their own module namespace.
Also switch to using BB_GLOBAL_PYMODULES to list the global modules
to import.
(From OE-Core rev: 1f56155e91da2030ee0a5e93037c62e1349ba89f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py index 92f002d872..47be7b51d7 100644 --- a/meta/lib/oe/__init__.py +++ b/meta/lib/oe/__init__.py | |||
@@ -6,3 +6,7 @@ | |||
6 | 6 | ||
7 | from pkgutil import extend_path | 7 | from pkgutil import extend_path |
8 | __path__ = extend_path(__path__, __name__) | 8 | __path__ = extend_path(__path__, __name__) |
9 | |||
10 | BBIMPORTS = ["data", "path", "utils", "types", "package", \ | ||
11 | "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \ | ||
12 | "qa", "reproducible", "rust", "buildcfg"] | ||