All of lore.kernel.org
 help / color / mirror / Atom feed
* [master][PATCH] layer.conf: add hardknott to compatible release branches
@ 2021-03-19 20:07 Denys Dmytriyenko
  0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2021-03-19 20:07 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys Dmytriyenko, Khem Raj

From: Denys Dmytriyenko <denys@konsulko.com>

While at it, remove old releases before dunfell.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
 conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 2393e61..3bed9fc 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-ti"
 BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-ti = "6"
 
-LAYERSERIES_COMPAT_meta-ti = "sumo thud warrior zeus dunfell gatesgarth"
+LAYERSERIES_COMPAT_meta-ti = "dunfell gatesgarth hardknott"
 
 LICENSE_PATH += "${LAYERDIR}/licenses"
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [master][PATCH] layer.conf: Add hardknott to compatible release branches
@ 2021-03-23 14:51 Nishanth Menon
  2021-03-23 15:49 ` Bajjuri, Praneeth
  2021-03-23 16:42 ` Denys Dmytriyenko
  0 siblings, 2 replies; 6+ messages in thread
From: Nishanth Menon @ 2021-03-23 14:51 UTC (permalink / raw)
  To: denis, praneeth; +Cc: meta-arago

This follows commit cfe3f78 ("layer.conf: add hardknott to compatible
release branches") from meta-ti.

While we are at it, remove old releases before dunfell as we no longer
support the build of such configurations.

Signed-off-by: Nishanth Menon <nm@ti.com>
---

WARNING: there is a bunch of work to do to move to gatesgarth /
hardknott .. https://pastebin.ubuntu.com/p/kKCqXvnDKf/

but this allows us to get started, I think.

 meta-arago-distro/conf/layer.conf | 2 +-
 meta-arago-extras/conf/layer.conf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/conf/layer.conf b/meta-arago-distro/conf/layer.conf
index 2931bf9daf4a..1fa61207fe01 100644
--- a/meta-arago-distro/conf/layer.conf
+++ b/meta-arago-distro/conf/layer.conf
@@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-distro"
 BBFILE_PATTERN_meta-arago-distro := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-arago-distro = "10"
 
-LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
+LAYERSERIES_COMPAT_meta-arago-distro = "dunfell gatesgarth hardknott"
 
 LAYERDEPENDS_meta-arago-distro = " \
     core \
diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf
index 7e3081b20ba8..d64a80f8890f 100644
--- a/meta-arago-extras/conf/layer.conf
+++ b/meta-arago-extras/conf/layer.conf
@@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-extras"
 BBFILE_PATTERN_meta-arago-extras := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-arago-extras = "10"
 
-LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
+LAYERSERIES_COMPAT_meta-arago-extras = "dunfell gatesgarth hardknott"
 
 # Set a variable to get to the top of the metadata location
 ARAGOBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
-- 
2.31.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [master][PATCH] layer.conf: Add hardknott to compatible release branches
  2021-03-23 14:51 [master][PATCH] layer.conf: Add hardknott to compatible release branches Nishanth Menon
@ 2021-03-23 15:49 ` Bajjuri, Praneeth
  2021-03-23 16:42 ` Denys Dmytriyenko
  1 sibling, 0 replies; 6+ messages in thread
From: Bajjuri, Praneeth @ 2021-03-23 15:49 UTC (permalink / raw)
  To: Nishanth Menon, denis; +Cc: meta-arago



On 3/23/2021 9:51 AM, Nishanth Menon wrote:
> This follows commit cfe3f78 ("layer.conf: add hardknott to compatible
> release branches") from meta-ti.
> 
> While we are at it, remove old releases before dunfell as we no longer
> support the build of such configurations.

Thanks for the fix. looks good to me.

I will make a similar cleanup fix for dunfell branch from meta-ti

--- a/meta-arago-distro/conf/layer.conf
+++ b/meta-arago-distro/conf/layer.conf

-LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
+LAYERSERIES_COMPAT_meta-arago-distro = "dunfell"

--- a/meta-arago-extras/conf/layer.conf
+++ b/meta-arago-extras/conf/layer.conf


-LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
+LAYERSERIES_COMPAT_meta-arago-extras = "dunfell"

> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
> 
> WARNING: there is a bunch of work to do to move to gatesgarth /
> hardknott .. https://pastebin.ubuntu.com/p/kKCqXvnDKf/
> 
> but this allows us to get started, I think.
> 
>   meta-arago-distro/conf/layer.conf | 2 +-
>   meta-arago-extras/conf/layer.conf | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-arago-distro/conf/layer.conf b/meta-arago-distro/conf/layer.conf
> index 2931bf9daf4a..1fa61207fe01 100644
> --- a/meta-arago-distro/conf/layer.conf
> +++ b/meta-arago-distro/conf/layer.conf
> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-distro"
>   BBFILE_PATTERN_meta-arago-distro := "^${LAYERDIR}/"
>   BBFILE_PRIORITY_meta-arago-distro = "10"
>   
> -LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
> +LAYERSERIES_COMPAT_meta-arago-distro = "dunfell gatesgarth hardknott"
>   
>   LAYERDEPENDS_meta-arago-distro = " \
>       core \
> diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf
> index 7e3081b20ba8..d64a80f8890f 100644
> --- a/meta-arago-extras/conf/layer.conf
> +++ b/meta-arago-extras/conf/layer.conf
> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-extras"
>   BBFILE_PATTERN_meta-arago-extras := "^${LAYERDIR}/"
>   BBFILE_PRIORITY_meta-arago-extras = "10"
>   
> -LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
> +LAYERSERIES_COMPAT_meta-arago-extras = "dunfell gatesgarth hardknott"
>   
>   # Set a variable to get to the top of the metadata location
>   ARAGOBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [master][PATCH] layer.conf: Add hardknott to compatible release branches
  2021-03-23 14:51 [master][PATCH] layer.conf: Add hardknott to compatible release branches Nishanth Menon
  2021-03-23 15:49 ` Bajjuri, Praneeth
@ 2021-03-23 16:42 ` Denys Dmytriyenko
  2021-04-03  2:14   ` Denys Dmytriyenko
  1 sibling, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2021-03-23 16:42 UTC (permalink / raw)
  To: Nishanth Menon; +Cc: meta-arago

On Tue, Mar 23, 2021 at 09:51:33AM -0500, Nishanth Menon wrote:
> This follows commit cfe3f78 ("layer.conf: add hardknott to compatible
> release branches") from meta-ti.
> 
> While we are at it, remove old releases before dunfell as we no longer
> support the build of such configurations.
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
> 
> WARNING: there is a bunch of work to do to move to gatesgarth /
> hardknott .. https://pastebin.ubuntu.com/p/kKCqXvnDKf/
> 
> but this allows us to get started, I think.

Well, it's kind of premature to mark meta-arago as compatible yet...
Unlike meta-ti, which by itself builds fine with latest releases up to 
master, meta-arago is rather dunfell-specific, unfortunately.

Let me dust off my arago/master tree - I had bunch of fixes lined up there.


>  meta-arago-distro/conf/layer.conf | 2 +-
>  meta-arago-extras/conf/layer.conf | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-arago-distro/conf/layer.conf b/meta-arago-distro/conf/layer.conf
> index 2931bf9daf4a..1fa61207fe01 100644
> --- a/meta-arago-distro/conf/layer.conf
> +++ b/meta-arago-distro/conf/layer.conf
> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-distro"
>  BBFILE_PATTERN_meta-arago-distro := "^${LAYERDIR}/"
>  BBFILE_PRIORITY_meta-arago-distro = "10"
>  
> -LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
> +LAYERSERIES_COMPAT_meta-arago-distro = "dunfell gatesgarth hardknott"
>  
>  LAYERDEPENDS_meta-arago-distro = " \
>      core \
> diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf
> index 7e3081b20ba8..d64a80f8890f 100644
> --- a/meta-arago-extras/conf/layer.conf
> +++ b/meta-arago-extras/conf/layer.conf
> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-extras"
>  BBFILE_PATTERN_meta-arago-extras := "^${LAYERDIR}/"
>  BBFILE_PRIORITY_meta-arago-extras = "10"
>  
> -LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
> +LAYERSERIES_COMPAT_meta-arago-extras = "dunfell gatesgarth hardknott"
>  
>  # Set a variable to get to the top of the metadata location
>  ARAGOBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
> -- 
> 2.31.0
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [master][PATCH] layer.conf: Add hardknott to compatible release branches
  2021-03-23 16:42 ` Denys Dmytriyenko
@ 2021-04-03  2:14   ` Denys Dmytriyenko
  2021-04-12  3:25     ` Praneeth Bajjuri
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2021-04-03  2:14 UTC (permalink / raw)
  To: Nishanth Menon; +Cc: meta-arago

On Tue, Mar 23, 2021 at 12:42:43PM -0400, Denys Dmytriyenko wrote:
> On Tue, Mar 23, 2021 at 09:51:33AM -0500, Nishanth Menon wrote:
> > This follows commit cfe3f78 ("layer.conf: add hardknott to compatible
> > release branches") from meta-ti.
> > 
> > While we are at it, remove old releases before dunfell as we no longer
> > support the build of such configurations.
> > 
> > Signed-off-by: Nishanth Menon <nm@ti.com>
> > ---
> > 
> > WARNING: there is a bunch of work to do to move to gatesgarth /
> > hardknott .. https://pastebin.ubuntu.com/p/kKCqXvnDKf/
> > 
> > but this allows us to get started, I think.
> 
> Well, it's kind of premature to mark meta-arago as compatible yet...
> Unlike meta-ti, which by itself builds fine with latest releases up to 
> master, meta-arago is rather dunfell-specific, unfortunately.
> 
> Let me dust off my arago/master tree - I had bunch of fixes lined up there.

This can now be pulled in along with my fixes for meta-ti/meta-arago.


> >  meta-arago-distro/conf/layer.conf | 2 +-
> >  meta-arago-extras/conf/layer.conf | 2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/meta-arago-distro/conf/layer.conf b/meta-arago-distro/conf/layer.conf
> > index 2931bf9daf4a..1fa61207fe01 100644
> > --- a/meta-arago-distro/conf/layer.conf
> > +++ b/meta-arago-distro/conf/layer.conf
> > @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-distro"
> >  BBFILE_PATTERN_meta-arago-distro := "^${LAYERDIR}/"
> >  BBFILE_PRIORITY_meta-arago-distro = "10"
> >  
> > -LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
> > +LAYERSERIES_COMPAT_meta-arago-distro = "dunfell gatesgarth hardknott"
> >  
> >  LAYERDEPENDS_meta-arago-distro = " \
> >      core \
> > diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf
> > index 7e3081b20ba8..d64a80f8890f 100644
> > --- a/meta-arago-extras/conf/layer.conf
> > +++ b/meta-arago-extras/conf/layer.conf
> > @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-extras"
> >  BBFILE_PATTERN_meta-arago-extras := "^${LAYERDIR}/"
> >  BBFILE_PRIORITY_meta-arago-extras = "10"
> >  
> > -LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
> > +LAYERSERIES_COMPAT_meta-arago-extras = "dunfell gatesgarth hardknott"
> >  
> >  # Set a variable to get to the top of the metadata location
> >  ARAGOBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
> > -- 
> > 2.31.0
> > 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [master][PATCH] layer.conf: Add hardknott to compatible release branches
  2021-04-03  2:14   ` Denys Dmytriyenko
@ 2021-04-12  3:25     ` Praneeth Bajjuri
  0 siblings, 0 replies; 6+ messages in thread
From: Praneeth Bajjuri @ 2021-04-12  3:25 UTC (permalink / raw)
  To: Denys Dmytriyenko, Menon, Nishanth; +Cc: meta-arago@arago-project.org



On 4/2/21 9:14 PM, Denys Dmytriyenko wrote:
> On Tue, Mar 23, 2021 at 12:42:43PM -0400, Denys Dmytriyenko wrote:
>> On Tue, Mar 23, 2021 at 09:51:33AM -0500, Nishanth Menon wrote:
>>> This follows commit cfe3f78 ("layer.conf: add hardknott to compatible
>>> release branches") from meta-ti.
>>>
>>> While we are at it, remove old releases before dunfell as we no longer
>>> support the build of such configurations.
>>>
>>> Signed-off-by: Nishanth Menon <nm@ti.com>
>>> ---
>>>
>>> WARNING: there is a bunch of work to do to move to gatesgarth /
>>> hardknott .. https://pastebin.ubuntu.com/p/kKCqXvnDKf/
>>>
>>> but this allows us to get started, I think.
>>
>> Well, it's kind of premature to mark meta-arago as compatible yet...
>> Unlike meta-ti, which by itself builds fine with latest releases up to
>> master, meta-arago is rather dunfell-specific, unfortunately.
>>
>> Let me dust off my arago/master tree - I had bunch of fixes lined up there.
> 
> This can now be pulled in along with my fixes for meta-ti/meta-arago.

merged to master

> 
> 
>>>   meta-arago-distro/conf/layer.conf | 2 +-
>>>   meta-arago-extras/conf/layer.conf | 2 +-
>>>   2 files changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/meta-arago-distro/conf/layer.conf b/meta-arago-distro/conf/layer.conf
>>> index 2931bf9daf4a..1fa61207fe01 100644
>>> --- a/meta-arago-distro/conf/layer.conf
>>> +++ b/meta-arago-distro/conf/layer.conf
>>> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-distro"
>>>   BBFILE_PATTERN_meta-arago-distro := "^${LAYERDIR}/"
>>>   BBFILE_PRIORITY_meta-arago-distro = "10"
>>>   
>>> -LAYERSERIES_COMPAT_meta-arago-distro = "sumo thud warrior zeus dunfell"
>>> +LAYERSERIES_COMPAT_meta-arago-distro = "dunfell gatesgarth hardknott"
>>>   
>>>   LAYERDEPENDS_meta-arago-distro = " \
>>>       core \
>>> diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf
>>> index 7e3081b20ba8..d64a80f8890f 100644
>>> --- a/meta-arago-extras/conf/layer.conf
>>> +++ b/meta-arago-extras/conf/layer.conf
>>> @@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "meta-arago-extras"
>>>   BBFILE_PATTERN_meta-arago-extras := "^${LAYERDIR}/"
>>>   BBFILE_PRIORITY_meta-arago-extras = "10"
>>>   
>>> -LAYERSERIES_COMPAT_meta-arago-extras = "sumo thud warrior zeus dunfell"
>>> +LAYERSERIES_COMPAT_meta-arago-extras = "dunfell gatesgarth hardknott"
>>>   
>>>   # Set a variable to get to the top of the metadata location
>>>   ARAGOBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
>>> -- 
>>> 2.31.0
>>>
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-04-12  3:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-23 14:51 [master][PATCH] layer.conf: Add hardknott to compatible release branches Nishanth Menon
2021-03-23 15:49 ` Bajjuri, Praneeth
2021-03-23 16:42 ` Denys Dmytriyenko
2021-04-03  2:14   ` Denys Dmytriyenko
2021-04-12  3:25     ` Praneeth Bajjuri
  -- strict thread matches above, loose matches on Subject: below --
2021-03-19 20:07 [master][PATCH] layer.conf: add " Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.