[OE-core] [PATCH] adwaita-icon-theme: fix rare install race

2019-09-13 Thread Ross Burton
There have been rare errors during the build of adwaita-icon-theme, such as: Exception: bb.process.ExecutionError: Execution of '.../temp/run.sysroot_stage_all.45186' failed with exit code 2: cpio: ./icons/Adwaita/32x32/legacy/_inst.34160_: Cannot stat: No such file or directory cpio:

Re: [OE-core] [PATCH 1/9] uefi.bbclass: add bbclass holding configuration for UEFI applications

2019-09-13 Thread Dmitry Eremin-Solenikov
пт, 13 сент. 2019 г. в 02:12, Mittal, Anuj : > > Hello, > > On Wed, 2019-09-11 at 12:29 +0300, dbarysh...@gmail.com wrote: > > From: Dmitry Eremin-Solenikov > > > > Create new bbclass defining common variables for all UEFI-related > > packages (bootloaders, test applications, etc). > > Have these

Re: [OE-core] [PATCH 1/9] uefi.bbclass: add bbclass holding configuration for UEFI applications

2019-09-13 Thread Dmitry Eremin-Solenikov
пт, 13 сент. 2019 г. в 05:14, Ang, Chin Huat : > > > +image = "bootUNKNOWN.efi" > > It might be better to raise an error here. Fine, I can change in v2. > > -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > On Behalf Of > dbarysh...@gmail.com >

Re: [OE-core] [PATCH V3] weston-init: Add possibility to run weston as non-root user

2019-09-13 Thread Ross Burton
On 11/09/2019 05:29, Khem Raj wrote: .../wayland/weston-init/weston.ini| 74 +++ core-image-weston now fails: file /etc/xdg/weston/weston.ini conflicts between attempted installs of weston-init-1.0-r0.noarch and weston-conf-1.0-r0.qemux86_64 Ross --

Re: [OE-core] [PATCH] glibc-testsuite: SkipRecipe if libc is not glibc

2019-09-13 Thread Peter Kjellerstedt
> -Original Message- > From: Khem Raj > Sent: den 13 september 2019 15:48 > To: Nathan Rossi > Cc: Patches and discussions about the oe-core layer c...@lists.openembedded.org>; Peter Kjellerstedt > > Subject: Re: [OE-core] [PATCH] glibc-testsuite: SkipRecipe if libc is > not glibc > >

[OE-core] [PATCH V4 2/2] weston-init: Add possibility to run weston as non-root user

2019-09-13 Thread Khem Raj
These changes are from meta-96boards primarily Launch the session via a udev rule based on what kind of display device is available delete weston-conf and move the fuctionality into weston-init other layers are doing same Signed-off-by: Khem Raj Cc: Otavio Salvador --- v2: Drop duplicate

[OE-core] [PATCH 1/2] musl: Update to latest master

2019-09-13 Thread Khem Raj
* Added copy_file_range posix_spawn_file_actions_add[f]chdir API * optreset is added to getopt * pthread fixes * Conditionally add legacy long definition of wchar_t Details [1] [1]

[OE-core] [PATCH v2 2/9] grub-bootconf: switch to uefi.bbclass

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use variables from uefi.bbclass instead of hardcoding them in the recipe. Signed-off-by: Dmitry Eremin-Solenikov --- meta/recipes-bsp/grub/grub-bootconf_1.00.bb | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git

[OE-core] [PATCH v2 4/9] grub-efi.bbclass: switch to uefi.bbclass

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use variables from uefi.bbclass instead of hardcoding them in the class. Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/grub-efi-cfg.bbclass | 1 - meta/classes/grub-efi.bbclass | 20 2 files changed, 4 insertions(+), 17

[OE-core] [PATCH v2 5/9] systemd-boot: switch to uefi.bbclass

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use variables from uefi.bbclass instead of hardcoding them in the recipe. Signed-off-by: Dmitry Eremin-Solenikov --- meta/recipes-core/systemd/systemd-boot_242.bb | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git

[OE-core] [PATCH v2 1/9] uefi.bbclass: add bbclass holding configuration for UEFI applications

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Create new bbclass defining common variables for all UEFI-related packages (bootloaders, test applications, etc). Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/uefi.bbclass | 26 ++ 1 file changed, 26 insertions(+) create mode

[OE-core] [PATCH v2 7/9] uefi.bbclass: provide efi population functions for live images

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Define common functions for populating EFI directories in live image. Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/uefi.bbclass | 28 1 file changed, 28 insertions(+) diff --git a/meta/classes/uefi.bbclass

[OE-core] [PATCH v2 8/9] grub-efi.bbclass: use efi_*_populate_common

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use common code form uefi.bbclass to populate efi directories. Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/grub-efi.bbclass | 22 ++ 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/meta/classes/grub-efi.bbclass

[OE-core] [PATCH v2 6/9] systemd-boot.bbclass: switch to uefi.bbclass

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use variables from uefi.bbclass instead of hardcoding them in the class. Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/systemd-boot.bbclass | 15 --- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git

Re: [OE-core] [PATCH V3] weston-init: Add possibility to run weston as non-root user

2019-09-13 Thread Khem Raj
On Fri, Sep 13, 2019 at 5:27 AM Ross Burton wrote: > > On 11/09/2019 05:29, Khem Raj wrote: > > .../wayland/weston-init/weston.ini| 74 +++ > > core-image-weston now fails: > >file /etc/xdg/weston/weston.ini conflicts between attempted installs > of

Re: [OE-core] [PATCH] glibc-testsuite: SkipRecipe if libc is not glibc

2019-09-13 Thread Khem Raj
On Fri, Sep 13, 2019 at 12:49 AM Nathan Rossi wrote: > > To prevent issues with parsing or dependencies, limit this recipe to use > only when the libc is glibc (and libc-locale is glibc-locale). > > Signed-off-by: Nathan Rossi > --- > meta/recipes-core/glibc/glibc-testsuite_2.30.bb | 7 +++

Re: [OE-core] [PATCHv2] timezone:upgrade 2019b -> 2019c

2019-09-13 Thread Adrian Bunk
On Thu, Sep 12, 2019 at 10:30:30AM -0700, akuster808 wrote: > On 9/12/19 7:28 AM, Adrian Bunk wrote: >... > I applaud those who  take the time and  effort of providing additional > information in the commit messages. >... Blind pasting of the complete upstream changelog is not exactly an effort

[OE-core] [PATCH v2 3/9] grub-efi: switch to uefi.bbclass

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use variables from uefi.bbclass instead of hardcoding them in the recipe. Signed-off-by: Dmitry Eremin-Solenikov --- meta/recipes-bsp/grub/grub-efi_2.04.bb | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git

[OE-core] [PATCH v2 9/9] systemd-boot.bbclass: use efi_*_populate_common

2019-09-13 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Use common code form uefi.bbclass to populate efi directories. Signed-off-by: Dmitry Eremin-Solenikov --- meta/classes/systemd-boot.bbclass | 18 +++--- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/meta/classes/systemd-boot.bbclass

Re: [OE-core] [PATCH v3] systemd: upgrade to 243

2019-09-13 Thread akuster808
On 9/13/19 4:26 PM, Scott Murray wrote: > PATCH REBASED: > == > 0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch > 0001-do-not-disable-buffer-in-writing-files.patch > 0002-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch >

[OE-core] [thud][PATCH] pango: fix CVE-2019-1010238

2019-09-13 Thread Armin Kuster
From: Anuj Mittal Signed-off-by: Anuj Mittal Signed-off-by: Armin Kuster (cherry picked from commit 65631a048f57965745dc8cc23cb80c4c3a71ba94) [Fix up for thud context] Signed-off-by: Armin Kuster --- .../pango/pango/CVE-2019-1010238.patch | 38 ++

[OE-core] [PATCH] icecc: blacklist pixman

2019-09-13 Thread Tim Blechmann
From: Tim Blechmann pixman declares prng_state as `omp threadprivate`, causing linker errors: prng_state: TLS reference mismatches non-TLS reference Signed-off-by: Tim Blechmann --- meta/classes/icecc.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/icecc.bbclass

[OE-core] [PATCH]] curl: update to 7.66.0

2019-09-13 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} (95%) diff --git a/meta/recipes-support/curl/curl_7.65.3.bb

Re: [OE-core] [PATCH 3/3] oe-selftest: extend virgl gtk test to also check the SDL option

2019-09-13 Thread Ross Burton
On 12/09/2019 16:36, Alexander Kanavin wrote: -def test_testimage_virgl_gtk(self): +def test_testimage_virgl_gtk_sdl(self): Failing on the autobuilder: https://autobuilder.yoctoproject.org/typhoon/#/builders/56/builds/707/steps/8/logs/step2d Ross --

[OE-core] [PATCH 2/4] cogl: Set depends to the virtual needed not explicitly on Mesa

2019-09-13 Thread Andrew F. Davis via Openembedded-core
The dependency is for EGL and GLES2 libraries. On some systems these are not provided by Mesa, list what is actually needed so the system can choose the correct provider. Signed-off-by: Andrew F. Davis --- meta/recipes-graphics/cogl/cogl-1.0.inc | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH 3/4] gtk+3: Set depends to the virtual needed not explicitly on Mesa

2019-09-13 Thread Andrew F. Davis via Openembedded-core
The dependency is for EGL and GLES2 libraries. On some systems these are not provided by Mesa, list what is actually needed so the system can choose the correct provider. Signed-off-by: Andrew F. Davis --- meta/recipes-gnome/gtk+/gtk+3.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[OE-core] [PATCH 1/4] libepoxy: Disable x11 when not building for x11

2019-09-13 Thread Andrew F. Davis via Openembedded-core
Although glx support is turned off, the build still tries to pull in some x11 components, disable x11 explicitly. Signed-off-by: Andrew F. Davis --- meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 4/4] weston: Set depends to the virtual needed not explicitly on Mesa

2019-09-13 Thread Andrew F. Davis via Openembedded-core
The dependency is for EGL and GLES2 libraries. On some systems these are not provided by Mesa, list what is actually needed so the system can choose the correct provider. Signed-off-by: Andrew F. Davis --- meta/recipes-graphics/wayland/weston_7.0.0.bb | 4 ++-- 1 file changed, 2 insertions(+),

[OE-core] [PATCH] python3-dbus: update to 1.2.12

2019-09-13 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- .../{python3-dbus_1.2.10.bb => python3-dbus_1.2.12.bb}| 8 1 file changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-devtools/python/{python3-dbus_1.2.10.bb => python3-dbus_1.2.12.bb} (82%) diff --git

[OE-core] [PATCH v2] curl: update to 7.66.0

2019-09-13 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} (95%) diff --git a/meta/recipes-support/curl/curl_7.65.3.bb

Re: [OE-core] [PATCH 3/3] oe-selftest: extend virgl gtk test to also check the SDL option

2019-09-13 Thread Alexander Kanavin
On Fri, 13 Sep 2019 at 21:15, Ross Burton wrote: > On 12/09/2019 16:36, Alexander Kanavin wrote: > > -def test_testimage_virgl_gtk(self): > > +def test_testimage_virgl_gtk_sdl(self): > > Failing on the autobuilder: > >

Re: [OE-core] [PATCH 4/4] weston: Set depends to the virtual needed not explicitly on Mesa

2019-09-13 Thread Denys Dmytriyenko
On Fri, Sep 13, 2019 at 03:36:14PM -0400, Andrew F. Davis via Openembedded-core wrote: > The dependency is for EGL and GLES2 libraries. On some systems these > are not provided by Mesa, list what is actually needed so the system > can choose the correct provider. > > Signed-off-by: Andrew F.

Re: [OE-core] [PATCH v2] curl: update to 7.66.0

2019-09-13 Thread akuster808
On 9/13/19 12:17 PM, Oleksandr Kravchuk wrote: > Signed-off-by: Oleksandr Kravchuk What is in Version 2? > --- > meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > rename meta/recipes-support/curl/{curl_7.65.3.bb =>

Re: [OE-core] [PATCH v2] curl: update to 7.66.0

2019-09-13 Thread Oleksandr Kravchuk
Just a mistake - there was no v1. On 13/09/2019 22:58, akuster808 wrote: > > On 9/13/19 12:17 PM, Oleksandr Kravchuk wrote: >> Signed-off-by: Oleksandr Kravchuk > What is in Version 2? >> --- >> meta/recipes-support/curl/{curl_7.65.3.bb => curl_7.66.0.bb} | 4 ++-- >> 1 file changed, 2

[OE-core] [PATCH v3] systemd: upgrade to 243

2019-09-13 Thread Scott Murray
PATCH REBASED: == 0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch 0001-do-not-disable-buffer-in-writing-files.patch 0002-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch 0004-add-fallback-parse_printf_format-implementation.patch

[OE-core] [Warrior][PATCH] Curl: Security fix for CVE-2019-5482

2019-09-13 Thread Armin Kuster
From: Armin Kuster Source: curl.org MR: 99905 Type: Security Fix Disposition: Backport from https://github.com/curl/curl/commit/facb0e4662415b5f28163e853dc6742ac5fafb3d ChangeID: e0c807da8937f687a4b2e28eaa6b4b5a51845bc5 Description: Fixes CVE-2019-5482 - Affected versions: libcurl >= 7.19.4 to

Re: [OE-core] [PATCH v2] systemd: upgrade to 243

2019-09-13 Thread Scott Murray
On Fri, 13 Sep 2019, akuster808 wrote: > On 9/13/19 3:28 PM, Scott Murray wrote: > > On Sat, 14 Sep 2019, Adrian Bunk wrote: > > > >> On Fri, Sep 13, 2019 at 05:58:09PM -0400, Scott Murray wrote: [snip] > > When your happy with the series, I will through it on AB this weekend > for a testrun. > >

[OE-core] [thud][PATCH] libxslt: fix CVE-2019-13117 CVE-2019-13118

2019-09-13 Thread Armin Kuster
From: Anuj Mittal (From OE-Core rev: 7dc3048fec88dd62ef49ef16517b7382ab7cf2a5) Signed-off-by: Anuj Mittal Signed-off-by: Richard Purdie [Fixup for thud context] Signed-off-by: Armin Kuster --- .../libxslt/files/CVE-2019-13117.patch | 33 ++

[OE-core] ✗ patchtest: failure for libxslt: fix CVE-2019-13117 CVE-2019-13118

2019-09-13 Thread Patchwork
== Series Details == Series: libxslt: fix CVE-2019-13117 CVE-2019-13118 Revision: 1 URL : https://patchwork.openembedded.org/series/19918/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been

[OE-core] ✗ patchtest: failure for systemd: upgrade to 243

2019-09-13 Thread Patchwork
== Series Details == Series: systemd: upgrade to 243 Revision: 1 URL : https://patchwork.openembedded.org/series/19912/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

[OE-core] [PATCH v2] systemd: upgrade to 243

2019-09-13 Thread Scott Murray
PATCH REBASED: == 0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch 0001-do-not-disable-buffer-in-writing-files.patch 0002-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch 0004-add-fallback-parse_printf_format-implementation.patch

Re: [OE-core] [PATCH v2] systemd: upgrade to 243

2019-09-13 Thread Adrian Bunk
On Fri, Sep 13, 2019 at 05:58:09PM -0400, Scott Murray wrote: >... > --- /dev/null > +++ > b/meta/recipes-core/systemd/systemd/0002-src-login-brightness.c-include-wait.h.patch > @@ -0,0 +1,25 @@ > +Include wait.h > + > +Fixes: > +src/login/logind-brightness.c:158:85: error: 'WEXITED' undeclared

Re: [OE-core] [PATCH v2] systemd: upgrade to 243

2019-09-13 Thread Scott Murray
On Sat, 14 Sep 2019, Adrian Bunk wrote: > On Fri, Sep 13, 2019 at 05:58:09PM -0400, Scott Murray wrote: > >... > > --- /dev/null > > +++ > > b/meta/recipes-core/systemd/systemd/0002-src-login-brightness.c-include-wait.h.patch > > @@ -0,0 +1,25 @@ > > +Include wait.h > > + > > +Fixes: > >

Re: [OE-core] [PATCH v2] systemd: upgrade to 243

2019-09-13 Thread akuster808
On 9/13/19 3:28 PM, Scott Murray wrote: > On Sat, 14 Sep 2019, Adrian Bunk wrote: > >> On Fri, Sep 13, 2019 at 05:58:09PM -0400, Scott Murray wrote: >>> ... >>> --- /dev/null >>> +++ >>> b/meta/recipes-core/systemd/systemd/0002-src-login-brightness.c-include-wait.h.patch >>> @@ -0,0 +1,25 @@

[OE-core] [PATCH] systemd: upgrade to 243

2019-09-13 Thread Scott Murray
PATCH REBASED: == 0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch 0001-do-not-disable-buffer-in-writing-files.patch 0002-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch 0004-add-fallback-parse_printf_format-implementation.patch

Re: [OE-core] [PATCH 3/3] busybox-inittab: minor formatting tweaks

2019-09-13 Thread Denys Dmytriyenko
On Thu, Sep 12, 2019 at 03:56:24PM -0700, Andre McCurdy wrote: > Add an empty line to inittab before the line(s) which start getty. > > Also cleanup indent in recipe do_install(). > > Signed-off-by: Andre McCurdy Reviewed-by: Denys Dmytriyenko > --- > .../busybox/busybox-inittab_1.31.0.bb

[OE-core] [PATCH] glibc-testsuite: SkipRecipe if libc is not glibc

2019-09-13 Thread Nathan Rossi
To prevent issues with parsing or dependencies, limit this recipe to use only when the libc is glibc (and libc-locale is glibc-locale). Signed-off-by: Nathan Rossi --- meta/recipes-core/glibc/glibc-testsuite_2.30.bb | 7 +++ 1 file changed, 7 insertions(+) diff --git

Re: [OE-core] [PATCH] glibc-testsuite: Depend on virtual/libc-locale instead of glibc-locale

2019-09-13 Thread Nathan Rossi
On Thu, 12 Sep 2019 at 02:00, Peter Kjellerstedt wrote: > > This avoids the following error when using some other toolchain than > the one provided by OE-Core: > > ERROR: Nothing PROVIDES 'glibc-locale' (but > .../meta/recipes-core/glibc/glibc-testsuite_2.30.bb DEPENDS on or > otherwise

[OE-core] [PATCH] perf: fix build on kernels which don't have ${S}/tools/include/linux/bits.h

2019-09-13 Thread Martin Jansa
* tools/include/linux/bits.h was added in v4.20-rc1 with this commit: commit ba4aa02b417f08a0bee5e7b8ed70cac788a7c854 Author: Arnaldo Carvalho de Melo Date: Tue Sep 25 10:55:59 2018 -0300 tools include: Adopt linux/bits.h * also if you're building for such older kernel you will