All of lore.kernel.org
 help / color / mirror / Atom feed
* 2.6 migration guide
@ 2018-10-23 21:14 Paul Eggleton
  2018-10-30 22:06 ` Scott Rifenbark
  0 siblings, 1 reply; 20+ messages in thread
From: Paul Eggleton @ 2018-10-23 21:14 UTC (permalink / raw)
  To: yocto; +Cc: openembedded-core

Hi folks

When Scott prepares the migration guide for a release, he usually looks to me 
to collate the notable changes for it (those requiring user intervention). I 
haven't prepared anything yet though and the 2.6 release is fast approaching. 
Can anyone who has been involved in or is aware of such changes in master for 
upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:

  https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

Scott and I will take care of cleaning it up, so things added there don't need 
to be perfect. 

I will also be doing my usual trawl through the commits in the release for the 
more general changelog, so most things will get picked up that way, but it's 
really helpful if people with first-hand knowledge of the implications of some 
of these changes are involved in how they get documented.

Thanks,
Paul

-- 
Paul Eggleton
Intel Open Source Technology Centre




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

* Re: 2.6 migration guide
  2018-10-23 21:14 2.6 migration guide Paul Eggleton
@ 2018-10-30 22:06 ` Scott Rifenbark
  2018-10-31  7:15   ` Robert Berger
                     ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-30 22:06 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: Yocto discussion list, openembedded-core

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

Paul,

Thanks for sending.

Contributors....

I have an initial section at
https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
which is based on Richard's input.  I am sure there are more items.

Thanks,
Scott

On Tue, Oct 23, 2018 at 2:14 PM Paul Eggleton <paul.eggleton@linux.intel.com>
wrote:

> Hi folks
>
> When Scott prepares the migration guide for a release, he usually looks to
> me
> to collate the notable changes for it (those requiring user intervention).
> I
> haven't prepared anything yet though and the 2.6 release is fast
> approaching.
> Can anyone who has been involved in or is aware of such changes in master
> for
> upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:
>
>   https://wiki.yoctoproject.org/wiki/FutureMigrationGuide
>
> Scott and I will take care of cleaning it up, so things added there don't
> need
> to be perfect.
>
> I will also be doing my usual trawl through the commits in the release for
> the
> more general changelog, so most things will get picked up that way, but
> it's
> really helpful if people with first-hand knowledge of the implications of
> some
> of these changes are involved in how they get documented.
>
> Thanks,
> Paul
>
> --
> Paul Eggleton
> Intel Open Source Technology Centre
>
>
>

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

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

* Re: 2.6 migration guide
  2018-10-30 22:06 ` Scott Rifenbark
@ 2018-10-31  7:15   ` Robert Berger
  2018-10-31 15:33       ` [yocto] " Scott Rifenbark
  2018-10-31 15:50       ` [yocto] " Scott Rifenbark
  2018-11-02 15:10     ` Peter Kjellerstedt
  2018-11-05  3:32   ` Paul Eggleton
  2 siblings, 2 replies; 20+ messages in thread
From: Robert Berger @ 2018-10-31  7:15 UTC (permalink / raw)
  To: Scott Rifenbark, Paul Eggleton; +Cc: Yocto discussion list, openembedded-core

Hi Scott,

On 31.10.18 00:06, Scott Rifenbark wrote:
> 
> I have an initial section at 
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release, 
> which is based on Richard's input.  I am sure there are more items.

You might want to add a link to the bitbake manual or some example from 
there for the new functionality of _remove operator:

http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334

FOO = "123 456 789 123456 123 456 123 456"
FOO_remove = "123"
FOO_remove = "456"

FOO is now: "  789 123456    " instead of "789 123456"

> 
> Thanks,
> Scott

Regards,

Robert



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

* Re: 2.6 migration guide
  2018-10-31  7:15   ` Robert Berger
@ 2018-10-31 15:33       ` Scott Rifenbark
  2018-10-31 15:50       ` [yocto] " Scott Rifenbark
  1 sibling, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 15:33 UTC (permalink / raw)
  To: yocto.user.mailinglist
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Thanks Robert...  I will do that.

Scott

On Wed, Oct 31, 2018 at 12:15 AM Robert Berger <
yocto.user.mailinglist@gmail.com> wrote:

> Hi Scott,
>
> On 31.10.18 00:06, Scott Rifenbark wrote:
> >
> > I have an initial section at
> >
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>
> > which is based on Richard's input.  I am sure there are more items.
>
> You might want to add a link to the bitbake manual or some example from
> there for the new functionality of _remove operator:
>
>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>
> FOO = "123 456 789 123456 123 456 123 456"
> FOO_remove = "123"
> FOO_remove = "456"
>
> FOO is now: "  789 123456    " instead of "789 123456"
>
> >
> > Thanks,
> > Scott
>
> Regards,
>
> Robert
>
>

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

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

* Re: [yocto] 2.6 migration guide
@ 2018-10-31 15:33       ` Scott Rifenbark
  0 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 15:33 UTC (permalink / raw)
  To: yocto.user.mailinglist
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Thanks Robert...  I will do that.

Scott

On Wed, Oct 31, 2018 at 12:15 AM Robert Berger <
yocto.user.mailinglist@gmail.com> wrote:

> Hi Scott,
>
> On 31.10.18 00:06, Scott Rifenbark wrote:
> >
> > I have an initial section at
> >
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>
> > which is based on Richard's input.  I am sure there are more items.
>
> You might want to add a link to the bitbake manual or some example from
> there for the new functionality of _remove operator:
>
>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>
> FOO = "123 456 789 123456 123 456 123 456"
> FOO_remove = "123"
> FOO_remove = "456"
>
> FOO is now: "  789 123456    " instead of "789 123456"
>
> >
> > Thanks,
> > Scott
>
> Regards,
>
> Robert
>
>

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

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

* Re: 2.6 migration guide
  2018-10-31  7:15   ` Robert Berger
@ 2018-10-31 15:50       ` Scott Rifenbark
  2018-10-31 15:50       ` [yocto] " Scott Rifenbark
  1 sibling, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 15:50 UTC (permalink / raw)
  To: yocto.user.mailinglist
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Can you tell me why "123456" is also not removed?  That string contains
instances of "123" and "456"

Thanks,
Scott

On Wed, Oct 31, 2018 at 12:15 AM Robert Berger <
yocto.user.mailinglist@gmail.com> wrote:

> Hi Scott,
>
> On 31.10.18 00:06, Scott Rifenbark wrote:
> >
> > I have an initial section at
> >
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>
> > which is based on Richard's input.  I am sure there are more items.
>
> You might want to add a link to the bitbake manual or some example from
> there for the new functionality of _remove operator:
>
>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>
> FOO = "123 456 789 123456 123 456 123 456"
> FOO_remove = "123"
> FOO_remove = "456"
>
> FOO is now: "  789 123456    " instead of "789 123456"
>
> >
> > Thanks,
> > Scott
>
> Regards,
>
> Robert
>
>

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

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

* Re: [yocto] 2.6 migration guide
@ 2018-10-31 15:50       ` Scott Rifenbark
  0 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 15:50 UTC (permalink / raw)
  To: yocto.user.mailinglist
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Can you tell me why "123456" is also not removed?  That string contains
instances of "123" and "456"

Thanks,
Scott

On Wed, Oct 31, 2018 at 12:15 AM Robert Berger <
yocto.user.mailinglist@gmail.com> wrote:

> Hi Scott,
>
> On 31.10.18 00:06, Scott Rifenbark wrote:
> >
> > I have an initial section at
> >
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>
> > which is based on Richard's input.  I am sure there are more items.
>
> You might want to add a link to the bitbake manual or some example from
> there for the new functionality of _remove operator:
>
>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>
> FOO = "123 456 789 123456 123 456 123 456"
> FOO_remove = "123"
> FOO_remove = "456"
>
> FOO is now: "  789 123456    " instead of "789 123456"
>
> >
> > Thanks,
> > Scott
>
> Regards,
>
> Robert
>
>

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

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

* Re: 2.6 migration guide
  2018-10-31 15:50       ` [yocto] " Scott Rifenbark
@ 2018-10-31 16:01         ` Bas Mevissen
  -1 siblings, 0 replies; 20+ messages in thread
From: Bas Mevissen @ 2018-10-31 16:01 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: openembedded-core, Yocto discussion list, Paul Eggleton

On 2018-10-31 16:50, Scott Rifenbark wrote:

> Can you tell me why "123456" is also not removed?  That string contains 
> instances of "123" and "456"


Because it removes all occurrences of the list value "123" and not of 
value "123456" or any part of it. Otherwise, it would be impossible to 
use this function to only remove, say, "1" from a long list of numbers. 
(here 'value' is not limited to a number).

-- Bas.

> 
> Thanks,
> Scott
> 
> On Wed, Oct 31, 2018 at 12:15 AM Robert Berger 
> <yocto.user.mailinglist@gmail.com> wrote:
> 
>> Hi Scott,
>> 
>> On 31.10.18 00:06, Scott Rifenbark wrote:
>>> 
>>> I have an initial section at
>>> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>>> which is based on Richard's input.  I am sure there are more items.
>> 
>> You might want to add a link to the bitbake manual or some example 
>> from
>> there for the new functionality of _remove operator:
>> 
>> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>> 
>> FOO = "123 456 789 123456 123 456 123 456"
>> FOO_remove = "123"
>> FOO_remove = "456"
>> 
>> FOO is now: "  789 123456    " instead of "789 123456"
>> 
>>> 
>>> Thanks,
>>> Scott
>> 
>> Regards,
>> 
>> Robert




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

* Re: [yocto] 2.6 migration guide
@ 2018-10-31 16:01         ` Bas Mevissen
  0 siblings, 0 replies; 20+ messages in thread
From: Bas Mevissen @ 2018-10-31 16:01 UTC (permalink / raw)
  To: Scott Rifenbark
  Cc: yocto.user.mailinglist, openembedded-core, Yocto discussion list,
	Paul Eggleton

On 2018-10-31 16:50, Scott Rifenbark wrote:

> Can you tell me why "123456" is also not removed?  That string contains 
> instances of "123" and "456"


Because it removes all occurrences of the list value "123" and not of 
value "123456" or any part of it. Otherwise, it would be impossible to 
use this function to only remove, say, "1" from a long list of numbers. 
(here 'value' is not limited to a number).

-- Bas.

> 
> Thanks,
> Scott
> 
> On Wed, Oct 31, 2018 at 12:15 AM Robert Berger 
> <yocto.user.mailinglist@gmail.com> wrote:
> 
>> Hi Scott,
>> 
>> On 31.10.18 00:06, Scott Rifenbark wrote:
>>> 
>>> I have an initial section at
>>> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
>>> which is based on Richard's input.  I am sure there are more items.
>> 
>> You might want to add a link to the bitbake manual or some example 
>> from
>> there for the new functionality of _remove operator:
>> 
>> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
>> 
>> FOO = "123 456 789 123456 123 456 123 456"
>> FOO_remove = "123"
>> FOO_remove = "456"
>> 
>> FOO is now: "  789 123456    " instead of "789 123456"
>> 
>>> 
>>> Thanks,
>>> Scott
>> 
>> Regards,
>> 
>> Robert




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

* Re: 2.6 migration guide
  2018-10-31 16:01         ` [yocto] " Bas Mevissen
@ 2018-10-31 16:56           ` Scott Rifenbark
  -1 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 16:56 UTC (permalink / raw)
  To: abuse; +Cc: openembedded-core, Yocto discussion list, Paul Eggleton

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

Got it, thanks.

On Wed, Oct 31, 2018 at 9:02 AM Bas Mevissen <abuse@basmevissen.nl> wrote:

> On 2018-10-31 16:50, Scott Rifenbark wrote:
>
> > Can you tell me why "123456" is also not removed?  That string contains
> > instances of "123" and "456"
>
>
> Because it removes all occurrences of the list value "123" and not of
> value "123456" or any part of it. Otherwise, it would be impossible to
> use this function to only remove, say, "1" from a long list of numbers.
> (here 'value' is not limited to a number).
>
> -- Bas.
>
> >
> > Thanks,
> > Scott
> >
> > On Wed, Oct 31, 2018 at 12:15 AM Robert Berger
> > <yocto.user.mailinglist@gmail.com> wrote:
> >
> >> Hi Scott,
> >>
> >> On 31.10.18 00:06, Scott Rifenbark wrote:
> >>>
> >>> I have an initial section at
> >>>
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release
> ,
> >>> which is based on Richard's input.  I am sure there are more items.
> >>
> >> You might want to add a link to the bitbake manual or some example
> >> from
> >> there for the new functionality of _remove operator:
> >>
> >>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
> >>
> >> FOO = "123 456 789 123456 123 456 123 456"
> >> FOO_remove = "123"
> >> FOO_remove = "456"
> >>
> >> FOO is now: "  789 123456    " instead of "789 123456"
> >>
> >>>
> >>> Thanks,
> >>> Scott
> >>
> >> Regards,
> >>
> >> Robert
>
>
>

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

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

* Re: [yocto] 2.6 migration guide
@ 2018-10-31 16:56           ` Scott Rifenbark
  0 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-10-31 16:56 UTC (permalink / raw)
  To: abuse
  Cc: yocto.user.mailinglist, openembedded-core, Yocto discussion list,
	Paul Eggleton

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

Got it, thanks.

On Wed, Oct 31, 2018 at 9:02 AM Bas Mevissen <abuse@basmevissen.nl> wrote:

> On 2018-10-31 16:50, Scott Rifenbark wrote:
>
> > Can you tell me why "123456" is also not removed?  That string contains
> > instances of "123" and "456"
>
>
> Because it removes all occurrences of the list value "123" and not of
> value "123456" or any part of it. Otherwise, it would be impossible to
> use this function to only remove, say, "1" from a long list of numbers.
> (here 'value' is not limited to a number).
>
> -- Bas.
>
> >
> > Thanks,
> > Scott
> >
> > On Wed, Oct 31, 2018 at 12:15 AM Robert Berger
> > <yocto.user.mailinglist@gmail.com> wrote:
> >
> >> Hi Scott,
> >>
> >> On 31.10.18 00:06, Scott Rifenbark wrote:
> >>>
> >>> I have an initial section at
> >>>
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release
> ,
> >>> which is based on Richard's input.  I am sure there are more items.
> >>
> >> You might want to add a link to the bitbake manual or some example
> >> from
> >> there for the new functionality of _remove operator:
> >>
> >>
> http://git.openembedded.org/bitbake/tree/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml?id=c0a23dd9155c50a6b7df796980bc7b612cac7994#n334
> >>
> >> FOO = "123 456 789 123456 123 456 123 456"
> >> FOO_remove = "123"
> >> FOO_remove = "456"
> >>
> >> FOO is now: "  789 123456    " instead of "789 123456"
> >>
> >>>
> >>> Thanks,
> >>> Scott
> >>
> >> Regards,
> >>
> >> Robert
>
>
>

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

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

* Re: [OE-core] 2.6 migration guide
  2018-10-30 22:06 ` Scott Rifenbark
@ 2018-11-02 15:10     ` Peter Kjellerstedt
  2018-11-02 15:10     ` Peter Kjellerstedt
  2018-11-05  3:32   ` Paul Eggleton
  2 siblings, 0 replies; 20+ messages in thread
From: Peter Kjellerstedt @ 2018-11-02 15:10 UTC (permalink / raw)
  To: Scott Rifenbark, Paul Eggleton; +Cc: Yocto discussion list, openembedded-core

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

In “4.14.2. OpenSSL Changes”, change “both versions their dependency chains” to “both versions in their dependency chains”.
In “4.14.4. Security Changes”, change “files” to “flags” (twice).

//Peter

From: openembedded-core-bounces@lists.openembedded.org <openembedded-core-bounces@lists.openembedded.org> On Behalf Of Scott Rifenbark
Sent: den 30 oktober 2018 23:07
To: Paul Eggleton <paul.eggleton@linux.intel.com>
Cc: Yocto discussion list <yocto@yoctoproject.org>; openembedded-core <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] 2.6 migration guide

Paul,

Thanks for sending.

Contributors....

I have an initial section at https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release, which is based on Richard's input.  I am sure there are more items.

Thanks,
Scott

On Tue, Oct 23, 2018 at 2:14 PM Paul Eggleton <paul.eggleton@linux.intel.com<mailto:paul.eggleton@linux.intel.com>> wrote:
Hi folks

When Scott prepares the migration guide for a release, he usually looks to me
to collate the notable changes for it (those requiring user intervention). I
haven't prepared anything yet though and the 2.6 release is fast approaching.
Can anyone who has been involved in or is aware of such changes in master for
upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:

  https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

Scott and I will take care of cleaning it up, so things added there don't need
to be perfect.

I will also be doing my usual trawl through the commits in the release for the
more general changelog, so most things will get picked up that way, but it's
really helpful if people with first-hand knowledge of the implications of some
of these changes are involved in how they get documented.

Thanks,
Paul

--
Paul Eggleton
Intel Open Source Technology Centre


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

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

* Re: 2.6 migration guide
@ 2018-11-02 15:10     ` Peter Kjellerstedt
  0 siblings, 0 replies; 20+ messages in thread
From: Peter Kjellerstedt @ 2018-11-02 15:10 UTC (permalink / raw)
  To: Scott Rifenbark, Paul Eggleton; +Cc: Yocto discussion list, openembedded-core

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

In “4.14.2. OpenSSL Changes”, change “both versions their dependency chains” to “both versions in their dependency chains”.
In “4.14.4. Security Changes”, change “files” to “flags” (twice).

//Peter

From: openembedded-core-bounces@lists.openembedded.org <openembedded-core-bounces@lists.openembedded.org> On Behalf Of Scott Rifenbark
Sent: den 30 oktober 2018 23:07
To: Paul Eggleton <paul.eggleton@linux.intel.com>
Cc: Yocto discussion list <yocto@yoctoproject.org>; openembedded-core <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] 2.6 migration guide

Paul,

Thanks for sending.

Contributors....

I have an initial section at https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release, which is based on Richard's input.  I am sure there are more items.

Thanks,
Scott

On Tue, Oct 23, 2018 at 2:14 PM Paul Eggleton <paul.eggleton@linux.intel.com<mailto:paul.eggleton@linux.intel.com>> wrote:
Hi folks

When Scott prepares the migration guide for a release, he usually looks to me
to collate the notable changes for it (those requiring user intervention). I
haven't prepared anything yet though and the 2.6 release is fast approaching.
Can anyone who has been involved in or is aware of such changes in master for
upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:

  https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

Scott and I will take care of cleaning it up, so things added there don't need
to be perfect.

I will also be doing my usual trawl through the commits in the release for the
more general changelog, so most things will get picked up that way, but it's
really helpful if people with first-hand knowledge of the implications of some
of these changes are involved in how they get documented.

Thanks,
Paul

--
Paul Eggleton
Intel Open Source Technology Centre


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

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

* Re: [OE-core] 2.6 migration guide
  2018-11-02 15:10     ` Peter Kjellerstedt
@ 2018-11-02 15:48       ` Scott Rifenbark
  -1 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-11-02 15:48 UTC (permalink / raw)
  To: Peter Kjellerstedt
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Peter,

Thanks
Scott

https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#migration-2.6-openssl-changes
https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#migration-2.6-security-changes

On Fri, Nov 2, 2018 at 8:10 AM Peter Kjellerstedt <
peter.kjellerstedt@axis.com> wrote:

> In “4.14.2. OpenSSL Changes”, change “both versions their dependency
> chains” to “both versions in their dependency chains”.
>
> In “4.14.4. Security Changes”, change “files” to “flags” (twice).
>
>
>
> //Peter
>
>
>
> *From:* openembedded-core-bounces@lists.openembedded.org <
> openembedded-core-bounces@lists.openembedded.org> *On Behalf Of *Scott
> Rifenbark
> *Sent:* den 30 oktober 2018 23:07
> *To:* Paul Eggleton <paul.eggleton@linux.intel.com>
> *Cc:* Yocto discussion list <yocto@yoctoproject.org>; openembedded-core <
> openembedded-core@lists.openembedded.org>
> *Subject:* Re: [OE-core] 2.6 migration guide
>
>
>
> Paul,
>
>
>
> Thanks for sending.
>
>
>
> Contributors....
>
>
>
> I have an initial section at
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
> which is based on Richard's input.  I am sure there are more items.
>
>
>
> Thanks,
>
> Scott
>
>
>
> On Tue, Oct 23, 2018 at 2:14 PM Paul Eggleton <
> paul.eggleton@linux.intel.com> wrote:
>
> Hi folks
>
> When Scott prepares the migration guide for a release, he usually looks to
> me
> to collate the notable changes for it (those requiring user intervention).
> I
> haven't prepared anything yet though and the 2.6 release is fast
> approaching.
> Can anyone who has been involved in or is aware of such changes in master
> for
> upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:
>
>   https://wiki.yoctoproject.org/wiki/FutureMigrationGuide
>
> Scott and I will take care of cleaning it up, so things added there don't
> need
> to be perfect.
>
> I will also be doing my usual trawl through the commits in the release for
> the
> more general changelog, so most things will get picked up that way, but
> it's
> really helpful if people with first-hand knowledge of the implications of
> some
> of these changes are involved in how they get documented.
>
> Thanks,
> Paul
>
> --
> Paul Eggleton
> Intel Open Source Technology Centre
>
>

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

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

* Re: 2.6 migration guide
@ 2018-11-02 15:48       ` Scott Rifenbark
  0 siblings, 0 replies; 20+ messages in thread
From: Scott Rifenbark @ 2018-11-02 15:48 UTC (permalink / raw)
  To: Peter Kjellerstedt
  Cc: Paul Eggleton, openembedded-core, Yocto discussion list

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

Peter,

Thanks
Scott

https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#migration-2.6-openssl-changes
https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#migration-2.6-security-changes

On Fri, Nov 2, 2018 at 8:10 AM Peter Kjellerstedt <
peter.kjellerstedt@axis.com> wrote:

> In “4.14.2. OpenSSL Changes”, change “both versions their dependency
> chains” to “both versions in their dependency chains”.
>
> In “4.14.4. Security Changes”, change “files” to “flags” (twice).
>
>
>
> //Peter
>
>
>
> *From:* openembedded-core-bounces@lists.openembedded.org <
> openembedded-core-bounces@lists.openembedded.org> *On Behalf Of *Scott
> Rifenbark
> *Sent:* den 30 oktober 2018 23:07
> *To:* Paul Eggleton <paul.eggleton@linux.intel.com>
> *Cc:* Yocto discussion list <yocto@yoctoproject.org>; openembedded-core <
> openembedded-core@lists.openembedded.org>
> *Subject:* Re: [OE-core] 2.6 migration guide
>
>
>
> Paul,
>
>
>
> Thanks for sending.
>
>
>
> Contributors....
>
>
>
> I have an initial section at
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
> which is based on Richard's input.  I am sure there are more items.
>
>
>
> Thanks,
>
> Scott
>
>
>
> On Tue, Oct 23, 2018 at 2:14 PM Paul Eggleton <
> paul.eggleton@linux.intel.com> wrote:
>
> Hi folks
>
> When Scott prepares the migration guide for a release, he usually looks to
> me
> to collate the notable changes for it (those requiring user intervention).
> I
> haven't prepared anything yet though and the 2.6 release is fast
> approaching.
> Can anyone who has been involved in or is aware of such changes in master
> for
> upcoming 2.6 (thud) make a note of it on the wiki in raw form on this page:
>
>   https://wiki.yoctoproject.org/wiki/FutureMigrationGuide
>
> Scott and I will take care of cleaning it up, so things added there don't
> need
> to be perfect.
>
> I will also be doing my usual trawl through the commits in the release for
> the
> more general changelog, so most things will get picked up that way, but
> it's
> really helpful if people with first-hand knowledge of the implications of
> some
> of these changes are involved in how they get documented.
>
> Thanks,
> Paul
>
> --
> Paul Eggleton
> Intel Open Source Technology Centre
>
>

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

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

* Re: 2.6 migration guide
  2018-10-30 22:06 ` Scott Rifenbark
  2018-10-31  7:15   ` Robert Berger
  2018-11-02 15:10     ` Peter Kjellerstedt
@ 2018-11-05  3:32   ` Paul Eggleton
  2018-11-08 22:41       ` [yocto] " Paul Eggleton
  2 siblings, 1 reply; 20+ messages in thread
From: Paul Eggleton @ 2018-11-05  3:32 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: Yocto discussion list, openembedded-core

On Wednesday, 31 October 2018 11:06:31 AM NZDT Scott Rifenbark wrote:
> I have an initial section at
> https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
> which is based on Richard's input.  I am sure there are more items.

OK, so I have removed Richard's items from the wiki page (since they're now
in the manual) and added items I have gathered from reviewing all of the 
git commits in the release. Let me know if you need clarification on anything
- everyone else, let us know if I missed or messed up something.

  https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

BTW I think the section on postinstalls (from Richard's input) is a little terse
and needs expansion - most importantly it needs to describe what actions the
user might need to take. I'll take care of this on review if nobody else does.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre




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

* Re: 2.6 migration guide
  2018-11-05  3:32   ` Paul Eggleton
@ 2018-11-08 22:41       ` Paul Eggleton
  0 siblings, 0 replies; 20+ messages in thread
From: Paul Eggleton @ 2018-11-08 22:41 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: yocto, openembedded-core

On Monday, 5 November 2018 4:32:26 PM NZDT Paul Eggleton wrote:
> On Wednesday, 31 October 2018 11:06:31 AM NZDT Scott Rifenbark wrote:
> > I have an initial section at
> > https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
> > which is based on Richard's input.  I am sure there are more items.
> 
> OK, so I have removed Richard's items from the wiki page (since they're now
> in the manual) and added items I have gathered from reviewing all of the 
> git commits in the release. Let me know if you need clarification on anything
> - everyone else, let us know if I missed or messed up something.
> 
>   https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

I forgot one thing:

------- snip -------

Python 3 profile-guided optimisation
-----------------------------------------------

The python3 recipe now enables profile-guided optimisation; this requires a little extra build time in exchange for improved performance on the target at runtime, and is only enabled if the current MACHINE has support for user-mode emulation in QEMU (i.e. "qemu-usermode" is in MACHINE_FEATURES, which it is by default, so the machine configuration would need to have opted out for it not to be). If you wish to disable Python profile-guided optimisation regardless of the value of MACHINE_FEATURES, then ensure that PACKAGECONFIG for python3 does not contain "pgo". You could accomplish the latter using PACKAGECONFIG_pn-python3 = "pgo" at the configuration level or by setting PACKAGECONFIG using a bbappend for the python3 recipe.

------- snip -------


> BTW I think the section on postinstalls (from Richard's input) is a little terse
> and needs expansion - most importantly it needs to describe what actions the
> user might need to take. I'll take care of this on review if nobody else does.

So what I think we need here is to copy part of the "Using exit 1 to explicitly defer a postinstall script until first boot..." paragraph that's mentioned in the 2.5 migration section. Would it make sense to actually break this out to its own place in the documentation (on "Deferring postinstalls to first boot") and then link to that from both places?

While I think of it, could you also move the _remove item that's in the "Bitbake Changes" section into the "Override Changes" section?

Thanks,
Paul


-- 

Paul Eggleton
Intel Open Source Technology Centre




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

* Re: [yocto] 2.6 migration guide
@ 2018-11-08 22:41       ` Paul Eggleton
  0 siblings, 0 replies; 20+ messages in thread
From: Paul Eggleton @ 2018-11-08 22:41 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: yocto, openembedded-core

On Monday, 5 November 2018 4:32:26 PM NZDT Paul Eggleton wrote:
> On Wednesday, 31 October 2018 11:06:31 AM NZDT Scott Rifenbark wrote:
> > I have an initial section at
> > https://yoctoproject.org/docs/2.6/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.6-release,
> > which is based on Richard's input.  I am sure there are more items.
> 
> OK, so I have removed Richard's items from the wiki page (since they're now
> in the manual) and added items I have gathered from reviewing all of the 
> git commits in the release. Let me know if you need clarification on anything
> - everyone else, let us know if I missed or messed up something.
> 
>   https://wiki.yoctoproject.org/wiki/FutureMigrationGuide

I forgot one thing:

------- snip -------

Python 3 profile-guided optimisation
-----------------------------------------------

The python3 recipe now enables profile-guided optimisation; this requires a little extra build time in exchange for improved performance on the target at runtime, and is only enabled if the current MACHINE has support for user-mode emulation in QEMU (i.e. "qemu-usermode" is in MACHINE_FEATURES, which it is by default, so the machine configuration would need to have opted out for it not to be). If you wish to disable Python profile-guided optimisation regardless of the value of MACHINE_FEATURES, then ensure that PACKAGECONFIG for python3 does not contain "pgo". You could accomplish the latter using PACKAGECONFIG_pn-python3 = "pgo" at the configuration level or by setting PACKAGECONFIG using a bbappend for the python3 recipe.

------- snip -------


> BTW I think the section on postinstalls (from Richard's input) is a little terse
> and needs expansion - most importantly it needs to describe what actions the
> user might need to take. I'll take care of this on review if nobody else does.

So what I think we need here is to copy part of the "Using exit 1 to explicitly defer a postinstall script until first boot..." paragraph that's mentioned in the 2.5 migration section. Would it make sense to actually break this out to its own place in the documentation (on "Deferring postinstalls to first boot") and then link to that from both places?

While I think of it, could you also move the _remove item that's in the "Bitbake Changes" section into the "Override Changes" section?

Thanks,
Paul


-- 

Paul Eggleton
Intel Open Source Technology Centre




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

* Re: [OE-core] 2.6 migration guide
  2018-11-08 22:41       ` [yocto] " Paul Eggleton
@ 2018-11-08 22:50         ` Paul Eggleton
  -1 siblings, 0 replies; 20+ messages in thread
From: Paul Eggleton @ 2018-11-08 22:50 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: yocto, openembedded-core

On Friday, 9 November 2018 11:41:42 AM NZDT Paul Eggleton wrote:
> You could accomplish the latter using PACKAGECONFIG_pn-python3 = "pgo" at
> the configuration level 

Oops, I meant PACKAGECONFIG_remove_pn-python3 = "pgo" here.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre




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

* Re: [yocto] 2.6 migration guide
@ 2018-11-08 22:50         ` Paul Eggleton
  0 siblings, 0 replies; 20+ messages in thread
From: Paul Eggleton @ 2018-11-08 22:50 UTC (permalink / raw)
  To: Scott Rifenbark; +Cc: yocto, openembedded-core

On Friday, 9 November 2018 11:41:42 AM NZDT Paul Eggleton wrote:
> You could accomplish the latter using PACKAGECONFIG_pn-python3 = "pgo" at
> the configuration level 

Oops, I meant PACKAGECONFIG_remove_pn-python3 = "pgo" here.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre




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

end of thread, other threads:[~2018-11-08 22:50 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-23 21:14 2.6 migration guide Paul Eggleton
2018-10-30 22:06 ` Scott Rifenbark
2018-10-31  7:15   ` Robert Berger
2018-10-31 15:33     ` Scott Rifenbark
2018-10-31 15:33       ` [yocto] " Scott Rifenbark
2018-10-31 15:50     ` Scott Rifenbark
2018-10-31 15:50       ` [yocto] " Scott Rifenbark
2018-10-31 16:01       ` Bas Mevissen
2018-10-31 16:01         ` [yocto] " Bas Mevissen
2018-10-31 16:56         ` Scott Rifenbark
2018-10-31 16:56           ` [yocto] " Scott Rifenbark
2018-11-02 15:10   ` [OE-core] " Peter Kjellerstedt
2018-11-02 15:10     ` Peter Kjellerstedt
2018-11-02 15:48     ` [OE-core] " Scott Rifenbark
2018-11-02 15:48       ` Scott Rifenbark
2018-11-05  3:32   ` Paul Eggleton
2018-11-08 22:41     ` Paul Eggleton
2018-11-08 22:41       ` [yocto] " Paul Eggleton
2018-11-08 22:50       ` [OE-core] " Paul Eggleton
2018-11-08 22:50         ` [yocto] " Paul Eggleton

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.