summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-10-13 15:22:47 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-10-14 11:36:58 +0100
commit557a3150a16575641f8541fc81853b74508eda87 (patch)
treeb4d88bc1e8e17e2cc79e1e8e134b95d155bb9999
parent4735aa8fd6242aa37d06f11470c3583a0a261f87 (diff)
downloadpoky-master.tar.gz
ref-manual/variables.rst: add note about PSEUDO ignore/include precedenceHEADmaster
This commit[1] in pseudo introduced the PSEUDO_INCLUDE_PATHS variable, however the previous PSEUDO_IGNORE_PATHS variable is still present also. Add a clarifying note about the order of precedence of the two. [1]: https://git.yoctoproject.org/pseudo/commit/?id=2c43381180f9cfef4c0a8bb0c1658a86c3fcc876 (From yocto-docs rev: 8b85245490ae0b19a9c3880ec31e55b42e19d094) Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/ref-manual/variables.rst9
1 files changed, 7 insertions, 2 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 1d4ec413ca..591c03028c 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -7567,7 +7567,9 @@ system and gives an overview of their function and contents.
7567 by pseudo when monitoring and recording file operations, in order to avoid 7567 by pseudo when monitoring and recording file operations, in order to avoid
7568 problems with files being written to outside of the pseudo context and 7568 problems with files being written to outside of the pseudo context and
7569 reduce pseudo's overhead. A path is ignored if it matches any prefix in the list 7569 reduce pseudo's overhead. A path is ignored if it matches any prefix in the list
7570 and can include partial directory (or file) names. 7570 and can include partial directory (or file) names. In case a path prefix is
7571 present in both :term:`PSEUDO_IGNORE_PATHS` and in :term:`PSEUDO_INCLUDE_PATHS`,
7572 :term:`PSEUDO_INCLUDE_PATHS` takes precedence.
7571 7573
7572 :term:`PSEUDO_INCLUDE_PATHS` 7574 :term:`PSEUDO_INCLUDE_PATHS`
7573 A comma-separated (without spaces) list of path prefixes that should be included 7575 A comma-separated (without spaces) list of path prefixes that should be included
@@ -7575,7 +7577,10 @@ system and gives an overview of their function and contents.
7575 problems with files being written to outside of the pseudo context and 7577 problems with files being written to outside of the pseudo context and
7576 reduce :ref:`pseudo <overview-manual/concepts:Fakeroot and Pseudo>`'s overhead. 7578 reduce :ref:`pseudo <overview-manual/concepts:Fakeroot and Pseudo>`'s overhead.
7577 A path is included if it matches any prefix in the list and can include 7579 A path is included if it matches any prefix in the list and can include
7578 partial directory (or file) names. 7580 partial directory (or file) names. In case a path prefix is present in both
7581 :term:`PSEUDO_IGNORE_PATHS` and in :term:`PSEUDO_INCLUDE_PATHS`,
7582 :term:`PSEUDO_INCLUDE_PATHS` takes precedence.
7583
7579 7584
7580 :term:`PTEST_ENABLED` 7585 :term:`PTEST_ENABLED`
7581 Specifies whether or not :ref:`Package 7586 Specifies whether or not :ref:`Package