Re: [OE-core] [PATCH v4 2/2] mesa: Upgrade to 19.3.1

2019-12-30 Thread Alistair Francis
On Fri, Dec 20, 2019 at 10:36 PM Alistair Francis wrote: > > Upgrade mesa to 19.3 and refresh the patches. > > As MESA_EGL_NO_X11_HEADERS was renamed to EGL_NO_X11 in [1] we are going > to change the do_install and add a patch to libepoxy to use the new > define. > > 1: >

Re: [OE-core] [zeus][PATCH 0/9] zeus -next review

2019-12-30 Thread Mittal, Anuj
Hi Richard, On Wed, 2019-12-18 at 11:20 +0800, Anuj Mittal wrote: > The following changes since commit > 9c0c8e51dd345dd1b6ba240b027d24a18f55757c: > > YP 3.0.1 Docs: Fixed manual revision tables. (2019-12-16 23:32:39 > +) > > are available in the Git repository at: > >

[OE-core] [PATCH V2] util-linux: Use PCRE for hardlink

2019-12-30 Thread Khem Raj
Use PCRE, this enables using posix extended Regexps on cmdline Signed-off-by: Khem Raj --- v2: Document the pcre2 pkgconfig usage meta/recipes-core/util-linux/util-linux.inc | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/recipes-core/util-linux/util-linux.inc

Re: [OE-core] [PATCH] python3: Upgrade 3.7.5 -> 3.7.6

2019-12-30 Thread Adrian Bunk
ping This should not conflict with a later upgrade to 3.8, and exposure in master would in any case give further testing before backporting to zeus+warrior. Thanks Adrian On Fri, Dec 20, 2019 at 06:51:11AM +0200, Adrian Bunk wrote: > Signed-off-by: Adrian Bunk > --- >

Re: [OE-core] [PATCH 2/2] bitbake.conf: Simplify TARGET_SYS/SDK_SYS

2019-12-30 Thread Richard Purdie
On Mon, 2019-12-30 at 14:10 -0800, Khem Raj wrote: > On Mon, Dec 30, 2019 at 12:48 AM Richard Purdie > wrote: > > As pointed out by Masahiro Yamada , ('' or > > 'custom') > > equates to "custom" and this code seems unecesaarily complicated > > and unused. > > > > It was likely intended to

[OE-core] [PATCH 1/2] subversion: upgrade 1.12.2 -> 1.13.0

2019-12-30 Thread Richard Purdie
Signed-off-by: Richard Purdie --- .../subversion/{subversion_1.12.2.bb => subversion_1.13.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/subversion/{subversion_1.12.2.bb => subversion_1.13.0.bb} (96%) diff --git

[OE-core] [PATCH 2/2] bitbake.conf: Simplify TARGET_SYS/SDK_SYS

2019-12-30 Thread Richard Purdie
As pointed out by Masahiro Yamada , ('' or 'custom') equates to "custom" and this code seems unecesaarily complicated and unused. It was likely intended to supress the value if XXX_OS was set to '' but the code doesn't actually do that. Simplify it as we shouldn't have this indirection if we

Re: [OE-core] [PATCH 01/19] util-linux: Use PCRE for hardlink

2019-12-30 Thread Richard Purdie
On Sun, 2019-12-29 at 10:43 -0800, Khem Raj wrote: > Use PCRE, this enables using posix extended Regexps on cmdline > > Signed-off-by: Khem Raj > --- > meta/recipes-core/util-linux/util-linux.inc | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git

[OE-core] [PATCH] nfs-utils: Drop unneeded patches, cmdline option overrides

2019-12-30 Thread Khem Raj
Ensure that it can build with clang as well on the way Signed-off-by: Khem Raj --- ...-Do-not-fatalize-Wmissing-prototypes.patch | 40 .../nfs-utils/nfs-utils/clang-warnings.patch | 61 +++ .../nfs-utils/nfs-utils_2.4.2.bb | 5 +- 3 files changed, 62

[OE-core] [PATCH] systemd: fix ${PN}-journal-remote systemd unit

2019-12-30 Thread André Draszik
Commit d31ff84a5f47 ("systemd: fix PN-container package splitting"), d0b2cedfb099 in poky, created a new package for the remote journal, but introduced a typo during declaration of the systemd unit part of that package. Fix it. Signed-off-by: André Draszik ---

[OE-core] Yocto Project Newcomer & Unassigned Bugs - Help Needed

2019-12-30 Thread sjolley.yp.pm
All, The triage team is starting to try and collect up and classify bugs which a newcomer to the project would be able to work on in a way which means people can find them. They're being listed on the triage page under the appropriate heading:

[OE-core] [PATCH] runqemu: Add multiconfig support

2019-12-30 Thread Joshua Watt
Users may want to run qemu against a specific multiconfig instead of the base configuration, so give them the ability to specify which config should be used with the MULTICONFIG environment variable. Signed-off-by: Joshua Watt --- scripts/runqemu | 34 +++--- 1 file

[OE-core] [PATCH] python3: RDEPEND on libgcc

2019-12-30 Thread Joshua Watt
Python uses features of glibc that require it to dynamically load (i.e. dlopen()) libgcc_s at runtime. However, since this isn't a link time dependency, it doesn't get picked up automatically by bitbake so manually add it to RDEPENDS. There is an outstanding bug in Python to make it explicitly

[OE-core] [PATCH] classes/image_types_wic: Depend on do_image_complete tasks

2019-12-30 Thread Joshua Watt
do_image_wic now depends on the do_image_complete tasks from all it's dependencies. This allows images recipes specified in WKS_FILE_DEPENDS (for example, if a machine wants to put a initrd into a boot partition) to correctly trigger rebuilds for the wic image. Note that recrdeptask can't be used

[OE-core] [PATCH] lttng-ust: Turn examples into a packageconfig

2019-12-30 Thread Khem Raj
examples are unbuildable in some cases, see [1] this helps in making them optional via the newly addded configure option in 2.11 release [1] https://bugs.lttng.org/issues/1132 [2] https://patchwork.ozlabs.org/patch/832106/ Signed-off-by: Khem Raj ---

Re: [OE-core] [PATCH 2/2] bitbake.conf: Simplify TARGET_SYS/SDK_SYS

2019-12-30 Thread Khem Raj
On Mon, Dec 30, 2019 at 12:48 AM Richard Purdie wrote: > > As pointed out by Masahiro Yamada , ('' or 'custom') > equates to "custom" and this code seems unecesaarily complicated and unused. > > It was likely intended to supress the value if XXX_OS was set to '' but the > code doesn't actually do