[oe] [meta-oe][PATCH] plymouth: Fix virtual RPROVIDES

2017-04-03 Thread Robert Joslyn
Runtime package names cannot have slashes in them, so replace "virtual/" with "virtual-" in RPROVIDES. Signed-off-by: Robert Joslyn --- meta-oe/recipes-core/plymouth/plymouth_0.9.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [oe] [meta-oe][PATCH 4/5] uml-utilities: respect LDFLAGS not only for mconsole but for other binaries as well

2017-04-03 Thread Khem Raj
This also fixes build with clang On Mon, Apr 3, 2017 at 11:37 AM, Martin Jansa wrote: > Signed-off-by: Martin Jansa > --- > .../uml-utilities-20040406/fix-ldflags.patch | 88 > ++ > 1 file changed, 88 insertions(+) > >

Re: [oe] [meta-oe][PATCH 01/43] gpm: Update to use git src uri

2017-04-03 Thread Martin Jansa
On Fri, Mar 31, 2017 at 09:42:05AM -0700, Khem Raj wrote: > Additional patches are upstream to fix build with gcc6 and clang > Add systemd unit file > > Signed-off-by: Khem Raj > --- > .../gpm/gpm-1.99.7/eglibc-2.17.patch | 12 - >

[oe] [meta-browser][PATCH] chromium: 52.0.2743.76 -> 54.0.2810.2

2017-04-03 Thread Trevor Woerner
Tested by building for and running on: - minnow - raspi3 (32-bit) - qemux86 - bbb On-target testing includes: - playing a video from youtube[1] - running (and passing) the octane tests (js)[2] Verified chromium-wayland still builds. [1] http://youtube.com [2] http://chromium.github.io/octane

[oe] [meta-oe][PATCH 5/5] xdotool: prevent compile-host-path QA issues

2017-04-03 Thread Martin Jansa
* as shown in the log.do_compile: cc1: warning: include location "/usr/local/include" is unsafe for cross-compilation [-Wpoison-system-directories] * it's caused by Makefile doing: DEFAULT_LIBS=-L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXtst DEFAULT_INC=-I/usr/X11R6/include

[oe] [meta-oe][PATCH 4/5] uml-utilities: respect LDFLAGS not only for mconsole but for other binaries as well

2017-04-03 Thread Martin Jansa
Signed-off-by: Martin Jansa --- .../uml-utilities-20040406/fix-ldflags.patch | 88 ++ 1 file changed, 88 insertions(+) diff --git a/meta-oe/recipes-extended/uml-utilities/uml-utilities-20040406/fix-ldflags.patch

[oe] [meta-oe][PATCH 3/5] pngcheck: respect LDFLAGS

2017-04-03 Thread Martin Jansa
* fixes: No GNU_HASH in the elf binary: '/tmp/work/armv5te-oe-linux-gnueabi/pngcheck/2.3.0-r0/packages-split/pngcheck/usr/bin/pngcheck' [ldflags] Signed-off-by: Martin Jansa --- meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb | 2 +- 1 file changed, 1

[oe] [meta-oe][PATCH 2/5] logfsprogs: Blacklist, doesn't have proper PV, doesn't respect LDFLAGS

2017-04-03 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb

[oe] [meta-oe][PATCH 1/5] flite-alsa: Blacklist as old and unmaintained

2017-04-03 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta-oe/recipes-support/flite/flite-alsa_1.3.bb | 9 + 1 file changed, 9 insertions(+) diff --git a/meta-oe/recipes-support/flite/flite-alsa_1.3.bb b/meta-oe/recipes-support/flite/flite-alsa_1.3.bb index 51012e673..ca9a99eeb

Re: [oe] [PATCH 0/2] Extend to kernel-module-split.bbclass

2017-04-03 Thread Martin Jansa
This needs to go to openembedded-core ML. On Mon, Apr 3, 2017 at 7:01 PM, Zoltan Boszormenyi wrote: > > The changes are in two topics: > > Support kernel module compression, both gz and xz. It needs > the kmod package to be built with zlib and/or lzma support. > The space saving

Re: [oe] [PATCH] v4l-utils: update to 1.12.3.

2017-04-03 Thread Otavio Salvador
On Mon, Apr 3, 2017 at 9:27 AM, Ismo Puustinen wrote: > Also add a patch which fixes building outside the source tree. > > Signed-off-by: Ismo Puustinen Acked-by: Otavio Salvador -- Otavio Salvador

Re: [oe] [PATCH] v4l-utils: update to 1.12.3.

2017-04-03 Thread Otavio Salvador
On Mon, Apr 3, 2017 at 9:27 AM, Ismo Puustinen wrote: > Also add a patch which fixes building outside the source tree. > > Signed-off-by: Ismo Puustinen > --- > ...a-ctl-Don-t-install-libmediactl-and-libv4.patch | 18 ++-- >

[oe] [PATCH 1/2] kernel-module-split.bbclass: Support module compression

2017-04-03 Thread Zoltan Boszormenyi
Support module compression: CONFIG_MODULE_COMPRESS=y and either CONFIG_MODULE_COMPRESS_GZIP=y or CONFIG_MODULE_COMPRESS_XZ=y Signed-off-by: Zoltan Boszormenyi --- meta/classes/kernel-module-split.bbclass | 18 -- 1 file changed, 16 insertions(+), 2 deletions(-)

[oe] [PATCH 0/2] Extend to kernel-module-split.bbclass

2017-04-03 Thread Zoltan Boszormenyi
The changes are in two topics: Support kernel module compression, both gz and xz. It needs the kmod package to be built with zlib and/or lzma support. The space saving is substantial. The kernel-modules meta-package should refer to module subpackages with versions, so if someone upgrades only a

[oe] [PATCH 2/2] kernel-module-split.bbclass: kernel-modules depend on versioned modules

2017-04-03 Thread Zoltan Boszormenyi
The kernel-modules meta-packages should depend on module subpackages with versions to allow upgrading the kernel easier with limiting the upgrade to selected packages. Signed-off-by: Zoltan Boszormenyi --- meta/classes/kernel-module-split.bbclass | 3 ++- 1 file changed, 2

Re: [oe] [PATCH] opencv: do not depend on swig.

2017-04-03 Thread Martin Jansa
On Mon, Apr 03, 2017 at 02:33:36PM +, Puustinen, Ismo wrote: > On Thu, 2017-03-30 at 11:39 +0200, Martin Jansa wrote: > > On Thu, Mar 23, 2017 at 12:48:16PM +0200, Ismo Puustinen wrote: > > > Since swig is a code generator, just depend on swig-native. > > > > Seems to cause following failure:

Re: [oe] [PATCH] opencv: do not depend on swig.

2017-04-03 Thread Puustinen, Ismo
On Thu, 2017-03-30 at 11:39 +0200, Martin Jansa wrote: > On Thu, Mar 23, 2017 at 12:48:16PM +0200, Ismo Puustinen wrote: > > Since swig is a code generator, just depend on swig-native. > > Seems to cause following failure: > http://errors.yoctoproject.org/Errors/Details/138491/ This is bit of a

Re: [oe] [meta-oe][PATCH 29/43] libqb: Upgrade to 1.0.1 release

2017-04-03 Thread Martin Jansa
On Fri, Mar 31, 2017 at 09:42:33AM -0700, Khem Raj wrote: > Add a patch needed for cross compiling This breaks corosync: http://errors.yoctoproject.org/Errors/Details/138932/ > Signed-off-by: Khem Raj > --- > ...-Remove-runtime-check-for-CLOCK_MONOTONIC.patch | 43 >

Re: [oe] [OE-core] State of bitbake world, Failed tasks 2017-04-01

2017-04-03 Thread Martin Jansa
On Mon, Apr 03, 2017 at 02:57:01PM +0200, Andrea Adami wrote: > On Mon, Apr 3, 2017 at 2:34 PM, Martin Jansa wrote: > > On Mon, Apr 03, 2017 at 02:17:49PM +0200, Martin Jansa wrote: > >> qemux86 shows more failures, I've dropped few master-next changes > >> after this

Re: [oe] [OE-core] State of bitbake world, Failed tasks 2017-04-01

2017-04-03 Thread Andrea Adami
On Mon, Apr 3, 2017 at 2:34 PM, Martin Jansa wrote: > On Mon, Apr 03, 2017 at 02:17:49PM +0200, Martin Jansa wrote: >> qemux86 shows more failures, I've dropped few master-next changes >> after this build. > > I've noticed that the report doesn't cover all currently

Re: [oe] State of bitbake world, Failed tasks 2017-04-01

2017-04-03 Thread Martin Jansa
On Mon, Apr 03, 2017 at 02:17:49PM +0200, Martin Jansa wrote: > qemux86 shows more failures, I've dropped few master-next changes > after this build. I've noticed that the report doesn't cover all currently triggered QA issues at least these 2 were missing in the report: count: 27 issue:

[oe] [PATCH] v4l-utils: update to 1.12.3.

2017-04-03 Thread Ismo Puustinen
Also add a patch which fixes building outside the source tree. Signed-off-by: Ismo Puustinen --- ...a-ctl-Don-t-install-libmediactl-and-libv4.patch | 18 ++-- ...tem-do-not-assume-building-in-source-tree.patch | 110 + .../{v4l-utils_1.10.1.bb =>

[oe] State of bitbake world, Failed tasks 2017-04-01

2017-04-03 Thread Martin Jansa
qemux86 shows more failures, I've dropped few master-next changes after this build. == Number of issues - stats == {| class='wikitable' !|Date !!colspan='3'|Failed tasks !!colspan='6'|Failed depencencies!!|Signatures

[oe] [meta-networking][morty][PATCH] uftp: Add recipe

2017-04-03 Thread Jaap de Jong
From cba20c0df65dcdd711009c5587142d2606deb1a9 Mon Sep 17 00:00:00 2001 From: Jaap de Jong Date: Mon, 3 Apr 2017 12:47:17 +0200 Subject: [meta-networking][morty][PATCH] uftp: Add recipe To: openembedded-devel@lists.openembedded.org ---