mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
Variable dependencies for functions in the oe.packagedata module were missing as it was not present in BBIMPORTS. Add it as the fact it was missing is likely just historical oversight from base.bbclass history and the dependencies are useful. Add an exclusion to bitbake.conf to ensure BB_NUMBER_THREADS doesn't change task checksums. (From OE-Core rev: 7df9178766ee7939d139648e04f5747b0ffe1e13) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
367 B
Python
13 lines
367 B
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from pkgutil import extend_path
|
|
__path__ = extend_path(__path__, __name__)
|
|
|
|
BBIMPORTS = ["data", "path", "utils", "types", "package", "packagedata", \
|
|
"packagegroup", "sstatesig", "lsb", "cachedpath", "license", \
|
|
"qa", "reproducible", "rust", "buildcfg"]
|