diff mbox series

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

Message ID 20260217-bbmask-slashes-v3-4-6a02cde9fdab@cherry.de
State New
Headers show
Series doc: bitbake-user-manual-ref-variables: clarify BBMASK examples | expand

Commit Message

Quentin Schulz Feb. 17, 2026, 1:36 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          | 34 +++++++++++-----------
 1 file changed, 17 insertions(+), 17 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 2564a21a0..bab5252e9 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
@@ -1052,30 +1052,30 @@  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:
 
       - everything under the ``recipes-graphics/libgal/`` directory from
-        ``meta-ti``,
+        ``meta-ti-bsp``,
       - everything under the ``recipes-support/`` directory in ``meta-oe``,
       - everything under a directory whose name starts with ``openldap``, and
         every file with the same naming scheme, 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 whose name starts with ``optee`` in ``meta-ti`` at any
-        directory depth > 1 (e.g. ``optee/optee-examples_%.bbappend`` and
+      - every append file whose name starts with ``optee`` in ``meta-ti-bsp`` at
+        any directory depth > 1 (e.g. ``optee/optee-examples_%.bbappend`` and
         ``recipes-security/optee/optee-client_%.bbappend``).
 
       .. note::
@@ -1084,24 +1084,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 ``/bitbake-builds/poky-master/layers/``, it'll match::
 
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal.bb
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal_%.bbappend
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal-foo/foo.bb
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal-foo/foo/bz.bbappend
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal/bar.bb
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal.bb
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal_%.bbappend
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal-foo/foo.bb
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal-foo/foo/bz.bbappend
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal/bar.bb
 
       .. note::
 
@@ -1116,7 +1116,7 @@  overview of their function and contents.
          ``recipes-graphics/libgal/``, meaning (considering your layers are
          available at ``/bitbake-builds/poky-master/layers/``)::
 
-            /bitbake-builds/poky-master/layers/meta-ti/recipes-graphics/libgal/
+            /bitbake-builds/poky-master/layers/meta-ti/meta-ti-bsp/recipes-graphics/libgal/
             /bitbake-builds/poky-master/layers/my-layer/foo-recipes-graphics/libgal/
 
          will be both matched. This may be a more relaxed way of matching