From: "Antonin Godard" <antonin.godard@bootlin.com>
To: "Quentin Schulz" <quentin.schulz@cherry.de>, <foss@0leil.net>,
<bitbake-devel@lists.openembedded.org>
Cc: "Robert P. J. Day" <rpjday@crashcourse.ca>,
<docs@lists.yoctoproject.org>
Subject: Re: [docs] [PATCH v2 3/5] doc: bitbake-user-manual-ref-variables: expand and reorganize BBMASK explanations
Date: Tue, 17 Feb 2026 13:13:14 +0100 [thread overview]
Message-ID: <DGH87XLG5SVZ.V95TRWOPLP62@bootlin.com> (raw)
In-Reply-To: <8c7d0a2e-e7cd-46d8-8747-899703a31071@cherry.de>
Hi,
On Tue Feb 17, 2026 at 12:52 PM CET, Quentin Schulz wrote:
> Hi Antonin,
>
> On 2/17/26 11:18 AM, Antonin Godard wrote:
>> Hi,
>>
>> On Mon Feb 16, 2026 at 11:36 AM CET, Quentin Schulz via lists.yoctoproject.org wrote:
>>> From: Quentin Schulz <quentin.schulz@cherry.de>
>>>
>>> The documentation doesn't explain the side-effect of putting a leading
>>> slash, only the trailing slash.
>>>
>>> The leading slash is not for making the regular expression match an
>>> absolute path, but to force the match on the directory or file that
>>> exactly starts (and ends if there is a trailing slash) with the
>>> specified string. So let's explain that.
>>>
>>> This also explains that this doesn't prevent more than the intended path
>>> to be caught, specifically because it is NOT a regular expression
>>> matching an absolute path.
>>>
>>> Because any pattern not starting with a ^ character can match multiple
>>> directories from multiple directories, let's make the usage of
>>> BBFILE_PATTERN_my-layer the recommended one. Keep the rest as hints at
>>> what can happen when not using but reiterate what users should be using.
>>>
>>> Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
>>> Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
>>> ---
>>> .../bitbake-user-manual-ref-variables.rst | 87 +++++++++++++++++++---
>>> 1 file changed, 78 insertions(+), 9 deletions(-)
>>>
>>> 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 f20a9012c..06e1112b5 100644
>>> --- a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
>>> +++ b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
>>> @@ -1052,24 +1052,93 @@ 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)::
>>> + ``recipes-bsp`` directory (recursively) of ``meta-ti``::
>>>
>>> - BBMASK = "/meta-ti/recipes-misc/"
>>> + BBMASK = "${BBFILE_PATTERN_meta-ti}/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 += "/meta-ti/recipes-ti/packagegroup/"
>>> - BBMASK += "/meta-oe/recipes-support/"
>>> - BBMASK += "/meta-foo/.*/openldap"
>>> - BBMASK += "opencv.*\.bbappend"
>>> - BBMASK += "lzma"
>>> + BBMASK += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal/"
>>> + BBMASK += "${BBFILE_PATTERN_openembedded-layer}/recipes-support/"
>>> + BBMASK += "${BBFILE_PATTERN_openembedded-layer}/.*/openldap"
>>> + BBMASK += "${BBFILE_PATTERN_meta-ti}/.*/optee.*\.bbappend"
>>> +
>>> + This masks the ``recipes-graphics/libgal/`` from ``meta-ti``, 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.
>>
>> s/every append file/every append file starting with ``optee``/ ?
>>
>
> I'm going for:
>
> every append file whose name starts with ``optee`` in
>
> does that work for you?
Works for me!
>>> + ``optee/optee-examples_%.bbappend`` and
>>> + ``recipes-security/optee/optee-client_%.bbappend``).
>>>
>>> .. note::
>>>
>>> - When specifying a directory name, use the trailing slash character
>>> - to ensure you match just that directory name.
>>> + Because these are complete regular expressions, if you want to match a
>>> + directory and not a file, you must end the expression with a trailing
>>> + slash. That is::
>>> +
>>> + BBMASK += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal/"
>>> +
>>> + Will match anything under ``recipes-graphics/ligbal/`` directory of
>>> + ``meta-ti``. And::
>>> +
>>> + BBMASK += "${BBFILE_PATTERN_meta-ti}/recipes-graphics/libgal"
>>> +
>>> + Will match in ``meta-ti`` 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::
>>
>> s/build/builds/
>>
>
> Mmmm.. Now to come to think of it, should I use
>
> /bitbake-builds/poky-master-poky-distro_poky-machine_qemux86-64/layers/
I think the default name should be "poky-master" now (doc needs an update).
> instead? It would match the instructions in
> doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst (but
> it'll make for very long lines :/).
So /bitbake-builds/poky-master/layers/ is reasonable I think
Antonin
next prev parent reply other threads:[~2026-02-17 12:13 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-16 10:36 [PATCH v2 0/5] doc: bitbake-user-manual-ref-variables: clarify BBMASK examples Quentin Schulz
2026-02-16 10:36 ` [PATCH v2 1/5] doc: bitbake-user-manual-ref-variables: clarify BBMASK directory matching Quentin Schulz
2026-02-16 10:36 ` [PATCH v2 2/5] doc: bitbake-user-manual-ref-variables: have directory examples be consistent Quentin Schulz
2026-02-16 10:36 ` [PATCH v2 3/5] doc: bitbake-user-manual-ref-variables: expand and reorganize BBMASK explanations Quentin Schulz
2026-02-17 10:18 ` [docs] " Antonin Godard
2026-02-17 11:52 ` Quentin Schulz
2026-02-17 12:13 ` Antonin Godard [this message]
2026-02-16 10:36 ` [PATCH v2 4/5] doc: bitbake-user-manual-ref-variables: update BBMASK example with current meta-ti Quentin Schulz
2026-02-16 10:36 ` [PATCH v2 5/5] doc: bitbake-user-manual-ref-variables: update Python re doc link to HTTPS Quentin Schulz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DGH87XLG5SVZ.V95TRWOPLP62@bootlin.com \
--to=antonin.godard@bootlin.com \
--cc=bitbake-devel@lists.openembedded.org \
--cc=docs@lists.yoctoproject.org \
--cc=foss@0leil.net \
--cc=quentin.schulz@cherry.de \
--cc=rpjday@crashcourse.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox