poky.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] poky.conf: Switch to post release name/version
@ 2023-01-10 15:18 Peter Kjellerstedt
  2023-01-10 15:21 ` [poky] " Richard Purdie
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Kjellerstedt @ 2023-01-10 15:18 UTC (permalink / raw)
  To: poky

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta-poky/conf/distro/poky.conf | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
index dc0e8e76ab..a876ddde94 100644
--- a/meta-poky/conf/distro/poky.conf
+++ b/meta-poky/conf/distro/poky.conf
@@ -1,8 +1,7 @@
 DISTRO = "poky"
 DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
-#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
-DISTRO_VERSION = "4.1"
-DISTRO_CODENAME = "langdale"
+DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
+DISTRO_CODENAME = "mickledore"
 SDK_VENDOR = "-pokysdk"
 SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-${METADATA_REVISION}', 'snapshot')}"
 SDK_VERSION[vardepvalue] = "${SDK_VERSION}"

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

* Re: [poky] [PATCH] poky.conf: Switch to post release name/version
  2023-01-10 15:18 [PATCH] poky.conf: Switch to post release name/version Peter Kjellerstedt
@ 2023-01-10 15:21 ` Richard Purdie
  2023-01-10 16:49   ` Peter Kjellerstedt
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2023-01-10 15:21 UTC (permalink / raw)
  To: Peter Kjellerstedt, poky

On Tue, 2023-01-10 at 16:18 +0100, Peter Kjellerstedt wrote:
> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> ---
>  meta-poky/conf/distro/poky.conf | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
> index dc0e8e76ab..a876ddde94 100644
> --- a/meta-poky/conf/distro/poky.conf
> +++ b/meta-poky/conf/distro/poky.conf
> @@ -1,8 +1,7 @@
>  DISTRO = "poky"
>  DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
> -#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
> -DISTRO_VERSION = "4.1"
> -DISTRO_CODENAME = "langdale"
> +DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
> +DISTRO_CODENAME = "mickledore"
>  SDK_VENDOR = "-pokysdk"
>  SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-${METADATA_REVISION}', 'snapshot')}"
>  SDK_VERSION[vardepvalue] = "${SDK_VERSION}"

The codename change is ok but the version is not 4.2 plus something
since we haven't released 4.2 yet.

Cheers,

Richard


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

* Re: [poky] [PATCH] poky.conf: Switch to post release name/version
  2023-01-10 15:21 ` [poky] " Richard Purdie
@ 2023-01-10 16:49   ` Peter Kjellerstedt
  2023-01-10 17:10     ` Richard Purdie
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Kjellerstedt @ 2023-01-10 16:49 UTC (permalink / raw)
  To: Richard Purdie, poky

> -----Original Message-----
> From: Richard Purdie <richard.purdie@linuxfoundation.org>
> Sent: den 10 januari 2023 16:21
> To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>; poky@lists.yoctoproject.org
> Subject: Re: [poky] [PATCH] poky.conf: Switch to post release name/version
> 
> On Tue, 2023-01-10 at 16:18 +0100, Peter Kjellerstedt wrote:
> > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > ---
> >  meta-poky/conf/distro/poky.conf | 5 ++---
> >  1 file changed, 2 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
> > index dc0e8e76ab..a876ddde94 100644
> > --- a/meta-poky/conf/distro/poky.conf
> > +++ b/meta-poky/conf/distro/poky.conf
> > @@ -1,8 +1,7 @@
> >  DISTRO = "poky"
> >  DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
> > -#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
> > -DISTRO_VERSION = "4.1"
> > -DISTRO_CODENAME = "langdale"
> > +DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
> > +DISTRO_CODENAME = "mickledore"
> >  SDK_VENDOR = "-pokysdk"
> >  SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-${METADATA_REVISION}', 'snapshot')}"
> >  SDK_VERSION[vardepvalue] = "${SDK_VERSION}"
> 
> The codename change is ok but the version is not 4.2 plus something
> since we haven't released 4.2 yet.
> 
> Cheers,
> 
> Richard

I just followed how you did it in commit 
e6f4a7f76b8a60f365a111e0b38d6d5090a0b003 for Langdale...

//Peter


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

* Re: [poky] [PATCH] poky.conf: Switch to post release name/version
  2023-01-10 16:49   ` Peter Kjellerstedt
@ 2023-01-10 17:10     ` Richard Purdie
  2023-01-10 20:36       ` Peter Kjellerstedt
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2023-01-10 17:10 UTC (permalink / raw)
  To: Peter Kjellerstedt, poky

On Tue, 2023-01-10 at 16:49 +0000, Peter Kjellerstedt wrote:
> > -----Original Message-----
> > From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Sent: den 10 januari 2023 16:21
> > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> > poky@lists.yoctoproject.org
> > Subject: Re: [poky] [PATCH] poky.conf: Switch to post release
> > name/version
> > 
> > On Tue, 2023-01-10 at 16:18 +0100, Peter Kjellerstedt wrote:
> > > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > > ---
> > >  meta-poky/conf/distro/poky.conf | 5 ++---
> > >  1 file changed, 2 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/meta-poky/conf/distro/poky.conf b/meta-
> > > poky/conf/distro/poky.conf
> > > index dc0e8e76ab..a876ddde94 100644
> > > --- a/meta-poky/conf/distro/poky.conf
> > > +++ b/meta-poky/conf/distro/poky.conf
> > > @@ -1,8 +1,7 @@
> > >  DISTRO = "poky"
> > >  DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
> > > -#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
> > > -DISTRO_VERSION = "4.1"
> > > -DISTRO_CODENAME = "langdale"
> > > +DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
> > > +DISTRO_CODENAME = "mickledore"
> > >  SDK_VENDOR = "-pokysdk"
> > >  SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-
> > > ${METADATA_REVISION}', 'snapshot')}"
> > >  SDK_VERSION[vardepvalue] = "${SDK_VERSION}"
> > 
> > The codename change is ok but the version is not 4.2 plus something
> > since we haven't released 4.2 yet.
> > 
> > Cheers,
> > 
> > Richard
> 
> I just followed how you did it in commit 
> e6f4a7f76b8a60f365a111e0b38d6d5090a0b003 for Langdale...

The key difference is probably the timing, was that post release or
close to it?

Cheers,

Richard



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

* Re: [poky] [PATCH] poky.conf: Switch to post release name/version
  2023-01-10 17:10     ` Richard Purdie
@ 2023-01-10 20:36       ` Peter Kjellerstedt
  2023-01-10 23:17         ` Richard Purdie
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Kjellerstedt @ 2023-01-10 20:36 UTC (permalink / raw)
  To: Richard Purdie, poky

> -----Original Message-----
> From: Richard Purdie <richard.purdie@linuxfoundation.org>
> Sent: den 10 januari 2023 18:11
> To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> poky@lists.yoctoproject.org
> Subject: Re: [poky] [PATCH] poky.conf: Switch to post release name/version
> 
> On Tue, 2023-01-10 at 16:49 +0000, Peter Kjellerstedt wrote:
> > > -----Original Message-----
> > > From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > Sent: den 10 januari 2023 16:21
> > > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> > > poky@lists.yoctoproject.org
> > > Subject: Re: [poky] [PATCH] poky.conf: Switch to post release
> > > name/version
> > >
> > > On Tue, 2023-01-10 at 16:18 +0100, Peter Kjellerstedt wrote:
> > > > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > > > ---
> > > >  meta-poky/conf/distro/poky.conf | 5 ++---
> > > >  1 file changed, 2 insertions(+), 3 deletions(-)
> > > >
> > > > diff --git a/meta-poky/conf/distro/poky.conf b/meta-
> > > > poky/conf/distro/poky.conf
> > > > index dc0e8e76ab..a876ddde94 100644
> > > > --- a/meta-poky/conf/distro/poky.conf
> > > > +++ b/meta-poky/conf/distro/poky.conf
> > > > @@ -1,8 +1,7 @@
> > > >  DISTRO = "poky"
> > > >  DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
> > > > -#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
> > > > -DISTRO_VERSION = "4.1"
> > > > -DISTRO_CODENAME = "langdale"
> > > > +DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
> > > > +DISTRO_CODENAME = "mickledore"
> > > >  SDK_VENDOR = "-pokysdk"
> > > >  SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-
> > > > ${METADATA_REVISION}', 'snapshot')}"
> > > >  SDK_VERSION[vardepvalue] = "${SDK_VERSION}"
> > >
> > > The codename change is ok but the version is not 4.2 plus something
> > > since we haven't released 4.2 yet.
> > >
> > > Cheers,
> > >
> > > Richard
> >
> > I just followed how you did it in commit
> > e6f4a7f76b8a60f365a111e0b38d6d5090a0b003 for Langdale...
> 
> The key difference is probably the timing, was that post release or
> close to it?
> 
> Cheers,
> 
> Richard

It was relatively soon after the 4.0 release (about 150 commits in poky).
It was done 1702 commits before the 4.1 release:

$ git describe --contains 07c627645da0785acb54a635acfd8593f9118135 --match='yocto-*'
yocto-4.1~1702

//Peter


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

* Re: [poky] [PATCH] poky.conf: Switch to post release name/version
  2023-01-10 20:36       ` Peter Kjellerstedt
@ 2023-01-10 23:17         ` Richard Purdie
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2023-01-10 23:17 UTC (permalink / raw)
  To: Peter Kjellerstedt, poky

On Tue, 2023-01-10 at 20:36 +0000, Peter Kjellerstedt wrote:
> > -----Original Message-----
> > From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Sent: den 10 januari 2023 18:11
> > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> > poky@lists.yoctoproject.org
> > Subject: Re: [poky] [PATCH] poky.conf: Switch to post release
> > name/version
> > 
> > On Tue, 2023-01-10 at 16:49 +0000, Peter Kjellerstedt wrote:
> > > > -----Original Message-----
> > > > From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > > Sent: den 10 januari 2023 16:21
> > > > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> > > > poky@lists.yoctoproject.org
> > > > Subject: Re: [poky] [PATCH] poky.conf: Switch to post release
> > > > name/version
> > > > 
> > > > On Tue, 2023-01-10 at 16:18 +0100, Peter Kjellerstedt wrote:
> > > > > Signed-off-by: Peter Kjellerstedt
> > > > > <peter.kjellerstedt@axis.com>
> > > > > ---
> > > > >  meta-poky/conf/distro/poky.conf | 5 ++---
> > > > >  1 file changed, 2 insertions(+), 3 deletions(-)
> > > > > 
> > > > > diff --git a/meta-poky/conf/distro/poky.conf b/meta-
> > > > > poky/conf/distro/poky.conf
> > > > > index dc0e8e76ab..a876ddde94 100644
> > > > > --- a/meta-poky/conf/distro/poky.conf
> > > > > +++ b/meta-poky/conf/distro/poky.conf
> > > > > @@ -1,8 +1,7 @@
> > > > >  DISTRO = "poky"
> > > > >  DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
> > > > > -#DISTRO_VERSION = "4.1+snapshot-${METADATA_REVISION}"
> > > > > -DISTRO_VERSION = "4.1"
> > > > > -DISTRO_CODENAME = "langdale"
> > > > > +DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
> > > > > +DISTRO_CODENAME = "mickledore"
> > > > >  SDK_VENDOR = "-pokysdk"
> > > > >  SDK_VERSION =
> > > > > "${@d.getVar('DISTRO_VERSION').replace('snapshot-
> > > > > ${METADATA_REVISION}', 'snapshot')}"
> > > > >  SDK_VERSION[vardepvalue] = "${SDK_VERSION}"
> > > > 
> > > > The codename change is ok but the version is not 4.2 plus
> > > > something
> > > > since we haven't released 4.2 yet.
> > > > 
> > > > Cheers,
> > > > 
> > > > Richard
> > > 
> > > I just followed how you did it in commit
> > > e6f4a7f76b8a60f365a111e0b38d6d5090a0b003 for Langdale...
> > 
> > The key difference is probably the timing, was that post release or
> > close to it?
> > 
> > Cheers,
> > 
> > Richard
> 
> It was relatively soon after the 4.0 release (about 150 commits in
> poky).
> It was done 1702 commits before the 4.1 release:
> 
> $ git describe --contains 07c627645da0785acb54a635acfd8593f9118135 --
> match='yocto-*'
> yocto-4.1~1702

Sounds like I got it wrong then but it makes sense the revision is
4.1+XXX until 4.2 is released.

Cheers,

Richard

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

* [PATCH] poky.conf: Switch to post release name/version
@ 2023-08-24 18:00 Peter Kjellerstedt
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Kjellerstedt @ 2023-08-24 18:00 UTC (permalink / raw)
  To: poky

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta-poky/conf/distro/poky.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
index 388694b2f8..3bc7bff011 100644
--- a/meta-poky/conf/distro/poky.conf
+++ b/meta-poky/conf/distro/poky.conf
@@ -1,7 +1,7 @@
 DISTRO = "poky"
 DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
-DISTRO_VERSION = "4.2"
-DISTRO_CODENAME = "mickledore"
+DISTRO_VERSION = "4.2+snapshot-${METADATA_REVISION}"
+DISTRO_CODENAME = "nanbield"
 SDK_VENDOR = "-pokysdk"
 SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-${METADATA_REVISION}', 'snapshot')}"
 SDK_VERSION[vardepvalue] = "${SDK_VERSION}"


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

end of thread, other threads:[~2023-08-24 18:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-10 15:18 [PATCH] poky.conf: Switch to post release name/version Peter Kjellerstedt
2023-01-10 15:21 ` [poky] " Richard Purdie
2023-01-10 16:49   ` Peter Kjellerstedt
2023-01-10 17:10     ` Richard Purdie
2023-01-10 20:36       ` Peter Kjellerstedt
2023-01-10 23:17         ` Richard Purdie
2023-08-24 18:00 Peter Kjellerstedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).