@@ -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