Re: [yocto] [PATCH] keep platform_extra and default_platform_extra lists ordered

2016-06-27 Thread Joshua G Lock
Hi Bill, This patch is for OE-Core so should go to  openembedded-c...@lists.openembedded.org Thanks, Joshua On Fri, 2016-06-24 at 21:22 -0700, Bill Randle wrote: > In RpmPM:insert_feeds_uris, the paths are kept in sets, which are > unordered, > but they are later used to set the priority for t

[yocto] [PATCH] keep platform_extra and default_platform_extra lists ordered

2016-06-24 Thread Bill Randle
In RpmPM:insert_feeds_uris, the paths are kept in sets, which are unordered, but they are later used to set the priority for the Smart channels, so unexpected results could occur. Change the sets to lists and use the same code as in create_configs() to add items to the list, reather than the set op