diff options
author | Quentin Schulz <foss@0leil.net> | 2021-06-01 21:22:35 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-06 23:18:26 +0100 |
commit | c9ef89b3b9730bcdaea29af095bd88b6f1c5a6db (patch) | |
tree | 0913de42fa42757bc2aaae5e918f02d31d6f4260 | |
parent | 2c37ab65e535d0cbf450b54df8c21043ca9b33f3 (diff) | |
download | poky-c9ef89b3b9730bcdaea29af095bd88b6f1c5a6db.tar.gz |
bitbake: doc: user-manual: ref-manual: remove mentions to BB_SETSCENE_VERIFY_FUNCTION2
This variable was removed in July 2019 with commit
5deaa5df730a "runqueue: Drop unused BB_SETSCENE_VERIFY_FUNCTION2".
There's no replacement, so let's update the documentation to not mention
this variable anymore.
This was found by running:
git grep -hoP '^ :term:`\K\w+(?=`)' doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | \
xargs -I{} sh -c \
"grep -Rq --include='*.py' --include='*.conf' --include='*.bbclass' --include='*.bb' --include='*.bbappend' --include='*.inc' \
-w -E {}'_*(_[a-z]+[0-9a-z]*[a-z]+)*' || \
echo {}"
(Bitbake rev: c2c0f5126c7c784bfd7a08f127e161a58c6b5d12)
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 files changed, 0 insertions, 22 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 14c342a6a7..84d65fa9c3 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst | |||
@@ -648,13 +648,6 @@ compiled binary. To handle this, BitBake calls the | |||
648 | each successful setscene task to know whether or not it needs to obtain | 648 | each successful setscene task to know whether or not it needs to obtain |
649 | the dependencies of that task. | 649 | the dependencies of that task. |
650 | 650 | ||
651 | Finally, after all the setscene tasks have executed, BitBake calls the | ||
652 | function listed in | ||
653 | :term:`BB_SETSCENE_VERIFY_FUNCTION2` | ||
654 | with the list of tasks BitBake thinks has been "covered". The metadata | ||
655 | can then ensure that this list is correct and can inform BitBake that it | ||
656 | wants specific tasks to be run regardless of the setscene result. | ||
657 | |||
658 | You can find more information on setscene metadata in the | 651 | You can find more information on setscene metadata in the |
659 | :ref:`bitbake-user-manual/bitbake-user-manual-metadata:task checksums and setscene` | 652 | :ref:`bitbake-user-manual/bitbake-user-manual-metadata:task checksums and setscene` |
660 | section. | 653 | section. |
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst index 77c107aff6..20c330e6ac 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | |||
@@ -1920,10 +1920,6 @@ The following list describes related variables: | |||
1920 | Specifies a function BitBake calls that determines whether BitBake | 1920 | Specifies a function BitBake calls that determines whether BitBake |
1921 | requires a setscene dependency to be met. | 1921 | requires a setscene dependency to be met. |
1922 | 1922 | ||
1923 | - :term:`BB_SETSCENE_VERIFY_FUNCTION2`: | ||
1924 | Specifies a function to call that verifies the list of planned task | ||
1925 | execution before the main task execution happens. | ||
1926 | |||
1927 | - :term:`BB_STAMP_POLICY`: Defines the mode | 1923 | - :term:`BB_STAMP_POLICY`: Defines the mode |
1928 | for comparing timestamps of stamp files. | 1924 | for comparing timestamps of stamp files. |
1929 | 1925 | ||
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 adb311ab10..a1e2440ba8 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 | |||
@@ -426,17 +426,6 @@ overview of their function and contents. | |||
426 | The function specified by this variable returns a "True" or "False" | 426 | The function specified by this variable returns a "True" or "False" |
427 | depending on whether the dependency needs to be met. | 427 | depending on whether the dependency needs to be met. |
428 | 428 | ||
429 | :term:`BB_SETSCENE_VERIFY_FUNCTION2` | ||
430 | Specifies a function to call that verifies the list of planned task | ||
431 | execution before the main task execution happens. The function is | ||
432 | called once BitBake has a list of setscene tasks that have run and | ||
433 | either succeeded or failed. | ||
434 | |||
435 | The function allows for a task list check to see if they make sense. | ||
436 | Even if BitBake was planning to skip a task, the returned value of | ||
437 | the function can force BitBake to run the task, which is necessary | ||
438 | under certain metadata defined circumstances. | ||
439 | |||
440 | :term:`BB_SIGNATURE_EXCLUDE_FLAGS` | 429 | :term:`BB_SIGNATURE_EXCLUDE_FLAGS` |
441 | Lists variable flags (varflags) that can be safely excluded from | 430 | Lists variable flags (varflags) that can be safely excluded from |
442 | checksum and dependency data for keys in the datastore. When | 431 | checksum and dependency data for keys in the datastore. When |