All of lore.kernel.org
 help / color / mirror / Atom feed
* Getting the version of Yocto that is being used.
@ 2018-04-12  9:44 Richard Collins
  2018-04-12 10:21 ` Alexander Kanavin
  2018-04-12 10:25 ` Burton, Ross
  0 siblings, 2 replies; 13+ messages in thread
From: Richard Collins @ 2018-04-12  9:44 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 295 bytes --]

I've inherited a Yocto project that I know to be an old version. So one of
my tasks is to update to the latest version. Before I do this I would like
to know what version I have. The only information I can find is the bitbake
version, BB_VERSION        = "1.32.0".

Many thanks,
Richard.

[-- Attachment #2: Type: text/html, Size: 383 bytes --]

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

* Re: Getting the version of Yocto that is being used.
  2018-04-12  9:44 Getting the version of Yocto that is being used Richard Collins
@ 2018-04-12 10:21 ` Alexander Kanavin
  2018-04-12 12:11   ` Richard Collins
  2018-04-12 10:25 ` Burton, Ross
  1 sibling, 1 reply; 13+ messages in thread
From: Alexander Kanavin @ 2018-04-12 10:21 UTC (permalink / raw)
  To: Richard Collins, yocto

On 04/12/2018 12:44 PM, Richard Collins wrote:
> I've inherited a Yocto project that I know to be an old version. So one 
> of my tasks is to update to the latest version. Before I do this I would 
> like to know what version I have. The only information I can find is the 
> bitbake version, BB_VERSION        = "1.32.0".

When you run bitbake, it should also print the values of DISTRO and 
DISTRO_VERSION. Those should give a clue where you are at.

Alex


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12  9:44 Getting the version of Yocto that is being used Richard Collins
  2018-04-12 10:21 ` Alexander Kanavin
@ 2018-04-12 10:25 ` Burton, Ross
  2018-04-13 16:28   ` Zoran Stojsavljevic
  1 sibling, 1 reply; 13+ messages in thread
From: Burton, Ross @ 2018-04-12 10:25 UTC (permalink / raw)
  To: Richard Collins; +Cc: Yocto-mailing-list

If your project also includes meta-poky then poky.conf will contain a
DISTRO_VERSION assignment.  However,
https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
1.32 was part of 2.2/morty.

Ross

On 12 April 2018 at 10:44, Richard Collins
<richard.collins@guidedknowledge.com> wrote:
> I've inherited a Yocto project that I know to be an old version. So one of
> my tasks is to update to the latest version. Before I do this I would like
> to know what version I have. The only information I can find is the bitbake
> version, BB_VERSION        = "1.32.0".
>
> Many thanks,
> Richard.
>
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 10:21 ` Alexander Kanavin
@ 2018-04-12 12:11   ` Richard Collins
  2018-04-12 12:47     ` Burton, Ross
                       ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Richard Collins @ 2018-04-12 12:11 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 894 bytes --]

I get the following for DISTRO.

DISTRO            = "yogurt"
DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"

Can't find any reference to yogurt so I assume this is something the
supplier of our SOM's has done. Looking on their Wiki it seems to be based
on 2.1.2 (Krogoth)


Thanks for the help. :)

On 12 April 2018 at 11:21, Alexander Kanavin <
alexander.kanavin@linux.intel.com> wrote:

> On 04/12/2018 12:44 PM, Richard Collins wrote:
>
>> I've inherited a Yocto project that I know to be an old version. So one
>> of my tasks is to update to the latest version. Before I do this I would
>> like to know what version I have. The only information I can find is the
>> bitbake version, BB_VERSION        = "1.32.0".
>>
>
> When you run bitbake, it should also print the values of DISTRO and
> DISTRO_VERSION. Those should give a clue where you are at.
>
> Alex
>

[-- Attachment #2: Type: text/html, Size: 3091 bytes --]

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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:11   ` Richard Collins
@ 2018-04-12 12:47     ` Burton, Ross
  2018-04-12 12:54       ` Martin Jansa
  2018-04-15 21:04       ` Philip Balister
  2018-04-12 13:09     ` Alexander Kanavin
  2018-04-12 18:45     ` Josef Holzmayr
  2 siblings, 2 replies; 13+ messages in thread
From: Burton, Ross @ 2018-04-12 12:47 UTC (permalink / raw)
  To: Richard Collins; +Cc: Yocto-mailing-list

I think the message here is that we need to embed the oe-core version
in the metadata somewhere...

On 12 April 2018 at 13:11, Richard Collins
<richard.collins@guidedknowledge.com> wrote:
> I get the following for DISTRO.
>
> DISTRO            = "yogurt"
> DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
>
> Can't find any reference to yogurt so I assume this is something the
> supplier of our SOM's has done. Looking on their Wiki it seems to be based
> on 2.1.2 (Krogoth)
>
>
> Thanks for the help. :)
>
> On 12 April 2018 at 11:21, Alexander Kanavin
> <alexander.kanavin@linux.intel.com> wrote:
>>
>> On 04/12/2018 12:44 PM, Richard Collins wrote:
>>>
>>> I've inherited a Yocto project that I know to be an old version. So one
>>> of my tasks is to update to the latest version. Before I do this I would
>>> like to know what version I have. The only information I can find is the
>>> bitbake version, BB_VERSION        = "1.32.0".
>>
>>
>> When you run bitbake, it should also print the values of DISTRO and
>> DISTRO_VERSION. Those should give a clue where you are at.
>>
>> Alex
>
>
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:47     ` Burton, Ross
@ 2018-04-12 12:54       ` Martin Jansa
  2018-04-12 12:59         ` Burton, Ross
  2018-04-15 21:04       ` Philip Balister
  1 sibling, 1 reply; 13+ messages in thread
From: Martin Jansa @ 2018-04-12 12:54 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Yocto-mailing-list

[-- Attachment #1: Type: text/plain, Size: 1678 bytes --]

Cannot LAYERSERIES_CORENAMES added in rocko be used for that?

On Thu, Apr 12, 2018 at 2:47 PM, Burton, Ross <ross.burton@intel.com> wrote:

> I think the message here is that we need to embed the oe-core version
> in the metadata somewhere...
>
> On 12 April 2018 at 13:11, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I get the following for DISTRO.
> >
> > DISTRO            = "yogurt"
> > DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
> >
> > Can't find any reference to yogurt so I assume this is something the
> > supplier of our SOM's has done. Looking on their Wiki it seems to be
> based
> > on 2.1.2 (Krogoth)
> >
> >
> > Thanks for the help. :)
> >
> > On 12 April 2018 at 11:21, Alexander Kanavin
> > <alexander.kanavin@linux.intel.com> wrote:
> >>
> >> On 04/12/2018 12:44 PM, Richard Collins wrote:
> >>>
> >>> I've inherited a Yocto project that I know to be an old version. So one
> >>> of my tasks is to update to the latest version. Before I do this I
> would
> >>> like to know what version I have. The only information I can find is
> the
> >>> bitbake version, BB_VERSION        = "1.32.0".
> >>
> >>
> >> When you run bitbake, it should also print the values of DISTRO and
> >> DISTRO_VERSION. Those should give a clue where you are at.
> >>
> >> Alex
> >
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

[-- Attachment #2: Type: text/html, Size: 2804 bytes --]

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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:54       ` Martin Jansa
@ 2018-04-12 12:59         ` Burton, Ross
  0 siblings, 0 replies; 13+ messages in thread
From: Burton, Ross @ 2018-04-12 12:59 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Yocto-mailing-list

That is an excellent suggestion, yes.

Ross

On 12 April 2018 at 13:54, Martin Jansa <martin.jansa@gmail.com> wrote:
> Cannot LAYERSERIES_CORENAMES added in rocko be used for that?
>
> On Thu, Apr 12, 2018 at 2:47 PM, Burton, Ross <ross.burton@intel.com> wrote:
>>
>> I think the message here is that we need to embed the oe-core version
>> in the metadata somewhere...
>>
>> On 12 April 2018 at 13:11, Richard Collins
>> <richard.collins@guidedknowledge.com> wrote:
>> > I get the following for DISTRO.
>> >
>> > DISTRO            = "yogurt"
>> > DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
>> >
>> > Can't find any reference to yogurt so I assume this is something the
>> > supplier of our SOM's has done. Looking on their Wiki it seems to be
>> > based
>> > on 2.1.2 (Krogoth)
>> >
>> >
>> > Thanks for the help. :)
>> >
>> > On 12 April 2018 at 11:21, Alexander Kanavin
>> > <alexander.kanavin@linux.intel.com> wrote:
>> >>
>> >> On 04/12/2018 12:44 PM, Richard Collins wrote:
>> >>>
>> >>> I've inherited a Yocto project that I know to be an old version. So
>> >>> one
>> >>> of my tasks is to update to the latest version. Before I do this I
>> >>> would
>> >>> like to know what version I have. The only information I can find is
>> >>> the
>> >>> bitbake version, BB_VERSION        = "1.32.0".
>> >>
>> >>
>> >> When you run bitbake, it should also print the values of DISTRO and
>> >> DISTRO_VERSION. Those should give a clue where you are at.
>> >>
>> >> Alex
>> >
>> >
>> >
>> > --
>> > _______________________________________________
>> > yocto mailing list
>> > yocto@yoctoproject.org
>> > https://lists.yoctoproject.org/listinfo/yocto
>> >
>> --
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>
>


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:11   ` Richard Collins
  2018-04-12 12:47     ` Burton, Ross
@ 2018-04-12 13:09     ` Alexander Kanavin
  2018-04-12 18:45     ` Josef Holzmayr
  2 siblings, 0 replies; 13+ messages in thread
From: Alexander Kanavin @ 2018-04-12 13:09 UTC (permalink / raw)
  To: Richard Collins; +Cc: yocto

On 04/12/2018 03:11 PM, Richard Collins wrote:
> I get the following for DISTRO.
> 
> DISTRO            = "yogurt"
> DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
> 
> Can't find any reference to yogurt so I assume this is something the 
> supplier of our SOM's has done. Looking on their Wiki it seems to be 
> based on 2.1.2 (Krogoth)

This is probably coming from meta-yogurt layer provided by a company 
called Phytec. Looking at their git repository, they have branches for 
all Yocto releases, so you could probably start by looking at that. 
Generally, Phytec should be your support channel :)

Alex


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:11   ` Richard Collins
  2018-04-12 12:47     ` Burton, Ross
  2018-04-12 13:09     ` Alexander Kanavin
@ 2018-04-12 18:45     ` Josef Holzmayr
  2018-04-13  7:59       ` Richard Collins
  2 siblings, 1 reply; 13+ messages in thread
From: Josef Holzmayr @ 2018-04-12 18:45 UTC (permalink / raw)
  To: Richard Collins; +Cc: yocto

On Thu, Apr 12, 2018 at 01:11:17PM +0100, Richard Collins wrote:
> I get the following for DISTRO.
> 
> DISTRO            = "yogurt"
> DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
> 

For further reference by anyone who is reading this in the archive: the
supplier is Phytec, and the distro layer is here: https://git.phytec.de/meta-yogurt/

Greetz
-- 
———————————————
Josef Holzmayr
Software Developer Embedded Systems

Tel: +49 8444 9204-48
Fax: +49 8444 9204-50

R-S-I Elektrotechnik GmbH & Co. KG
Woelkestrasse 11
D-85301 Schweitenkirchen
www.rsi-elektrotechnik.de
———————————————
Amtsgericht Ingolstadt – GmbH: HRB 191328 – KG: HRA 170393
Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
Ust-IdNr: DE 128592548 

_____________________________________________________________
Amtsgericht Ingolstadt - GmbH: HRB 191328 - KG: HRA 170363
Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
USt-IdNr.: DE 128592548



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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 18:45     ` Josef Holzmayr
@ 2018-04-13  7:59       ` Richard Collins
  2018-04-13 14:21         ` Stefan Müller-Klieser
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Collins @ 2018-04-13  7:59 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 1543 bytes --]

Thanks for the help. :)

Yes they are Phytec boards. I have inherited the project from a 3rd party
and so in the mids of chasing up the support contacts and our account
details for their site. I'm sure you've all played the "Q) What are the
support / login details? A) I don't know, ask X, ask Y, ask Z.,
ask............" development game. ;)

On 12 April 2018 at 19:45, Josef Holzmayr <holzmayr@rsi-elektrotechnik.de>
wrote:

> On Thu, Apr 12, 2018 at 01:11:17PM +0100, Richard Collins wrote:
> > I get the following for DISTRO.
> >
> > DISTRO            = "yogurt"
> > DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
> >
>
> For further reference by anyone who is reading this in the archive: the
> supplier is Phytec, and the distro layer is here:
> https://git.phytec.de/meta-yogurt/
>
> Greetz
> --
> ———————————————
> Josef Holzmayr
> Software Developer Embedded Systems
>
> Tel: +49 8444 9204-48
> Fax: +49 8444 9204-50
>
> R-S-I Elektrotechnik GmbH & Co. KG
> Woelkestrasse 11
> D-85301 Schweitenkirchen
> www.rsi-elektrotechnik.de
> ———————————————
> Amtsgericht Ingolstadt – GmbH: HRB 191328 – KG: HRA 170393
> Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
> Ust-IdNr: DE 128592548
>
> _____________________________________________________________
> Amtsgericht Ingolstadt - GmbH: HRB 191328 - KG: HRA 170363
> Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
> USt-IdNr.: DE 128592548
>
>

[-- Attachment #2: Type: text/html, Size: 2201 bytes --]

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

* Re: Getting the version of Yocto that is being used.
  2018-04-13  7:59       ` Richard Collins
@ 2018-04-13 14:21         ` Stefan Müller-Klieser
  0 siblings, 0 replies; 13+ messages in thread
From: Stefan Müller-Klieser @ 2018-04-13 14:21 UTC (permalink / raw)
  To: Richard Collins, yocto

Hello Richard,

some of us are also around on the list.

You should find all documentation on the product page. Specifically, the
git tag of the release is "2.2.1-phy3" which indicates that the release
bundles poky morty 2.2.1. In future we will also have LAYERSERIES_COMPAT
set.

If the documentation leaves some open questions, you can also write us
directly.

Regards, Stefan

On 13.04.2018 09:59, Richard Collins wrote:
> Thanks for the help. :)
> 
> Yes they are Phytec boards. I have inherited the project from a 3rd party
> and so in the mids of chasing up the support contacts and our account
> details for their site. I'm sure you've all played the "Q) What are the
> support / login details? A) I don't know, ask X, ask Y, ask Z.,
> ask............" development game. ;)
> 
> On 12 April 2018 at 19:45, Josef Holzmayr <holzmayr@rsi-elektrotechnik.de>
> wrote:
> 
>> On Thu, Apr 12, 2018 at 01:11:17PM +0100, Richard Collins wrote:
>>> I get the following for DISTRO.
>>>
>>> DISTRO            = "yogurt"
>>> DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
>>>
>>
>> For further reference by anyone who is reading this in the archive: the
>> supplier is Phytec, and the distro layer is here:
>> https://git.phytec.de/meta-yogurt/
>>
>> Greetz
>> --
>> ———————————————
>> Josef Holzmayr
>> Software Developer Embedded Systems
>>
>> Tel: +49 8444 9204-48
>> Fax: +49 8444 9204-50
>>
>> R-S-I Elektrotechnik GmbH & Co. KG
>> Woelkestrasse 11
>> D-85301 Schweitenkirchen
>> www.rsi-elektrotechnik.de
>> ———————————————
>> Amtsgericht Ingolstadt – GmbH: HRB 191328 – KG: HRA 170393
>> Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
>> Ust-IdNr: DE 128592548
>>
>> _____________________________________________________________
>> Amtsgericht Ingolstadt - GmbH: HRB 191328 - KG: HRA 170363
>> Geschäftsführer: Dr.-Ing. Michael Sorg, Dipl.-Ing. Franz Sorg
>> USt-IdNr.: DE 128592548
>>
>>
> 
> 
> 


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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 10:25 ` Burton, Ross
@ 2018-04-13 16:28   ` Zoran Stojsavljevic
  0 siblings, 0 replies; 13+ messages in thread
From: Zoran Stojsavljevic @ 2018-04-13 16:28 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Yocto-mailing-list

[-- Attachment #1: Type: text/plain, Size: 6906 bytes --]

Hello Ross,

I have a different idea for poky versioning. Since, who ever does classical
poky, one will have at least three layers there from your reference poky
distro:

-----------------------
Build Configuration:  |
-----------------------
DISTRO = poky
DISTRO_VERSION = 2.4
-----------------------
Layer Revisions:      |
-----------------------

Since you decided long time ago to track poky DISTRO_VERSION assignment
with meta-poky... And meta-poky is not one to be always included in the
layering, correct?

Assuming that, you can implant/embed the following 4 lines:
DISTRO = "poky"
DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
DISTRO_VERSION = "2.4"
DISTRO_CODENAME = "rocko"

in ./meta/conf/distro/defaultsetup.conf in meta layer. You anyway always
clone meta layer from OpenEmbedded, and do your own SHA256 (which is always
different than OE meta original).

As such, the base (meta layer) will ALWAYS contain the DISTRO_VERSION
variable, which is the correct approach, since you will also tag with
DISTRO_VERSION the meta layer (there are different meta layers per
different distro versions, do you agree?).

And... Everyone needs meta layer (the base one), don't you agree as well?

Do not forget. Open Embedded original meta will stay untouched, ready to be
used for other distros (whatever these distros mean).

*If I think deeper, actually Open Embedded meta layer determines (at the
end of the day) DISTRO_CODENAME, doesn't it?* ;-)

Best Regards,
Zoran
_______

On Thu, Apr 12, 2018 at 12:25 PM, Burton, Ross <ross.burton@intel.com>
wrote:

> If your project also includes meta-poky then poky.conf will contain a
> DISTRO_VERSION assignment.  However,
> https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
> 1.32 was part of 2.2/morty.
>
> Ross
>
> On 12 April 2018 at 10:44, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I've inherited a Yocto project that I know to be an old version. So one
> of
> > my tasks is to update to the latest version. Before I do this I would
> like
> > to know what version I have. The only information I can find is the
> bitbake
> > version, BB_VERSION        = "1.32.0".
> >
> > Many thanks,
> > Richard.
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


On Thu, Apr 12, 2018 at 12:25 PM, Burton, Ross <ross.burton@intel.com>
wrote:

> If your project also includes meta-poky then poky.conf will contain a
> DISTRO_VERSION assignment.  However,
> https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
> 1.32 was part of 2.2/morty.
>
> Ross
>
> On 12 April 2018 at 10:44, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I've inherited a Yocto project that I know to be an old version. So one
> of
> > my tasks is to update to the latest version. Before I do this I would
> like
> > to know what version I have. The only information I can find is the
> bitbake
> > version, BB_VERSION        = "1.32.0".
> >
> > Many thanks,
> > Richard.
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


On Thu, Apr 12, 2018 at 12:25 PM, Burton, Ross <ross.burton@intel.com>
wrote:

> If your project also includes meta-poky then poky.conf will contain a
> DISTRO_VERSION assignment.  However,
> https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
> 1.32 was part of 2.2/morty.
>
> Ross
>
> On 12 April 2018 at 10:44, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I've inherited a Yocto project that I know to be an old version. So one
> of
> > my tasks is to update to the latest version. Before I do this I would
> like
> > to know what version I have. The only information I can find is the
> bitbake
> > version, BB_VERSION        = "1.32.0".
> >
> > Many thanks,
> > Richard.
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


On Thu, Apr 12, 2018 at 12:25 PM, Burton, Ross <ross.burton@intel.com>
wrote:

> If your project also includes meta-poky then poky.conf will contain a
> DISTRO_VERSION assignment.  However,
> https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
> 1.32 was part of 2.2/morty.
>
> Ross
>
> On 12 April 2018 at 10:44, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I've inherited a Yocto project that I know to be an old version. So one
> of
> > my tasks is to update to the latest version. Before I do this I would
> like
> > to know what version I have. The only information I can find is the
> bitbake
> > version, BB_VERSION        = "1.32.0".
> >
> > Many thanks,
> > Richard.
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>


On Thu, Apr 12, 2018 at 12:25 PM, Burton, Ross <ross.burton@intel.com>
wrote:

> If your project also includes meta-poky then poky.conf will contain a
> DISTRO_VERSION assignment.  However,
> https://wiki.yoctoproject.org/wiki/Releases indicates that bitbake
> 1.32 was part of 2.2/morty.
>
> Ross
>
> On 12 April 2018 at 10:44, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
> > I've inherited a Yocto project that I know to be an old version. So one
> of
> > my tasks is to update to the latest version. Before I do this I would
> like
> > to know what version I have. The only information I can find is the
> bitbake
> > version, BB_VERSION        = "1.32.0".
> >
> > Many thanks,
> > Richard.
> >
> >
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

[-- Attachment #2: Type: text/html, Size: 19321 bytes --]

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

* Re: Getting the version of Yocto that is being used.
  2018-04-12 12:47     ` Burton, Ross
  2018-04-12 12:54       ` Martin Jansa
@ 2018-04-15 21:04       ` Philip Balister
  1 sibling, 0 replies; 13+ messages in thread
From: Philip Balister @ 2018-04-15 21:04 UTC (permalink / raw)
  To: Burton, Ross, Richard Collins; +Cc: Yocto-mailing-list

I like:

https://git.yoctoproject.org/cgit.cgi/poky/plain/meta/classes/image-buildinfo.bbclass

Philip

On 04/12/2018 08:47 AM, Burton, Ross wrote:
> I think the message here is that we need to embed the oe-core version
> in the metadata somewhere...
> 
> On 12 April 2018 at 13:11, Richard Collins
> <richard.collins@guidedknowledge.com> wrote:
>> I get the following for DISTRO.
>>
>> DISTRO            = "yogurt"
>> DISTRO_VERSION    = "BSP-Yocto-RK3288-PD17.1.1"
>>
>> Can't find any reference to yogurt so I assume this is something the
>> supplier of our SOM's has done. Looking on their Wiki it seems to be based
>> on 2.1.2 (Krogoth)
>>
>>
>> Thanks for the help. :)
>>
>> On 12 April 2018 at 11:21, Alexander Kanavin
>> <alexander.kanavin@linux.intel.com> wrote:
>>>
>>> On 04/12/2018 12:44 PM, Richard Collins wrote:
>>>>
>>>> I've inherited a Yocto project that I know to be an old version. So one
>>>> of my tasks is to update to the latest version. Before I do this I would
>>>> like to know what version I have. The only information I can find is the
>>>> bitbake version, BB_VERSION        = "1.32.0".
>>>
>>>
>>> When you run bitbake, it should also print the values of DISTRO and
>>> DISTRO_VERSION. Those should give a clue where you are at.
>>>
>>> Alex
>>
>>
>>
>> --
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>>


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

end of thread, other threads:[~2018-04-15 21:04 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-12  9:44 Getting the version of Yocto that is being used Richard Collins
2018-04-12 10:21 ` Alexander Kanavin
2018-04-12 12:11   ` Richard Collins
2018-04-12 12:47     ` Burton, Ross
2018-04-12 12:54       ` Martin Jansa
2018-04-12 12:59         ` Burton, Ross
2018-04-15 21:04       ` Philip Balister
2018-04-12 13:09     ` Alexander Kanavin
2018-04-12 18:45     ` Josef Holzmayr
2018-04-13  7:59       ` Richard Collins
2018-04-13 14:21         ` Stefan Müller-Klieser
2018-04-12 10:25 ` Burton, Ross
2018-04-13 16:28   ` Zoran Stojsavljevic

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.