diff mbox series

[4/4] doc: bitbake-user-manual-ref-variables: update BBMASK example with current meta-ti

Message ID 20260211-bbmask-slashes-v1-4-b72161c647ef@cherry.de
State New
Headers show
Series doc: bitbake-user-manual-ref-variables: clarify BBMASK examples | expand

Commit Message

Quentin Schulz Feb. 11, 2026, 6:06 p.m. UTC
From: Quentin Schulz <quentin.schulz@cherry.de>

meta-ti git repo now has multiple layers in it since kirkstone, so let's
update the examples to match the current state of meta-ti by using
meta-ti-bsp.

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
 .../bitbake-user-manual-ref-variables.rst                | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
index 6612dcc03..e8563bc97 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
@@ -1052,15 +1052,15 @@  overview of their function and contents.
 
       The following example uses a complete regular expression to tell
       BitBake to ignore all recipe and recipe append files in
-      ``meta-ti/recipes-misc/`` directories (and their subdirectories)::
+      ``meta-ti-bsp/recipes-ti/`` directories (and their subdirectories)::
 
-         BBMASK = "/meta-ti/recipes-misc/"
+         BBMASK = "/meta-ti-bsp/recipes-ti/"
 
       If you want to mask out multiple directories or recipes, you can
       specify multiple regular expression fragments. This next example
       masks out multiple directories and individual recipes::
 
-         BBMASK += "/meta-ti/recipes-ti/packagegroup/"
+         BBMASK += "/meta-ti-bsp/recipes-graphics/powervr-umlibs/"
          BBMASK += "/meta-oe/recipes-support/"
          BBMASK += "/meta-foo/.*/openldap"
          BBMASK += "opencv.*\.bbappend"
@@ -1077,21 +1077,21 @@  overview of their function and contents.
          mean the path is absolute. It simply forces the directory to be named
          exactly that. Take::
 
-            BBMASK = "meta-ti/recipes-bsp/"
+            BBMASK = "meta-ti-bsp/recipes-ti/"
 
-        If you happen to have a directory ``my-meta-ti/recipes-bsp``, it will
+        If you happen to have a directory ``my-meta-ti-bsp/recipes-ti``, it will
         be matched.
 
         Leading with a slash::
 
-           BBMASK = "/meta-ti/recipes-bsp/"
+           BBMASK = "/meta-ti-bsp/recipes-ti/"
 
         makes sure that doesn't happen. However, this doesn't prevent matching a
-        directory ``meta-foo/meta-ti/recipes-bsp``. For that, use the
+        directory ``meta-foo/meta-ti-bsp/recipes-ti``. For that, use the
         appropriate :term:`BBFILE_PATTERN` to only match a directory from one
         specific layer::
 
-           BBMASK = "${BBFILE_PATTERN_meta-ti}/recipes-bsp/"
+           BBMASK = "${BBFILE_PATTERN_meta-ti-bsp}/recipes-bsp/"
 
    :term:`BBMULTICONFIG`
       Enables BitBake to perform multiple configuration builds and lists