Re: Private: Re: [yocto] Private: Re: [yocto] Scope of the build parameters #systemd

2022-11-03 Thread Josef Holzmayr
Again re-adding list On Thu, Nov 3, 2022 at 10:40 PM martin.leduc via lists.yoctoproject.org wrote: > Per example, in poky/meta... I found the core-image-minimal.bb (bitbake > core-image-minimal), pulling on the core-image.bbclass, pulling on > images.bbclass by using the inherit keyword. >

Re: Private: Re: [yocto] Scope of the build parameters #systemd

2022-11-03 Thread Josef Holzmayr
Re-adding list, as I think this is valid information for all Yocto users. On Thu, Nov 3, 2022 at 10:24 PM martin.leduc via lists.yoctoproject.org wrote: > Ok, I get that. If DISTRO_FEATURES is settable only into local.conf, what > are the other variables valid into the local.conf only? No,

Re: [yocto] Scope of the build parameters #systemd

2022-11-03 Thread Josef Holzmayr
Hi Martin, its Yocto chant #1: "Recipe data is local, configuration data is global." Means: whatever happens in a recipe, other recipes can't see it. Whatever happens in a configuration file (local, machine, distro), it is visible everywhere. An image is just a recipe, in the end - so whatever

[yocto] Scope of the build parameters #systemd

2022-11-03 Thread Martin Leduc via lists.yoctoproject.org
Hi everyone, I'm wondering how to figure out the scope of a set of parameters.  Example.  I have an Image (my-core-image-minimal.bb) recipe containing the following parameters > > > ### > # systemd # > ### > inherit s ystemd > DISTRO_FEATURES_append = " systemd " >