mirror of
git://git.yoctoproject.org/poky
synced 2026-08-13 22:05:25 +00:00
lib: Import packagedata oe module by default
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>
This commit is contained in:
parent
8815eefb0d
commit
374fd90865
@ -977,3 +977,4 @@ oe.utils.get_multilib_datastore[vardepsexclude] = "DEFAULTTUNE_MULTILIB_ORIGINAL
|
||||
oe.path.format_display[vardepsexclude] = "TOPDIR"
|
||||
oe.utils.get_bb_number_threads[vardepsexclude] = "BB_NUMBER_THREADS"
|
||||
oe.packagedata.emit_pkgdata[vardepsexclude] = "BB_NUMBER_THREADS"
|
||||
oe.packagedata.read_subpkgdata_extended[vardepsexclude] = "BB_NUMBER_THREADS"
|
||||
|
||||
@ -7,6 +7,6 @@
|
||||
from pkgutil import extend_path
|
||||
__path__ = extend_path(__path__, __name__)
|
||||
|
||||
BBIMPORTS = ["data", "path", "utils", "types", "package", \
|
||||
BBIMPORTS = ["data", "path", "utils", "types", "package", "packagedata", \
|
||||
"packagegroup", "sstatesig", "lsb", "cachedpath", "license", \
|
||||
"qa", "reproducible", "rust", "buildcfg"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user