[OE-core] [PATCH] pseudo: add macro guard for seccomp

2020-04-26 Thread kai
From: Kai Kang It fails to compile pseudo-native on centos 7: | ports/linux/pseudo_wrappers.c: In function ‘prctl’: | ports/linux/pseudo_wrappers.c:129:14: error: ‘SECCOMP_SET_MODE_FILTER’ undeclared (first use in this function) |if (cmd == SECCOMP_SET_MODE_FILTER) { | ^ Add

Re: [OE-core] [PATCH 01/15] rpm: upgrade to 4.15.1

2020-04-26 Thread Richard Purdie
On Sun, 2020-04-26 at 22:40 +0200, Alexander Kanavin wrote: > I started looking into it, but quickly found that all or almost all > the failures are all due to the rpm upgrade, and the failures all > happen on three old distros: centos 7, debian 8, ubuntu 16.04. I did notice there was a reproducib

Re: [OE-core] [PATCH 01/15] rpm: upgrade to 4.15.1

2020-04-26 Thread Alexander Kanavin
I started looking into it, but quickly found that all or almost all the failures are all due to the rpm upgrade, and the failures all happen on three old distros: centos 7, debian 8, ubuntu 16.04. What is particularly odd is that the centos/debian failures are non-deterministic: in some cases rpm-

[OE-core] how to identify/remove all ruby-related content from an image?

2020-04-26 Thread Robert P. J. Day
(note: i think i discovered the simplest way to do this but ... onward.) given an OE image based on some old YP versions (mostly morty/2.2), there is a maddeningly intermittent build issue with one or the other of a small number of ruby gems, so my initial idea is, for now, to just remove all

[OE-core] [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG

2020-04-26 Thread Jeremy Puhlman
From: Jeremy Puhlman (From OE-Core rev: f2bcc384a6e90480b5b0f0c77530f014785b291e) Signed-off-by: Jeremy A. Puhlman Signed-off-by: Richard Purdie --- meta/recipes-devtools/qemu/qemu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/m

[OE-core] [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a

2020-04-26 Thread Jeremy Puhlman
From: Jeremy Puhlman (From OE-Core rev: ef5cff3db22e911b7a6ecf3dac212903757b4df1) Signed-off-by: Jeremy Puhlman Signed-off-by: Richard Purdie --- meta/recipes-devtools/gcc/gcc-runtime.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/r

[OE-core] [dunfell][PATCH 3/3] buildtools-extended-tarball: Add libstc++.a

2020-04-26 Thread Jeremy Puhlman
From: Jeremy Puhlman Builds like native-openjdk, really wants a to link some tools against the static version. Since when using the extended tarball, its the only place to get it, add the library. (From OE-Core rev: 59c4a3fdbbfd5a6aaba7e0a1675dcd5866a7f3a4) Signed-off-by: Jeremy Puhlman Signed

Re: [OE-core] [PATCH 01/15] rpm: upgrade to 4.15.1

2020-04-26 Thread Alexander Kanavin
On Sun, 26 Apr 2020 at 19:35, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > > There were some failures from this series: > > https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/890 > > It may be easiest for you to have a look through that build result as I > think all

Re: [OE-core] [PATCH 01/15] rpm: upgrade to 4.15.1

2020-04-26 Thread Richard Purdie
On Sat, 2020-04-25 at 19:28 +0200, Alexander Kanavin wrote: > Drop patches that were merged upstream. > > 0001-mono-find-provides-requires-do-not-use-monodis-from-.patch > modifies a file that was removed upstream. > > Add a 0001-rpmfc.c-do-not-run-file-classification-in-parallel.patch > as unfor

Re: [OE-core] Brief git.openembedded.org Downtime

2020-04-26 Thread Denys Dmytriyenko
On Sat, Apr 25, 2020 at 08:19:47PM -0700, Michael Halstead wrote: > This work is complete and all services are available. As a bonus the new > hardware is faster. Thank you, Michael! > Service restored at 2020-04-25 20:14 PDT. > > On Sat, Apr 25, 2020 at 5:52 PM Michael Halstead via lists.opene

Re: [OE-core] [PATCH RESEND] bitbake.conf: do not let DISTROOVERRIDES fall back to empty string

2020-04-26 Thread Masahiro Yamada
On Sun, Apr 26, 2020 at 5:13 PM Richard Purdie wrote: > > On Sat, 2020-04-25 at 14:37 -0700, Andre McCurdy wrote: > > On Sat, Apr 25, 2020 at 8:38 AM Richard Purdie > > wrote: > > > On Sun, 2020-04-26 at 00:19 +0900, Masahiro Yamada wrote: > > > > diff --git a/meta/conf/bitbake.conf b/meta/conf/b

Re: [OE-core] [PATCH v7 07/10] wic: misc: Do not find for executables in ALREADY_PROVIDED

2020-04-26 Thread Richard Purdie
On Sun, 2020-04-19 at 08:35 +0200, Ricardo Ribalda wrote: > From: Ricardo Ribalda Delgado > > Executables like tar won't be available on the native sysroot, as > they > are part of the ALREADY_PROVIDED variable. ASSUME_PROVIDED :) I fixed the commit message in -next. Cheers, Richard -=-=-=-=

[OE-core] [PATCH] oeqa/qemurunner: Clean up failure handling

2020-04-26 Thread Richard Purdie
If you fail to setup the tap devices, runqemu will error quickly however stdout/stderr are not shown to the user, instead a SystemExit traceback is shown. This could explain some long since unexplained failures on the autobuilder. Rework the error handling so SystemExit isn't used and the standard

[OE-core] [PATCH] targetcontrol: Fix leaking log handler

2020-04-26 Thread Richard Purdie
We had a mystery failure on the autobuilder where runqemu appeared to be failing as a logfile directory no longer existed. The key to reproducing was running a runqemu where the image was deleted (as devtool does), then running another runqemu test. E.g.: 'oe-selftest -r devtool.DevtoolExtractTes

Re: [OE-core] [PATCH v7 00/10] Fix permissions and embed-rotofs

2020-04-26 Thread Richard Purdie
On Sat, 2020-04-25 at 23:35 +0200, Ricardo Ribalda Delgado wrote: > On Sat, Apr 25, 2020 at 11:29 PM Richard Purdie > wrote: > > On Sat, 2020-04-25 at 23:25 +0200, Ricardo Ribalda Delgado wrote: > > Since my other email I couldn't resist poking at the code. Locally > > this > > patch fixed it so i

Re: [OE-core] [PATCH RESEND] bitbake.conf: do not let DISTROOVERRIDES fall back to empty string

2020-04-26 Thread Richard Purdie
On Sat, 2020-04-25 at 14:37 -0700, Andre McCurdy wrote: > On Sat, Apr 25, 2020 at 8:38 AM Richard Purdie > wrote: > > On Sun, 2020-04-26 at 00:19 +0900, Masahiro Yamada wrote: > > > diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf > > > index 4b544a22cd..eb3dd0007e 100644 > > > --- a/m