diff mbox series

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

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

Commit Message

Quentin Schulz Feb. 16, 2026, 10:36 a.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          | 32 +++++++++++-----------
 1 file changed, 16 insertions(+), 16 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 06e1112b5..9daf8223d 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
@@ -1052,25 +1052,25 @@  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
-      ``recipes-bsp`` directory (recursively) of ``meta-ti``::
+      ``recipes-bsp`` directory (recursively) of ``meta-ti-bsp``::
 
-         BBMASK = "${BBFILE_PATTERN_meta-ti}/recipes-bsp/"
+         BBMASK = "${BBFILE_PATTERN_meta-ti-bsp}/recipes-bsp/"
 
       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 += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal/"
+         BBMASK += "${BBFILE_PATTERN_meta-ti-bsp}/recipes-graphics/libgal/"
          BBMASK += "${BBFILE_PATTERN_openembedded-layer}/recipes-support/"
          BBMASK += "${BBFILE_PATTERN_openembedded-layer}/.*/openldap"
-         BBMASK += "${BBFILE_PATTERN_meta-ti}/.*/optee.*\.bbappend"
+         BBMASK += "${BBFILE_PATTERN_meta-ti-bsp}/.*/optee.*\.bbappend"
 
-      This masks the ``recipes-graphics/libgal/`` from ``meta-ti``, everything
+      This masks the ``recipes-graphics/libgal/`` from ``meta-ti-bsp``, everything
       under ``recipes-support`` in ``meta-oe``, every directory or file whose
       name starts with ``openldap`` in ``meta-oe`` at any directory depth > 1
       (e.g. in ``meta-oe``, ``recipes-foo/openldap-stuff/`` or
       ``recipes-bar/baz/openldap_0.1.bb`` but not ``openldap/``), every append
-      file in ``meta-ti`` at any directory depth > 1 (e.g.
+      file in ``meta-ti-bsp`` at any directory depth > 1 (e.g.
       ``optee/optee-examples_%.bbappend`` and
       ``recipes-security/optee/optee-client_%.bbappend``).
 
@@ -1080,24 +1080,24 @@  overview of their function and contents.
          directory and not a file, you must end the expression with a trailing
          slash. That is::
 
-            BBMASK += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal/"
+            BBMASK += "${BBFILE_PATTERN_meta-ti-bsp}/recipes-graphics/libgal/"
 
          Will match anything under ``recipes-graphics/ligbal/`` directory of
-         ``meta-ti``. And::
+         ``meta-ti-bsp``. And::
 
-            BBMASK += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal"
+            BBMASK += "${BBFILE_PATTERN_meta-ti-bsp}/recipes-graphics/libgal"
 
-         Will match in ``meta-ti`` any file prefixed with ``libgal`` in
+         Will match in ``meta-ti-bsp`` any file prefixed with ``libgal`` in
          ``recipes-graphics/`` and any directory (recursively; and its
          recipes and recipe append files regardless how they are named) prefixed
          with ``libgal`` in ``recipes-graphics/``. That is, provided your layers
          are available at ``/build/layers/``, it'll match::
 
-            /builds/layers/meta-ti/recipes-graphics/libgal.bb
-            /builds/layers/meta-ti/recipes-graphics/libgal_%.bbappend
-            /builds/layers/meta-ti/recipes-graphics/libgal-foo/foo.bb
-            /builds/layers/meta-ti/recipes-graphics/libgal-foo/foo/bz.bbappend
-            /builds/layers/meta-ti/recipes-graphics/libgal/bar.bb
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal.bb
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal_%.bbappend
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal-foo/foo.bb
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal-foo/foo/bz.bbappend
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal/bar.bb
 
       .. note::
 
@@ -1112,7 +1112,7 @@  overview of their function and contents.
          ``recipes-graphics/libgal/``, meaning (considering your layers are
          available at ``/builds/layers/``)::
 
-            /builds/layers/meta-ti/recipes-graphics/libgal/
+            /builds/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal/
             /builds/layers/my-layer/foo-recipes-graphics/libgal/
 
          will be both matched. This may be a more relaxed way of matching