Re: [meta-virtualization] [PATCH] seabios: uri corrected to https

2017-10-05 Thread Bruce Ashfield
merged. Bruce On Thu, Oct 5, 2017 at 5:00 AM, Dariusz Pelowski wrote: > There's a problem with fetching SeaBIOS source code via http. > SeaBIOS server returns 308: Permanent Redirect which fails on > wget 1.17.1. The official source code uri goes to https, this >

Re: [meta-virtualization] [PATCH 0/4] netns update and runc fixes

2017-10-05 Thread Bruce Ashfield
On Thu, Oct 5, 2017 at 9:38 AM, Paul Barker wrote: > * Update netns to the latest release. > > * Fix runc compilation problems when targeting qemux86-64. Both runc-docker > and > runc-opencontainers have been build tested with these changes. > > * Drop an old patch which

Re: [meta-virtualization] [PATCH V4 1/3] sanity-meta-virt.bbclass: add class for bbappend files checking

2017-10-05 Thread Bruce Ashfield
On Thu, Oct 5, 2017 at 12:15 PM, Paul Barker wrote: > On Mon, Oct 2, 2017 at 6:12 PM, Bruce Ashfield > wrote: >> v4 is merged. >> >> Bruce >> >> On Fri, Sep 29, 2017 at 11:06 PM, Chen Qi wrote: >>> Add a new class,

Re: [meta-virtualization] [PATCH V4 1/3] sanity-meta-virt.bbclass: add class for bbappend files checking

2017-10-05 Thread Mark Hatle
On 10/5/17 11:15 AM, Paul Barker wrote: > On Mon, Oct 2, 2017 at 6:12 PM, Bruce Ashfield > wrote: >> v4 is merged. >> >> Bruce >> >> On Fri, Sep 29, 2017 at 11:06 PM, Chen Qi wrote: >>> Add a new class, sanity-meta-virt.bbclass, to check for

[meta-virtualization] [PATCH 4/4] runc: Don't override GOARCH or GOROOT

2017-10-05 Thread Paul Barker
These variables are now set correctly by go.bbclass in oe-core. Changing them to point at the native sysroot just leads to build errors in some cases, for example when the target and host have matching GOARCH but not matching c libraries. Signed-off-by: Paul Barker ---

[meta-virtualization] [PATCH 2/4] runc: Drop obsolete patch

2017-10-05 Thread Paul Barker
This patch hasn't been used in a long time. Signed-off-by: Paul Barker --- .../0001-nsexec-fix-build-against-musl-libc.patch | 48 -- 1 file changed, 48 deletions(-) delete mode 100644

[meta-virtualization] [PATCH 3/4] runc: Use correct go cross-compiler

2017-10-05 Thread Paul Barker
The makefiles for both providers of runc need to be patched in similar ways to ensure that we use the binaries from go-cross and not go-native. Signed-off-by: Paul Barker --- .../0001-Use-correct-go-cross-compiler.patch | 85 ++

[meta-virtualization] [PATCH] seabios: uri corrected to https

2017-10-05 Thread Dariusz Pelowski
There's a problem with fetching SeaBIOS source code via http. SeaBIOS server returns 308: Permanent Redirect which fails on wget 1.17.1. The official source code uri goes to https, this patch aligns SRC_URI to officialy provided by SeaBIOS team. Signed-off-by: Dariusz Pelowski