Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Ibarra Lopez, Humberto
<humberto.ibarra.lo...@intel.com>; Alexander Kanavin <alexander.kana...@linux.intel.com>; Burton, Ross <ross.bur...@intel.com> Cc: OE-core <openembedded-core@lists.openembedded.org> Subject: Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS vari

Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Richard Purdie
On Wed, 2017-03-15 at 15:38 +, Ibarra Lopez, Humberto wrote: > Sorry, missed the previous mail. > > I am not sure how to improve the hardcoding there, I don't like it > either, but couldn't find an alternative. The thing is that we need > the ip of the host as seen from the target to run

Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Ibarra Lopez, Humberto
Kanavin [mailto:alexander.kana...@linux.intel.com] Sent: Wednesday, March 15, 2017 5:19 AM To: Burton, Ross <ross.bur...@intel.com> Cc: OE-core <openembedded-core@lists.openembedded.org>; Ibarra Lopez, Humberto <humberto.ibarra.lo...@intel.com> Subject: Re: [OE-core] [PATCH 1/3

Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Patrick Ohly
On Wed, 2017-03-15 at 13:19 +0200, Alexander Kanavin wrote: > On 03/15/2017 01:13 PM, Burton, Ross wrote: > > > > +cls.repo_server.port = 8080 > > > > > > What if parallel selftests are running at once? Can this service be > > started before the image is created, so the right port can

Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Alexander Kanavin
On 03/15/2017 01:13 PM, Burton, Ross wrote: +cls.repo_server.port = 8080 What if parallel selftests are running at once? Can this service be started before the image is created, so the right port can be written into the image? I don't know. I only followed what Humberto wrote

Re: [OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-15 Thread Burton, Ross
On 14 March 2017 at 17:27, Alexander Kanavin < alexander.kana...@linux.intel.com> wrote: > +cls.repo_server.port = 8080 > What if parallel selftests are running at once? Can this service be started before the image is created, so the right port can be written into the image? Ross --

[OE-core] [PATCH 1/3] rpm: add support for remote package feeds via PACKAGE_FEED_URIS variable

2017-03-14 Thread Alexander Kanavin
I've used a previous patch (which was never merged) by Humberto Ibarra as a model for how to do runtime testing of this feature (e.g. we need to boot an image, run dnf on it, and check that it is indeed able to access the remote repo over http). Here's his