Re: [OE-core] [PATCH] packagegroup-core-base-utils.bb: check the gplv3 license

2020-12-17 Thread Alexander Kanavin
I’m not sure I like this approach. It doesn’t look like the right place to decide whether to include or not some packages based on specific licensing requirements, licenses for these and other items change over time, and there may be more undesirable licenses than just this one. Why not simply

Re: [OE-core] [PATCH 3/4] busybox: Run mdev as daemon

2020-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2020 at 7:52 PM Khem Raj wrote: > > On Thu, Dec 17, 2020 at 3:59 PM Andre McCurdy wrote: > > > > On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > > > > > When busybox is used for device management, kernel needs to support > > > older/obsolete mechanism via

[OE-core] [PATCH] packagegroup-core-base-utils.bb: check the gplv3 license

2020-12-17 Thread Yu, Mingli
From: Mingli Yu packagegroup-core-base-utils repends on some packages which are gplv3 compatilbe. Signed-off-by: Mingli Yu --- .../packagegroups/packagegroup-core-base-utils.bb | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git

[OE-core] [PATCH] mesa: update 20.2.4 → 20.3.1

2020-12-17 Thread Trevor Woerner
Two of the patches have been applied upstream: 0001-meson-Add-xcb-fixes-to-loader-when-using-x11-and-dri.patch 0005-vc4-use-intmax_t-for-formatted-output-of-timespec-me.patch The 'surfaceless' platform is now enabled by default, therefore it is no longer a valid choice. The meson

Re: [OE-core] [dunfell][PATCH] systemd: Fix reallocarray check

2020-12-17 Thread Dmitry Baryshkov
Hello, пт, 18 дек. 2020 г. в 06:57, Dmitry Baryshkov : > > From: Khem Raj > > Musl brought this latent issue to fore > > Signed-off-by: Khem Raj > Signed-off-by: Richard Purdie Please ignore this email, it was sent by mistake. -- With best wishes Dmitry -=-=-=-=-=-=-=-=-=-=-=- Links: You

[OE-core] [PATCH] curl: Update 7.73.0 -> 7.74.0

2020-12-17 Thread Jamaluddin, Khairul Rohaizzat
From: Khairul Rohaizzat Jamaluddin update to version 7.74.0 curl 7.74.0 hsts: add experimental support for Strict-Transport-Security with various bug fixes Reference: https://curl.se/changes.html#7_74_0 update includes fix for CVE: CVE-2020-8284 CVE-2020-8285 CVE-2020-8286 Signed-off-by:

[OE-core] [dunfell][PATCH] perl: fix installation failure because of shell issue

2020-12-17 Thread Dmitry Baryshkov
From: Dmitry Baryshkov On one of my buildservers I noticed perl do_install failing with the following message: | rm: cannot remove '/tmp-rpb-glibc/work/armv8-2a-linaro-linux/perl/5.32.0-r0/image//usr/lib/perl5/5.32.0/*/CORE/libperl.so': No such file or directory I tracked this down to shell

[OE-core] [dunfell][PATCH] systemd: Fix reallocarray check

2020-12-17 Thread Dmitry Baryshkov
From: Khem Raj Musl brought this latent issue to fore Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- .../0001-meson-Fix-reallocarray-check.patch | 30 +++ meta/recipes-core/systemd/systemd_246.6.bb| 1 + 2 files changed, 31 insertions(+) create mode 100644

Re: [OE-core] [PATCH 1/4] initscripts: use quotes for shell variable comparision

2020-12-17 Thread Khem Raj
On Thu, Dec 17, 2020 at 4:02 PM Andre McCurdy wrote: > > On Thu, Dec 17, 2020 at 3:54 PM Khem Raj wrote: > > > > On Thu, Dec 17, 2020 at 3:51 PM Andre McCurdy wrote: > > > > > > On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > > > > > > > Helps to execute it with busybox shell > > > > > >

Re: [OE-core] [PATCH 3/4] busybox: Run mdev as daemon

2020-12-17 Thread Khem Raj
On Thu, Dec 17, 2020 at 3:59 PM Andre McCurdy wrote: > > On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > > > When busybox is used for device management, kernel needs to support > > older/obsolete mechanism via CONFIG_UEVENT_HELPER and > > CONFIG_UEVENT_HELPER_PATH to enable

Re: [OE-core] [PATCH 3/4] busybox: Run mdev as daemon

2020-12-17 Thread Christopher Larson
Afaik, running a daemon in foreground mode and instructing start-stop-daemon to background it is common practice if the daemon doesn’t support writing a pidfile itself, so start-stop-daemon can handle it itself. Without using foregrounded process + -b, it wouldn’t know the resulting process id.

Re: [OE-core] [PATCH v2 1/5] systemd: update 246 -> 247

2020-12-17 Thread Anuj Mittal
On Wed, 2020-12-16 at 18:07 +, Richard Purdie wrote: > > Unfortunately there is still something not quite right in this > patchset > as it failed again during testing. There are a few different > problems: > > meta-intel in systemd-boot: > >

Re: [OE-core] [PATCH v2 1/5] systemd: update 246 -> 247

2020-12-17 Thread Chen Qi
On 12/18/2020 01:25 AM, Luca Bocassi wrote: On Wed, 2020-12-16 at 18:07 +, Richard Purdie wrote: On Mon, 2020-12-14 at 12:34 +, Luca Bocassi wrote: From: Luca Boccassi Update systemd to v247.1. Add rule for new oomd dbus conf and for new pam.d conf directory in /usr/lib. Drop

Re: [OE-core] [PATCH 1/4] initscripts: use quotes for shell variable comparision

2020-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2020 at 3:54 PM Khem Raj wrote: > > On Thu, Dec 17, 2020 at 3:51 PM Andre McCurdy wrote: > > > > On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > > > > > Helps to execute it with busybox shell > > > > How does it help? Adding quotes would help if $rootcheck is an empty > >

Re: [OE-core] [PATCH 3/4] busybox: Run mdev as daemon

2020-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > When busybox is used for device management, kernel needs to support > older/obsolete mechanism via CONFIG_UEVENT_HELPER and > CONFIG_UEVENT_HELPER_PATH to enable /proc/sys/kernel/hotplug but this > would require kernel defconfig change and will

Re: [OE-core] [PATCH 1/4] initscripts: use quotes for shell variable comparision

2020-12-17 Thread Khem Raj
On Thu, Dec 17, 2020 at 3:51 PM Andre McCurdy wrote: > > On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > > > Helps to execute it with busybox shell > > How does it help? Adding quotes would help if $rootcheck is an empty > string, but that's not specific to busybox. > > > Signed-off-by: Khem

Re: [OE-core] [PATCH 1/4] initscripts: use quotes for shell variable comparision

2020-12-17 Thread Andre McCurdy
On Thu, Dec 17, 2020 at 2:54 PM Khem Raj wrote: > > Helps to execute it with busybox shell How does it help? Adding quotes would help if $rootcheck is an empty string, but that's not specific to busybox. > Signed-off-by: Khem Raj > --- >

[OE-core] [PATCH 2/4] busybox: Install /etc/default/rcS when used as init system

2020-12-17 Thread Khem Raj
This helps in using sysvinit scripts with busybox init system as well Signed-off-by: Khem Raj --- meta/recipes-core/busybox/busybox.inc | 1 + meta/recipes-core/busybox/busybox_1.32.0.bb | 1 + meta/recipes-core/busybox/files/rcS.default | 1 + 3 files changed, 3 insertions(+) create

[OE-core] [PATCH 3/4] busybox: Run mdev as daemon

2020-12-17 Thread Khem Raj
When busybox is used for device management, kernel needs to support older/obsolete mechanism via CONFIG_UEVENT_HELPER and CONFIG_UEVENT_HELPER_PATH to enable /proc/sys/kernel/hotplug but this would require kernel defconfig change and will always be needed when mdev is used, intead run it in daemon

[OE-core] [PATCH 1/4] initscripts: use quotes for shell variable comparision

2020-12-17 Thread Khem Raj
Helps to execute it with busybox shell Signed-off-by: Khem Raj --- meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh

[OE-core] [PATCH 4/4] initscripts: Use initctl on sysvinit only

2020-12-17 Thread Khem Raj
Check if init system is sysvinit to recreate initctl, this ensures that it can be used with busybox init system as well Signed-off-by: Khem Raj --- .../initscripts/initscripts-1.0/mountall.sh | 22 --- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git

[OE-core] [PATCH 4/4] pulseaudio: switch build system from Autotools to Meson

2020-12-17 Thread Tanu Kaskinen
Upstream is moving from Autotools to Meson, Autotools support will be dropped in 15.0. I dropped some configure options: * --enable-tcpwrap=no doesn't (currently) have a counterpart in Meson, TCP Wrappers support is always disabled. * --disable-esound doesn't have a counterpart in Meson,

[OE-core] [PATCH 3/4] pulseaudio: disable GConf support

2020-12-17 Thread Tanu Kaskinen
The GConf module is only needed for older versions of paprefs, other applications shouldn't be interacting with PulseAudio's GConf settings. Paprefs isn't packaged in OpenEmbedded, so there probably aren't any users of the GConf functionality. My immediate motivation for doing this is that I'm

[OE-core] [PATCH 0/4] pulseaudio: Autotools to Meson

2020-12-17 Thread Tanu Kaskinen
The PulseAudio project plans to drop Autotools support in 15.0, so let's switch to Meson. The first patch removes OE_LT_RPATH_ALLOW, which is some old cruft that sounds like it has something to do Libtool, so it's perhaps relevant for the goal of dropping Autotools. The next two patches disable

[OE-core] [PATCH 2/4] pulseaudio: disable EsounD support

2020-12-17 Thread Tanu Kaskinen
This disables PulseAudio's EsounD emulation and the EsounD sink module. EsounD has been obsolete for a long time, and doesn't seem to be packaged for OpenEmbedded, so probably there are no applications around that would need PulseAudio's EsounD support. Signed-off-by: Tanu Kaskinen ---

[OE-core] [PATCH 1/4] pulseaudio: Remove OE_LT_RPATH_ALLOW

2020-12-17 Thread Tanu Kaskinen
I don't know what these variables were supposed to do, but there doesn't seem to be anything that would use these variables, so removing them should be safe. The PulseAudio recipe is the only place where these appear in the repository. These lines were included already in the original PulseAudio

[OE-core] [meta-oe][PATCH v5] iproute2: split ip to individual package

2020-12-17 Thread Sinan Kaya
Move the ip tool into its own package. Useful for size constrained systems that only want the ip tool. Signed-off-by: Sinan Kaya --- meta/recipes-connectivity/iproute2/iproute2.inc | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH v2 1/5] systemd: update 246 -> 247

2020-12-17 Thread Richard Purdie
On Thu, 2020-12-17 at 17:25 +, Luca Boccassi wrote: > On Wed, 2020-12-16 at 18:07 +, Richard Purdie wrote: > > On Mon, 2020-12-14 at 12:34 +, Luca Bocassi wrote: > > > From: Luca Boccassi > > > > > > Update systemd to v247.1. > > > Add rule for new oomd dbus conf and for new pam.d >

[OE-core] [PATCH v3] ltp: fix rpc build error

2020-12-17 Thread Kory Maincent
Add support to tirpc tests build. Export incdir and libdir to have the right path. Signed-off-by: Kory Maincent --- Change since v1: - Use PACKAGECONFIG to enable rpc tests - Improve ${libdir} and ${incdir} export Change since v2: - Improve ${libdir} and ${incdir} export

Re: [OE-core] [PATCH v2 1/5] systemd: update 246 -> 247

2020-12-17 Thread Luca Bocassi
On Wed, 2020-12-16 at 18:07 +, Richard Purdie wrote: > On Mon, 2020-12-14 at 12:34 +, Luca Bocassi wrote: > > From: Luca Boccassi > > > > Update systemd to v247.1. > > Add rule for new oomd dbus conf and for new pam.d > > conf directory in /usr/lib. > > Drop

Re: [OE-core] [PATCH v2] ltp: fix rpc build error

2020-12-17 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Kory Maincent > Sent: den 17 december 2020 15:08 > To: openembedded-core@lists.openembedded.org > Cc: thomas.petazz...@bootlin.com > Subject: [OE-core] [PATCH v2] ltp: fix rpc

[OE-core] [PATCH v2] ltp: fix rpc build error

2020-12-17 Thread Kory Maincent
Add support to tirpc tests build. Export incdir and libdir to have the right path. Signed-off-by: Kory Maincent --- Change since v1: - Use PACKAGECONFIG to enable rpc tests - Improve ${libdir} and ${incdir} export meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++--- 1 file changed, 3

[OE-core] [PATCH] u-boot: set SYSROOT_DIRS to /boot and ${sysconfdir}

2020-12-17 Thread Diego Sueiro
Since do_install is shipping files to /boot and ${sysconfdir}, we can set SYSROOT_DIRS to these dirs and allow recipes which depend on u-boot to use its installed artifacts from RECIPE_SYSROOT instead of DEPLOY_DIR_IMAGE. Signed-off-by: Diego Sueiro --- meta/recipes-bsp/u-boot/u-boot.inc | 2 ++

Re: [OE-core] [PATCH] ltp: fix rpc build error

2020-12-17 Thread Konrad Weihmann
On 17.12.20 11:47, Konrad Weihmann wrote: On 17.12.20 11:25, Köry Maincent wrote: Hello Konrad, On Thu, 17 Dec 2020 11:03:39 +0100 Konrad Weihmann wrote: On 17.12.20 10:55, Kory Maincent wrote: Signed-off-by: Kory Maincent ---    meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++---    1

Re: [OE-core] [PATCH] ltp: fix rpc build error

2020-12-17 Thread Konrad Weihmann
On 17.12.20 11:25, Köry Maincent wrote: Hello Konrad, On Thu, 17 Dec 2020 11:03:39 +0100 Konrad Weihmann wrote: On 17.12.20 10:55, Kory Maincent wrote: Signed-off-by: Kory Maincent --- meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++--- 1 file changed, 3 insertions(+), 3

Re: [OE-core] [PATCH] ltp: fix rpc build error

2020-12-17 Thread Kory Maincent
Hello Konrad, On Thu, 17 Dec 2020 11:03:39 +0100 Konrad Weihmann wrote: > On 17.12.20 10:55, Kory Maincent wrote: > > Signed-off-by: Kory Maincent > > --- > > meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git

Re: [OE-core] [PATCH] ltp: fix rpc build error

2020-12-17 Thread Konrad Weihmann
On 17.12.20 10:55, Kory Maincent wrote: Signed-off-by: Kory Maincent --- meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20200930.bb b/meta/recipes-extended/ltp/ltp_20200930.bb index

[OE-core] [PATCH] ltp: fix rpc build error

2020-12-17 Thread Kory Maincent
Add support to tirpc tests build. Export incdir and libdir to have the right path. Signed-off-by: Kory Maincent --- meta/recipes-extended/ltp/ltp_20200930.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20200930.bb

Re: [OE-core] [PATCH v2 8/8] gstreamer1.0-plugins-bad: remove meson option for plugins with dependencies always present

2020-12-17 Thread Jose Quaresma
Hi Richard, Thanks for overview of the merge process. Jose Richard Purdie escreveu no dia terça, 15/12/2020 à(s) 23:02: > Hi Jose, > > On Fri, 2020-12-11 at 21:13 +, Jose Quaresma wrote: > > I have think about this patch and probably is better to drop it. > > It is now on master-next > >