summaryrefslogtreecommitdiffstats
path: root/bitbake/doc
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/doc
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/doc')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst4
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst
index 7b37f6615a..f99001bc76 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst
@@ -477,7 +477,7 @@ changes because it should not affect the output for target packages. The
477simplistic approach for excluding the working directory is to set it to 477simplistic approach for excluding the working directory is to set it to
478some fixed value and create the checksum for the "run" script. BitBake 478some fixed value and create the checksum for the "run" script. BitBake
479goes one step better and uses the 479goes one step better and uses the
480:term:`BB_HASHBASE_WHITELIST` variable 480:term:`BB_BASEHASH_IGNORE_VARS` variable
481to define a list of variables that should never be included when 481to define a list of variables that should never be included when
482generating the signatures. 482generating the signatures.
483 483
@@ -538,7 +538,7 @@ in a list of global variable dependency excludes - variables never
538included in any checksum. This example uses variables from OpenEmbedded 538included in any checksum. This example uses variables from OpenEmbedded
539to help illustrate the concept:: 539to help illustrate the concept::
540 540
541 BB_HASHBASE_WHITELIST ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR \ 541 BB_BASEHASH_IGNORE_VARS ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR \
542 SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL \ 542 SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL \
543 USER FILESPATH STAGING_DIR_HOST STAGING_DIR_TARGET COREBASE PRSERV_HOST \ 543 USER FILESPATH STAGING_DIR_HOST STAGING_DIR_TARGET COREBASE PRSERV_HOST \
544 PRSERV_DUMPDIR PRSERV_DUMPFILE PRSERV_LOCKDOWN PARALLEL_MAKE \ 544 PRSERV_DUMPDIR PRSERV_DUMPFILE PRSERV_LOCKDOWN PARALLEL_MAKE \
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
index 9d1828c3ba..bdd4127a48 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
@@ -337,7 +337,7 @@ overview of their function and contents.
337 337
338 For example usage, see :term:`BB_GIT_SHALLOW`. 338 For example usage, see :term:`BB_GIT_SHALLOW`.
339 339
340 :term:`BB_HASHBASE_WHITELIST` 340 :term:`BB_BASEHASH_IGNORE_VARS`
341 Lists variables that are excluded from checksum and dependency data. 341 Lists variables that are excluded from checksum and dependency data.
342 Variables that are excluded can therefore change without affecting 342 Variables that are excluded can therefore change without affecting
343 the checksum mechanism. A common example would be the variable for 343 the checksum mechanism. A common example would be the variable for