summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/__init__.py
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2023-10-17 07:59:02 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-19 13:26:03 +0100
commit3e86f72fc2e1cc2e5ea4b4499722d736941167ce (patch)
tree882061d96264e27cacf34c097515a7b3be69aba5 /meta/lib/oe/__init__.py
parentcf767f4f4aaaf7c568816675c1c811132a892e30 (diff)
downloadopenembedded-core-3e86f72fc2e1cc2e5ea4b4499722d736941167ce.tar.gz
goarch: Move Go architecture mapping to a library
Other spaces uses the Go architecture definitions as their own (for example, container arches are defined to be Go arches). To make it easier for other places to use this mapping, move the code that does the translation of OpenEmbedded arches to Go arches to a library. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/__init__.py')
-rw-r--r--meta/lib/oe/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py
index da7cbab308..6eb536ad28 100644
--- a/meta/lib/oe/__init__.py
+++ b/meta/lib/oe/__init__.py
@@ -9,4 +9,4 @@ __path__ = extend_path(__path__, __name__)
BBIMPORTS = ["data", "path", "utils", "types", "package", "packagedata", \
"packagegroup", "sstatesig", "lsb", "cachedpath", "license", \
- "qa", "reproducible", "rust", "buildcfg"]
+ "qa", "reproducible", "rust", "buildcfg", "go"]