summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-16 11:15:26 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-17 08:52:28 +0000
commitd7a10cf6f9a49dcce9a0316a34be9b928d2ae5f1 (patch)
tree7d32ded10ce99d1ad3896407c82dde693813eeb6 /meta/conf/bitbake.conf
parent2b406a3174b8142b1ae00e6cff4af43317a78f94 (diff)
downloadpoky-d7a10cf6f9a49dcce9a0316a34be9b928d2ae5f1.tar.gz
bitbake.conf: Add module function vardepsexclude entries
Now that bitbake can look into python module code variable and function dependencies, there are a few extra basic variables we need to exclude. This is done per function since it keeps the main exclusion list cleaner and is also slightly faster. (From OE-Core rev: 870c324d47f1d920fcb736e09fc6e857f24945c7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index c9a4e328f1..bfa28d3bc9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -968,3 +968,8 @@ MULTILIB_VARIANTS ??= ""
968# what it would be anyway if the signature generator (e.g. OEEquivHash) doesn't 968# what it would be anyway if the signature generator (e.g. OEEquivHash) doesn't
969# support unihashes. 969# support unihashes.
970BB_UNIHASH ?= "${BB_TASKHASH}" 970BB_UNIHASH ?= "${BB_TASKHASH}"
971
972oe.sstatesig.find_sstate_manifest[vardepsexclude] = "BBEXTENDCURR BBEXTENDVARIANT OVERRIDES PACKAGE_EXTRA_ARCHS"
973oe.utils.get_multilib_datastore[vardepsexclude] = "DEFAULTTUNE_MULTILIB_ORIGINAL OVERRIDES"
974oe.path.format_display[vardepsexclude] = "TOPDIR"
975oe.utils.multiprocess_launch[vardepsexclude] = "BB_NUMBER_THREADS"