diff mbox series

layers: Add langdale to LAYERSERIES_COMPAT

Message ID 20220929234100.3608904-1-raj.khem@gmail.com
State New
Headers show
Series layers: Add langdale to LAYERSERIES_COMPAT | expand

Commit Message

Khem Raj Sept. 29, 2022, 11:41 p.m. UTC
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-arm-bsp/conf/layer.conf       | 2 +-
 meta-arm-toolchain/conf/layer.conf | 2 +-
 meta-arm/conf/layer.conf           | 2 +-
 meta-atp/conf/layer.conf           | 2 +-
 meta-gem5/conf/layer.conf          | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

Comments

Ross Burton Sept. 30, 2022, 10:03 a.m. UTC | #1
I was dithering over whether we should support kirkstone in master or not (see Jon’s patch which removes kirkstone), so I thought I’d actually try it.

Turns out master hasn’t worked with kirkstone for a long time.

Hopefully post-release oe-core master will get the new name quickly, so we can change meta-arm and we don’t have this last minute breakage.

Ross

> On 30 Sep 2022, at 00:41, Khem Raj via lists.yoctoproject.org <raj.khem=gmail.com@lists.yoctoproject.org> wrote:
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> meta-arm-bsp/conf/layer.conf       | 2 +-
> meta-arm-toolchain/conf/layer.conf | 2 +-
> meta-arm/conf/layer.conf           | 2 +-
> meta-atp/conf/layer.conf           | 2 +-
> meta-gem5/conf/layer.conf          | 2 +-
> 5 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/meta-arm-bsp/conf/layer.conf b/meta-arm-bsp/conf/layer.conf
> index a1e22c0..236d9a5 100644
> --- a/meta-arm-bsp/conf/layer.conf
> +++ b/meta-arm-bsp/conf/layer.conf
> @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-arm-bsp"
> BBFILE_PATTERN_meta-arm-bsp = "^${LAYERDIR}/"
> BBFILE_PRIORITY_meta-arm-bsp = "5"
> 
> -LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone"
> +LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone langdale"
> 
> LAYERDEPENDS_meta-arm-bsp = "core meta-arm"
> # This won't be used by layerindex-fetch, but works everywhere else
> diff --git a/meta-arm-toolchain/conf/layer.conf b/meta-arm-toolchain/conf/layer.conf
> index 3cb8b06..935eb62 100644
> --- a/meta-arm-toolchain/conf/layer.conf
> +++ b/meta-arm-toolchain/conf/layer.conf
> @@ -9,4 +9,4 @@ BBFILE_PATTERN_arm-toolchain := "^${LAYERDIR}/"
> BBFILE_PRIORITY_arm-toolchain = "5"
> 
> LAYERDEPENDS_arm-toolchain = "core"
> -LAYERSERIES_COMPAT_arm-toolchain = "kirkstone"
> +LAYERSERIES_COMPAT_arm-toolchain = "kirkstone langdale"
> diff --git a/meta-arm/conf/layer.conf b/meta-arm/conf/layer.conf
> index c23ea56..4b3161e 100644
> --- a/meta-arm/conf/layer.conf
> +++ b/meta-arm/conf/layer.conf
> @@ -13,7 +13,7 @@ LAYERDEPENDS_meta-arm = " \
>     core \
>     arm-toolchain \
> "
> -LAYERSERIES_COMPAT_meta-arm = "kirkstone"
> +LAYERSERIES_COMPAT_meta-arm = "kirkstone langdale"
> 
> # runfvp --console needs telnet, so pull this in for testimage.
> HOSTTOOLS_NONFATAL += "telnet"
> diff --git a/meta-atp/conf/layer.conf b/meta-atp/conf/layer.conf
> index 3ec36e8..043d601 100644
> --- a/meta-atp/conf/layer.conf
> +++ b/meta-atp/conf/layer.conf
> @@ -6,4 +6,4 @@ BBFILE_COLLECTIONS += "meta-atp"
> BBFILE_PATTERN_meta-atp = "^${LAYERDIR}/"
> 
> LAYERDEPENDS_meta-atp = "core openembedded-layer meta-gem5"
> -LAYERSERIES_COMPAT_meta-atp = "kirkstone"
> +LAYERSERIES_COMPAT_meta-atp = "kirkstone langdale"
> diff --git a/meta-gem5/conf/layer.conf b/meta-gem5/conf/layer.conf
> index d329bd0..3802b43 100644
> --- a/meta-gem5/conf/layer.conf
> +++ b/meta-gem5/conf/layer.conf
> @@ -10,7 +10,7 @@ BBFILE_PATTERN_meta-gem5 = "^${LAYERDIR}/"
> BBFILE_PRIORITY_meta-gem5 = "5"
> 
> LAYERDEPENDS_meta-gem5 = "core openembedded-layer meta-arm"
> -LAYERSERIES_COMPAT_meta-gem5 = "kirkstone"
> +LAYERSERIES_COMPAT_meta-gem5 = "kirkstone langdale"
> 
> BBFILES_DYNAMIC += " \
>     virtualization-layer:${LAYERDIR}/dynamic-layers/meta-virtualization/*/*/*.bbappend \
> -- 
> 2.37.3
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#3879): https://lists.yoctoproject.org/g/meta-arm/message/3879
> Mute This Topic: https://lists.yoctoproject.org/mt/94006911/6875888
> Group Owner: meta-arm+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arm/unsub [ross.burton@arm.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
Khem Raj Sept. 30, 2022, 4:05 p.m. UTC | #2
On Fri, Sep 30, 2022 at 3:03 AM Ross Burton <Ross.Burton@arm.com> wrote:

> I was dithering over whether we should support kirkstone in master or not
> (see Jon’s patch which removes kirkstone), so I thought I’d actually try it.
>
> Turns out master hasn’t worked with kirkstone for a long time.
>
> Hopefully post-release oe-core master will get the new name quickly, so we
> can change meta-arm and we don’t have this last minute breakage.


Yeah I think the core should Perhaps warn for few weeks ahead of time to
let layers catch up with needed changes before making it a hard error


>
> Ross
>
> > On 30 Sep 2022, at 00:41, Khem Raj via lists.yoctoproject.org <raj.khem=
> gmail.com@lists.yoctoproject.org> wrote:
> >
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> > meta-arm-bsp/conf/layer.conf       | 2 +-
> > meta-arm-toolchain/conf/layer.conf | 2 +-
> > meta-arm/conf/layer.conf           | 2 +-
> > meta-atp/conf/layer.conf           | 2 +-
> > meta-gem5/conf/layer.conf          | 2 +-
> > 5 files changed, 5 insertions(+), 5 deletions(-)
> >
> > diff --git a/meta-arm-bsp/conf/layer.conf b/meta-arm-bsp/conf/layer.conf
> > index a1e22c0..236d9a5 100644
> > --- a/meta-arm-bsp/conf/layer.conf
> > +++ b/meta-arm-bsp/conf/layer.conf
> > @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-arm-bsp"
> > BBFILE_PATTERN_meta-arm-bsp = "^${LAYERDIR}/"
> > BBFILE_PRIORITY_meta-arm-bsp = "5"
> >
> > -LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone"
> > +LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone langdale"
> >
> > LAYERDEPENDS_meta-arm-bsp = "core meta-arm"
> > # This won't be used by layerindex-fetch, but works everywhere else
> > diff --git a/meta-arm-toolchain/conf/layer.conf
> b/meta-arm-toolchain/conf/layer.conf
> > index 3cb8b06..935eb62 100644
> > --- a/meta-arm-toolchain/conf/layer.conf
> > +++ b/meta-arm-toolchain/conf/layer.conf
> > @@ -9,4 +9,4 @@ BBFILE_PATTERN_arm-toolchain := "^${LAYERDIR}/"
> > BBFILE_PRIORITY_arm-toolchain = "5"
> >
> > LAYERDEPENDS_arm-toolchain = "core"
> > -LAYERSERIES_COMPAT_arm-toolchain = "kirkstone"
> > +LAYERSERIES_COMPAT_arm-toolchain = "kirkstone langdale"
> > diff --git a/meta-arm/conf/layer.conf b/meta-arm/conf/layer.conf
> > index c23ea56..4b3161e 100644
> > --- a/meta-arm/conf/layer.conf
> > +++ b/meta-arm/conf/layer.conf
> > @@ -13,7 +13,7 @@ LAYERDEPENDS_meta-arm = " \
> >     core \
> >     arm-toolchain \
> > "
> > -LAYERSERIES_COMPAT_meta-arm = "kirkstone"
> > +LAYERSERIES_COMPAT_meta-arm = "kirkstone langdale"
> >
> > # runfvp --console needs telnet, so pull this in for testimage.
> > HOSTTOOLS_NONFATAL += "telnet"
> > diff --git a/meta-atp/conf/layer.conf b/meta-atp/conf/layer.conf
> > index 3ec36e8..043d601 100644
> > --- a/meta-atp/conf/layer.conf
> > +++ b/meta-atp/conf/layer.conf
> > @@ -6,4 +6,4 @@ BBFILE_COLLECTIONS += "meta-atp"
> > BBFILE_PATTERN_meta-atp = "^${LAYERDIR}/"
> >
> > LAYERDEPENDS_meta-atp = "core openembedded-layer meta-gem5"
> > -LAYERSERIES_COMPAT_meta-atp = "kirkstone"
> > +LAYERSERIES_COMPAT_meta-atp = "kirkstone langdale"
> > diff --git a/meta-gem5/conf/layer.conf b/meta-gem5/conf/layer.conf
> > index d329bd0..3802b43 100644
> > --- a/meta-gem5/conf/layer.conf
> > +++ b/meta-gem5/conf/layer.conf
> > @@ -10,7 +10,7 @@ BBFILE_PATTERN_meta-gem5 = "^${LAYERDIR}/"
> > BBFILE_PRIORITY_meta-gem5 = "5"
> >
> > LAYERDEPENDS_meta-gem5 = "core openembedded-layer meta-arm"
> > -LAYERSERIES_COMPAT_meta-gem5 = "kirkstone"
> > +LAYERSERIES_COMPAT_meta-gem5 = "kirkstone langdale"
> >
> > BBFILES_DYNAMIC += " \
> >
>  virtualization-layer:${LAYERDIR}/dynamic-layers/meta-virtualization/*/*/*.bbappend
> \
> > --
> > 2.37.3
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#3879):
> https://lists.yoctoproject.org/g/meta-arm/message/3879
> > Mute This Topic: https://lists.yoctoproject.org/mt/94006911/6875888
> > Group Owner: meta-arm+owner@lists.yoctoproject.org
> > Unsubscribe: https://lists.yoctoproject.org/g/meta-arm/unsub [
> ross.burton@arm.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>
>
diff mbox series

Patch

diff --git a/meta-arm-bsp/conf/layer.conf b/meta-arm-bsp/conf/layer.conf
index a1e22c0..236d9a5 100644
--- a/meta-arm-bsp/conf/layer.conf
+++ b/meta-arm-bsp/conf/layer.conf
@@ -9,7 +9,7 @@  BBFILE_COLLECTIONS += "meta-arm-bsp"
 BBFILE_PATTERN_meta-arm-bsp = "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-arm-bsp = "5"
 
-LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone"
+LAYERSERIES_COMPAT_meta-arm-bsp = "kirkstone langdale"
 
 LAYERDEPENDS_meta-arm-bsp = "core meta-arm"
 # This won't be used by layerindex-fetch, but works everywhere else
diff --git a/meta-arm-toolchain/conf/layer.conf b/meta-arm-toolchain/conf/layer.conf
index 3cb8b06..935eb62 100644
--- a/meta-arm-toolchain/conf/layer.conf
+++ b/meta-arm-toolchain/conf/layer.conf
@@ -9,4 +9,4 @@  BBFILE_PATTERN_arm-toolchain := "^${LAYERDIR}/"
 BBFILE_PRIORITY_arm-toolchain = "5"
 
 LAYERDEPENDS_arm-toolchain = "core"
-LAYERSERIES_COMPAT_arm-toolchain = "kirkstone"
+LAYERSERIES_COMPAT_arm-toolchain = "kirkstone langdale"
diff --git a/meta-arm/conf/layer.conf b/meta-arm/conf/layer.conf
index c23ea56..4b3161e 100644
--- a/meta-arm/conf/layer.conf
+++ b/meta-arm/conf/layer.conf
@@ -13,7 +13,7 @@  LAYERDEPENDS_meta-arm = " \
     core \
     arm-toolchain \
 "
-LAYERSERIES_COMPAT_meta-arm = "kirkstone"
+LAYERSERIES_COMPAT_meta-arm = "kirkstone langdale"
 
 # runfvp --console needs telnet, so pull this in for testimage.
 HOSTTOOLS_NONFATAL += "telnet"
diff --git a/meta-atp/conf/layer.conf b/meta-atp/conf/layer.conf
index 3ec36e8..043d601 100644
--- a/meta-atp/conf/layer.conf
+++ b/meta-atp/conf/layer.conf
@@ -6,4 +6,4 @@  BBFILE_COLLECTIONS += "meta-atp"
 BBFILE_PATTERN_meta-atp = "^${LAYERDIR}/"
 
 LAYERDEPENDS_meta-atp = "core openembedded-layer meta-gem5"
-LAYERSERIES_COMPAT_meta-atp = "kirkstone"
+LAYERSERIES_COMPAT_meta-atp = "kirkstone langdale"
diff --git a/meta-gem5/conf/layer.conf b/meta-gem5/conf/layer.conf
index d329bd0..3802b43 100644
--- a/meta-gem5/conf/layer.conf
+++ b/meta-gem5/conf/layer.conf
@@ -10,7 +10,7 @@  BBFILE_PATTERN_meta-gem5 = "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-gem5 = "5"
 
 LAYERDEPENDS_meta-gem5 = "core openembedded-layer meta-arm"
-LAYERSERIES_COMPAT_meta-gem5 = "kirkstone"
+LAYERSERIES_COMPAT_meta-gem5 = "kirkstone langdale"
 
 BBFILES_DYNAMIC += " \
     virtualization-layer:${LAYERDIR}/dynamic-layers/meta-virtualization/*/*/*.bbappend \