diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-03 12:31:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-03 12:34:42 +0000 |
commit | 57239d66b933c4313cf331d35d13ec2d0661c38f (patch) | |
tree | ceb4009044dd951445b7f1b55629be3cf45804e5 | |
parent | 3b27f6356a3bf0138da0c3dcd87aa8e4a93ae56b (diff) | |
download | openembedded-core-57239d66b933c4313cf331d35d13ec2d0661c38f.tar.gz |
layer.conf: Update to use mickledore as the layer series name
OE-Core has changes which do need careful evaluation for compatibilty,
such as the addpylib directive. Move the core later names to mickledore
so layers can mark their compatibility as such.
Also increase the version number for core. If we do make further changes
that need layer changes, we'll update the version again so layers can mark
compatibility within the series.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-selftest/conf/layer.conf | 2 | ||||
-rw-r--r-- | meta-skeleton/conf/layer.conf | 2 | ||||
-rw-r--r-- | meta/conf/layer.conf | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/meta-selftest/conf/layer.conf b/meta-selftest/conf/layer.conf index 889c056eb6..2eeea0444b 100644 --- a/meta-selftest/conf/layer.conf +++ b/meta-selftest/conf/layer.conf @@ -11,4 +11,4 @@ BBFILE_PRIORITY_selftest = "5" addpylib ${LAYERDIR}/lib oeqa -LAYERSERIES_COMPAT_selftest = "kirkstone langdale" +LAYERSERIES_COMPAT_selftest = "mickledore" diff --git a/meta-skeleton/conf/layer.conf b/meta-skeleton/conf/layer.conf index 1704a753a0..564ae26501 100644 --- a/meta-skeleton/conf/layer.conf +++ b/meta-skeleton/conf/layer.conf @@ -14,4 +14,4 @@ LAYERVERSION_skeleton = "1" LAYERDEPENDS_skeleton = "core" -LAYERSERIES_COMPAT_skeleton = "kirkstone langdale" +LAYERSERIES_COMPAT_skeleton = "mickledore" diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index e41ada5d35..948ded667e 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -7,12 +7,12 @@ BBFILE_COLLECTIONS += "core" BBFILE_PATTERN_core = "^${LAYERDIR}/" BBFILE_PRIORITY_core = "5" -LAYERSERIES_CORENAMES = "langdale" +LAYERSERIES_CORENAMES = "mickledore" # This should only be incremented on significant changes that will # cause compatibility issues with other layers -LAYERVERSION_core = "14" -LAYERSERIES_COMPAT_core = "kirkstone langdale" +LAYERVERSION_core = "15" +LAYERSERIES_COMPAT_core = "mickledore" BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core" |