summaryrefslogtreecommitdiff
path: root/poky/meta/lib/oe/__init__.py
blob: d76048128344ef91f0028d774871cfbdda1ea6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: GPL-2.0-only
#

from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

# Modules with vistorcode need to go first else anything depending on them won't be
# processed correctly (e.g. qa)
BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \
             "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \
             "reproducible", "rust", "buildcfg", "go"]