Date
1 - 5 of 5
overwrite LAYERSERIES_COMPAT_ for different layer
TRO
Hi,
have an issue with a layer which doesn't have the current dunfell release in it's LAYERSERIES_COMPAT_ -> can I overwrite it somehow in a different layer or local.conf? -> can I configure the error "...is not compatible with the core layer..." to a warning? cheers, Thomas
|
|
Martin Jansa
You can add a layer which will set LAYERSERIES_COMPAT for another layer, but it needs to be parsed before the layer you want to change, e.g.: it's useful to use this layer also to implement whatever modifications are needed to make the layer to be actually compatible with the release you're using, like:
On Mon, May 25, 2020 at 1:17 PM TRO <thomas.roos@...> wrote: Hi,
|
|
Quentin Schulz
On Mon, May 25, 2020 at 03:10:39PM +0200, Martin Jansa wrote:
You can add a layer which will set LAYERSERIES_COMPAT for another layer,FWIW, you could make the parsing order not matter (at least in thud, from a quick look, master as well). LAYERSERIES_COMPAT is resolved after all layer.conf have been parsed[1]. I do not know if it's on purpose or not, meaning it could well disappear in the near future. So you could override it from anywhere by using __append but it has to be done before or during the conf/layer.conf parsing. This also makes it future proof wrt layer priorities and how LAYERSERIES_COMPAT is set (+=, =, ?= ?). I personally have it in conf/bblayers.conf (for some reason we "ship" this one, though it's not best practice IIRC). [1] https://git.yoctoproject.org/cgit.cgi/poky/tree/bitbake/lib/bb/cookerdata.py?h=thud#n399 Cheers, Quentin
|
|
TRO
Hi,
|
|
Denys Dmytriyenko
On Mon, May 25, 2020 at 03:28:52PM +0200, Quentin Schulz wrote:
On Mon, May 25, 2020 at 03:10:39PM +0200, Martin Jansa wrote:Also not recommended, you can put this in your conf/bblayers.conf:You can add a layer which will set LAYERSERIES_COMPAT for another layer,FWIW, you could make the parsing order not matter (at least in thud, OVERRIDES = "iamgroot" LAYERSERIES_COMPAT_browser-layer_iamgroot = "zeus" -- Denys
|
|