| Message ID | 20251113181157.410053-2-corentin.guillevic@smile.fr |
|---|---|
| State | New |
| Headers | show |
| Series | [1/2] insane.bbclass: check revision for every git URI | expand |
Perhaps this could be a warning by default in insane class and meta-poky could upgrade it via WARN_TO_ERROR_QA? Peter > -----Original Message----- > From: openembedded-core@lists.openembedded.org <openembedded- > core@lists.openembedded.org> On Behalf Of Corentin Guillevic via > lists.openembedded.org > Sent: Thursday, November 13, 2025 19:12 > To: openembedded-core@lists.openembedded.org > Cc: Corentin Guillevic <corentin.guillevic@smile.fr> > Subject: [OE-core] [PATCH 2/2] layer.conf: enable test for revision alongside a git > URI > > As meta is the main layer, its recipes should fully comply with revisions > for git URIs. Enable the check for this layer only. > > Signed-off-by: Corentin Guillevic <corentin.guillevic@smile.fr> > --- > meta/conf/layer.conf | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf > index ba25ca3029..1f95867165 100644 > --- a/meta/conf/layer.conf > +++ b/meta/conf/layer.conf > @@ -19,6 +19,9 @@ BBLAYERS_LAYERINDEX_NAME_core = "openembedded- > core" > # Set a variable to get to the top of the metadata location > COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' > > +# Raise an error if no revision is provided with a git URI > +ERROR_QA:append:layer-core = " missing-srcrev" > + > # opkg-utils is for update-alternatives :( > SIGGEN_EXCLUDERECIPES_ABISAFE += " \ > sysvinit-inittab \ > -- > 2.49.0
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index ba25ca3029..1f95867165 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -19,6 +19,9 @@ BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core" # Set a variable to get to the top of the metadata location COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' +# Raise an error if no revision is provided with a git URI +ERROR_QA:append:layer-core = " missing-srcrev" + # opkg-utils is for update-alternatives :( SIGGEN_EXCLUDERECIPES_ABISAFE += " \ sysvinit-inittab \
As meta is the main layer, its recipes should fully comply with revisions for git URIs. Enable the check for this layer only. Signed-off-by: Corentin Guillevic <corentin.guillevic@smile.fr> --- meta/conf/layer.conf | 3 +++ 1 file changed, 3 insertions(+)