summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-02-13 16:54:25 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-21 23:37:26 +0000
commit8a16bf5321a51f440b9b5dcc29bc498d1eb0bf28 (patch)
tree31a8cfff44f026576fd51538ab9d61e875949327 /bitbake/lib/bb/data_smart.py
parent478cb0ce2c71273799695240845a687aaac0cb0c (diff)
downloadpoky-8a16bf5321a51f440b9b5dcc29bc498d1eb0bf28.tar.gz
bitbake: bitbake: Rename basehas and taskhash filtering variables
In line with the inclusive language migration defined at: https://wiki.yoctoproject.org/wiki/Inclusive_language rename: BB_HASHBASE_WHITELIST -> BB_BASEHASH_IGNORE_VARS BB_HASHTASK_WHITELIST -> BB_TASKHASH_IGNORE_TASKS the derived code variables basewhitelist and taskwhitelist have been renamed to basehash_ignore_vars and taskhash_ignore_tasks, respectively. [RP: Added compatibility mapping code and tweaked naming] (Bitbake rev: efaafc9ec2e8c0475e3fb27e877a1c0a5532a0e5) Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 01604ec36c..7cf17b0057 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -34,6 +34,8 @@ __whitespace_split__ = re.compile(r'(\s)')
34__override_regexp__ = re.compile(r'[a-z0-9]+') 34__override_regexp__ = re.compile(r'[a-z0-9]+')
35 35
36bitbake_renamed_vars = { 36bitbake_renamed_vars = {
37 "BB_HASHBASE_WHITELIST": "BB_BASEHASH_IGNORE_VARS",
38 "BB_HASHTASK_WHITELIST": "BB_TASKHASH_IGNORE_TASKS",
37} 39}
38 40
39def infer_caller_details(loginfo, parent = False, varval = True): 41def infer_caller_details(loginfo, parent = False, varval = True):