[OE-core] [PATCH] pipewire: add recipe from meta-openembedded and upgrade to 0.3.23

2021-03-09 Thread Carlos Rafael Giani via lists.openembedded.org
PipeWire is a new multimedia daemon that aims to be a replacement for both JACK and PulseAudio. Additionally, it provides IO and routing functionality for video. It also has PulseAudio shim to act as a drop-in replacement. Signed-off-by: Carlos Rafael Giani --- .../pipewire/pipewire_0.3.23.bb

[OE-core] [dunfell][PATCH] cups: use /run instead /var/run in systemd's unit file

2021-03-09 Thread kai
From: Chen Qi /var/run has been deprecated by systemd, so use /run instead, as suggested by systemd. [Yocto #14152] Signed-off-by: Chen Qi Signed-off-by: Richard Purdie (cherry picked from commit 6c3f56020da7a26c2daea73e39c2f324f1f597db) Signed-off-by: Kai Kang --- meta/recipes-extended/cup

Re: [OE-core] [PATCH] glibc: Backport patch to fix _SC_LEVEL1_ICACHE_LINESIZE

2021-03-09 Thread Khem Raj
This is ok with me On Tue, Mar 9, 2021 at 12:14 PM Andrei Gherzan wrote: > From: Andrei Gherzan > > Signed-off-by: Andrei Gherzan > --- > ...-_SC_LEVEL1_ICACHE_LINESIZE-BZ-27444.patch | 185 ++ > meta/recipes-core/glibc/glibc_2.33.bb | 1 + > 2 files changed, 186 ins

[OE-core][dunfell 00/27] Pull request (cover letter only)

2021-03-09 Thread Steve Sakoman
The following changes since commit dd893279f352e290c23577a0f91df1b8c6232f10: selftest/reproducible: Don't call sync between each file compare (2021-03-04 04:19:50 -1000) are available in the Git repository at: git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next http:

Re: [OE-core] [PATCH v9] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Richard Purdie
On Tue, 2021-03-09 at 13:56 +, luca.bocca...@gmail.com wrote: > From: Luca Boccassi > > Recently util-linux gained an (optional) build dependency on libcryptsetup. > But libcryptsetup build-depends on util-linux for blkid (optional, can be > disabled) > and uuid (mandatory). > Split out util

Re: [OE-core] [PATCH] resolvconf: add missing dependencies to RDEPENDS

2021-03-09 Thread Andre McCurdy
On Tue, Mar 9, 2021 at 7:23 AM Frans Meulenbroeks wrote: > > Freaking yahoo email seems to have no option any more to quote decently. > Guess it is time for a new email provider :-) > Anyway my response below prefixed with FM: > > Op dinsdag 9 maart 2021 00:26:05 CET schreef Khem Raj : > On 3/8/21

[OE-core] [poky-contrib][PATCH 3/4] package.bbclass: Add handle_qa_error check

2021-03-09 Thread Meh Mbeh Ida Delphine
package_qa_handle_error() from insane.bbclass handles display of warnings by allowing the user decide whether they want the issues treated as warnings, errors or hidden completely. This is done by setting a variable "license_source_spdx" in local.conf. Signed-off-by: Ida Delphine --- meta/cla

[OE-core] [poky-contrib][PATCH 2/4] package.bbclass: Displays warnings for just licences in recipes.

2021-03-09 Thread Meh Mbeh Ida Delphine
After the comparism between computedpkglics and recipe lics, the warnings are displayed if and only if there are licenses in the recipes not found in the sources. Signed-off-by: Ida Delphine --- meta/classes/package.bbclass | 17 - 1 file changed, 12 insertions(+), 5 deletions(

[OE-core] [poky-contrib][PATCH 1/4] oe.license: Add functions to split and canonicalise license strings.

2021-03-09 Thread Meh Mbeh Ida Delphine
These functions ensures recipe LICENSE strings are split into their individual licenses and then canonicalised to easily enable their matching with licenses of sources during the packaging process. Signed-off-by: Ida Delphine --- meta/lib/oe/license.py | 23 +++ 1 file chan

[OE-core] [poky-contrib][PATCH 4/4] Moved logic to get filelics from package.bbclass to license.py

2021-03-09 Thread Meh Mbeh Ida Delphine
The logic to obtain filelics is moved from package.bbclass to license.py as a standalone function. Also, the check in package.bbclass after obtaining filelics ensures licenses with * WITH Linux-syscall-note" are ignored, as long as they're only in header files. Signed-off-by: Ida Delphine ---

[OE-core] [PATCH v2] webkitgtk: Enhance check for atomics to include 1 byte CAS

2021-03-09 Thread Khem Raj
This fixes linking failures Source/WTF/wtf/text/StringImpl.h:1115: undefined reference to `__atomic_compare_exchange_1' Signed-off-by: Khem Raj --- v2: Switch to upstream submitted patch instead of making RISCV specific ...ics-check-to-include-1-byte-CAS-test.patch | 77 +++ me

Re: [OE-core] [PATCH] webkitgtk: Use linker options to reduce memory overhead during linking

2021-03-09 Thread Andreas Müller
On Tue, Mar 9, 2021 at 1:01 PM Alexander Kanavin wrote: > > Thanks Khem, this makes sense. > > Alex > webkitgtk is one of the top swappers for my (very old) machines - would be cool if this has an end Andreas -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply

Re: [OE-core] [PATCH 1/5] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Yes I agree, > +DESCRIPTION = "${SUMMARY}" I was actually contemplating this before. Thanks, Dorinda. On Tue, Mar 9, 2021, 17:47 Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Tue, 2021-03-09 at 12:35 +0100, Dorinda wrote: > > Added missing HOMEPAGE and DESCRIPTION found usin

Re: [OE-core] [PATCH] glibc: Bring back L1 icache line size

2021-03-09 Thread Andrei Gherzan
Superseded by https://lists.openembedded.org/g/openembedded-core/message/149192 --- Andrei On Fri, 19 Feb 2021, at 23:53, Andrei Gherzan wrote: > From: Andrei Gherzan > > It was observerd that with glibc 2.33, sysconf reports unsupported > option (-1) for _SC_LEVEL1_ICACHE_LINESIZE. > > This ca

[OE-core] [PATCH] glibc: Backport patch to fix _SC_LEVEL1_ICACHE_LINESIZE

2021-03-09 Thread Andrei Gherzan
From: Andrei Gherzan Signed-off-by: Andrei Gherzan --- ...-_SC_LEVEL1_ICACHE_LINESIZE-BZ-27444.patch | 185 ++ meta/recipes-core/glibc/glibc_2.33.bb | 1 + 2 files changed, 186 insertions(+) create mode 100644 meta/recipes-core/glibc/glibc/0033-x86-Handle-_SC_LEVEL1_

Re: [OE-core] [PATCH 08/24] libdnf: update 0.55.2 -> 0.58.0

2021-03-09 Thread Alexander Kanavin
On Mon, 8 Mar 2021 at 23:29, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Mon, 2021-03-01 at 12:53 +0100, Alexander Kanavin wrote: > > On Sun, 28 Feb 2021 at 20:30, Khem Raj wrote: > > > > Can you send a patch upstream for this please? I have filed a ticket > > > > which you c

[OE-core] [PATCH] libdnf: replace a musl fix with a better one

2021-03-09 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...avoid-the-use-of-non-portable-__WORD.patch | 31 +++ ...h-include-the-correct-header-on-musl.patch | 31 --- meta/recipes-devtools/libdnf/libdnf_0.58.0.bb | 2 +- 3 files changed, 32 insertions(+), 32 deletions(-) create mo

Re: [OE-core] [PATCH 2/6] reproducibile: remove perf from exclusions

2021-03-09 Thread Bruce Ashfield
And now on send, I see that I can't spell 'reproducible', I can send a v2, or feel free to correct my typo. Bruce On Tue, Mar 9, 2021 at 2:23 PM wrote: > > From: Bruce Ashfield > > We have fixes for perf reproducibility, so we can drop it from the > exclusion list. > > Signed-off-by: Bruce Ashf

[OE-core] [PATCH 1/6] perf: fix reproducibility issues

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield perf has been failing our reproducible testing due to multiple symbols containg build paths. With this commit, we fix the issues: 1) The following line in the Makefle: override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON_AUTO)) "PYTHON" / "PYTHON_AUT

[OE-core] [PATCH 6/6] kern-tools: symbol-why fix and README update

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield There was a bad indent in symbol_why, which we fix with a submitted patch. As part of getting that patch, it was pointed out that there's no README telling people where to send changes. So we add a basic README to avoid that in the future: 8f6aaab docs: add README for pat

[OE-core] [PATCH 0/6] kernel: consolidated pull request

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield Richard, Here's my latest set of kernel changes. They are a bit more varied than at times: - stable updates. These shouldn't be an issue - kern-tools: minor fixes from the list The more time consuming change is the perf reproducibility changes. They are passing locally

[OE-core] [PATCH 3/6] linux-yocto/5.10: update to v5.10.21

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 012f78dadb71 Linux 5.10.21 2064bba25ac5 net: sfp: add workaround for Realtek RTL8672 and RTL9601C chips 113bcb8f65d4 net: sfp: VSOL V2801F / CarlitoxxPro CPGOS03-04

[OE-core] [PATCH 5/6] linux-yocto/qemuarmv5: fix configuration warning

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield Integrating the following commit(s) to linux-yocto: 8c8f6a791be qemuarm: inhibit optimize for size To fix the following warning: [NOTE]: 'CONFIG_CC_OPTIMIZE_FOR_SIZE' last val (y) and .config val (n) do not match [INFO]: CONFIG_CC_OPTIMIZE_FOR_SIZE : n ## .con

[OE-core] [PATCH 4/6] linux-yocto/5.4: update to v5.4.103

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: c4ca4659678e Linux 5.4.103 47478db9ad21 ALSA: hda/realtek: Apply dual codec quirks for MSI Godlike X570 board 4cf243476463 ALSA: hda/realtek: Add quirk for Intel NU

[OE-core] [PATCH 2/6] reproducibile: remove perf from exclusions

2021-03-09 Thread Bruce Ashfield
From: Bruce Ashfield We have fixes for perf reproducibility, so we can drop it from the exclusion list. Signed-off-by: Bruce Ashfield --- meta/lib/oeqa/selftest/cases/reproducible.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeq

Re: [OE-core] [PATCH 1/1] extrausers: Add ability to force password change on first login

2021-03-09 Thread Mark Hatle
On 3/8/21 8:02 PM, Chen Qi wrote: > Hi Mark, > > Is it something similar to 'passwd-expire' in this extrausers.bbclass? I wasn't aware of that evening existing. Yes it looks like it does the same thing. I can withdraw my change then, but we may want to considering adding something to the docum

Re: [OE-core] [PATCH] mingw: Remove 'nativesdk-glibc-utils' for windows sdk

2021-03-09 Thread Joshua Watt
On Tue, Mar 9, 2021 at 10:50 AM Richard Purdie wrote: > > On Mon, 2021-03-08 at 13:42 -0800, Anmolbir Mann wrote: > > From: amann > > > > Certain recipes require the "glibc-utils" recipe to include Glibc utility > > tools. > > However, the native version is incompatible with the Windows host, an

[OE-core] [PATCH 2/5] linux-yocto: Enable powerpc64le QEMU

2021-03-09 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-kernel/linux/linux-yocto_5.10.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/linux/linux-yocto_5.10.bb b/meta/recipes-kernel/linux/linux-yocto_5.10.bb index 5f77a42b04..0b3e749a3e 100644 --- a/meta/recipes-kerne

[OE-core] [PATCH 3/5] formfactor: Add machine config for qemuppc64

2021-03-09 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-bsp/formfactor/files/qemuppc64/machconfig | 10 ++ 1 file changed, 10 insertions(+) create mode 100755 meta/recipes-bsp/formfactor/files/qemuppc64/machconfig diff --git a/meta/recipes-bsp/formfactor/files/qemuppc64/machconfig b/meta/recipes-bsp/

[OE-core] [PATCH 1/5] qemuppc64: Add a QEMU machine definition for ppc64

2021-03-09 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/conf/machine/qemuppc64.conf | 24 1 file changed, 24 insertions(+) create mode 100644 meta/conf/machine/qemuppc64.conf diff --git a/meta/conf/machine/qemuppc64.conf b/meta/conf/machine/qemuppc64.conf new file mode 100644 index 00

[OE-core] [PATCH 5/5] parselogs: Allow expected kernel messages for qemuppc64

2021-03-09 Thread Khem Raj
pseries machine emulation ends up with these three messages in kernel logs which are harmless, so ignore them for now https://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg5600561.html https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1827162 Signed-off-by: Khem Raj --- meta/lib/oeqa/

[OE-core] [PATCH 4/5] inittab: Add getty launch on hvc0 for qemuppc64

2021-03-09 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-core/busybox/busybox-inittab_1.32.0.bb| 3 +++ meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | 4 2 files changed, 7 insertions(+) diff --git a/meta/recipes-core/busybox/busybox-inittab_1.32.0.bb b/meta/recipes-core/busybox/busybox-init

Re: [OE-core] [PATCH] mingw: Remove 'nativesdk-glibc-utils' for windows sdk

2021-03-09 Thread Richard Purdie
On Mon, 2021-03-08 at 13:42 -0800, Anmolbir Mann wrote: > From: amann > > Certain recipes require the "glibc-utils" recipe to include Glibc utility > tools. > However, the native version is incompatible with the Windows host, and thus > these > recipes will cause the Windows SDK to fail to buil

Re: [OE-core] [PATCH 1/5] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Richard Purdie
On Tue, 2021-03-09 at 12:35 +0100, Dorinda wrote: > Added missing HOMEPAGE and DESCRIPTION found using the test command > `oe-selftest -r distrodata.Distrodata.test_missing_homepg` > > [YOCTO #13471] > > Signed-off-by: Dorinda Bassey > --- >  meta/recipes-devtools/python/python-cython.inc

[OE-core] [PATCH 2/2] ltp: Fix libswapon issue properly

2021-03-09 Thread Richard Purdie
Replace the libswapon reproducibility workaround with the solution preferred by upstream. Signed-off-by: Richard Purdie --- ...-swapoff-Move-common-library-to-libs.patch | 133 +++ meta/recipes-extended/ltp/ltp/libswapon.patch | 368 ++ meta/recipes-extended/ltp/ltp_20210121.

[OE-core] [PATCH 1/2] ltp: Fix determinism issue

2021-03-09 Thread Richard Purdie
There was still a remaining issue with reporoducibility based upon the make version from the host system. Some versions added whitespace for XXX+= (e.g. 4.1) and some versions do not (e.g. 4.3). Replace the determinism patches with those submitted upstream both for this issue and the previous one.

[OE-core] [PATCH 3/3] machine: Initial commit of qemuriscv32

2021-03-09 Thread Alistair Francis
Signed-off-by: Alistair Francis --- meta/conf/machine/qemuriscv32.conf | 17 + 1 file changed, 17 insertions(+) create mode 100644 meta/conf/machine/qemuriscv32.conf diff --git a/meta/conf/machine/qemuriscv32.conf b/meta/conf/machine/qemuriscv32.conf new file mode 100644 index

[OE-core] [PATCH 1/3] openssl: Enable building for RISC-V 32-bit

2021-03-09 Thread Alistair Francis
Signed-off-by: Alistair Francis --- ...ort-for-io_pgetevents_time64-syscall.patch | 62 ...ort-for-io_pgetevents_time64-syscall.patch | 99 +++ .../openssl/openssl_1.1.1j.bb | 5 + 3 files changed, 166 insertions(+) create mode 100644 meta/recipes-c

[OE-core] [PATCH 2/3] linux-yocto: Add qemuriscv32 as a compatible machine

2021-03-09 Thread Alistair Francis
Signed-off-by: Alistair Francis --- meta/recipes-kernel/linux/linux-yocto_5.10.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-kernel/linux/linux-yocto_5.10.bb b/meta/recipes-kernel/linux/linux-yocto_5.10.bb index 6c0bec76d7..5f77a42b04 100644 --- a/meta/re

[OE-core] Yocto Project Status WW10`21

2021-03-09 Thread Stephen Jolley
Current Dev Position: YP 3.3 Feature Freeze Next Deadline: 1st March 2021 YP 3.3 M3 build Next Team Meetings: * Bug Triage meeting Thursday Mar. 11th at 7:30am PDT ( https://zoom.us/j/454367603?pwd=ZGxoa2ZXL3FkM3Y0bFd5aV

[OE-core] eudev and the variable not_first_boot

2021-03-09 Thread Jate Sujjavanich
Reviewing the eudev recipe, I found a conditional for the udevadm trigger/settle code. The variable "not_first_boot" determines whether to exclude several subsystems during the trigger. Looking at the recipe history, it appears that this is leftover from the dev cache code. I cannot find not_first

Re: [OE-core] [PATCH] resolvconf: add missing dependencies to RDEPENDS

2021-03-09 Thread Frans Meulenbroeks via lists.openembedded.org
Freaking yahoo email seems to have no option any more to quote decently.Guess it is time for a new email provider :-)Anyway my response below prefixed with FM: Op dinsdag 9 maart 2021 00:26:05 CET schreef Khem Raj : On 3/8/21 2:25 PM, Andre McCurdy wrote: > On Mon, Mar 8, 2021 at 2:

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Luca Bocassi
On Tue, 2021-03-09 at 13:48 +, Richard Purdie wrote: > On Tue, 2021-03-09 at 14:47 +0100, Köry Maincent wrote: > > On Tue, 09 Mar 2021 13:26:55 + > > Luca Boccassi wrote: > > > > > > It miss also the Maintainer description for linux-util-uuid recipe: > > > > https://autobuilder.yoctoproje

[OE-core] [PATCH v9] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Luca Bocassi
From: Luca Boccassi Recently util-linux gained an (optional) build dependency on libcryptsetup. But libcryptsetup build-depends on util-linux for blkid (optional, can be disabled) and uuid (mandatory). Split out util-linux-uuid in a different recipe to break the cycle. https://github.com/karelz

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Richard Purdie
On Tue, 2021-03-09 at 14:47 +0100, Köry Maincent wrote: > On Tue, 09 Mar 2021 13:26:55 + > Luca Boccassi wrote: > > > > > > > It miss also the Maintainer description for linux-util-uuid recipe: > > > https://autobuilder.yoctoproject.org/typhoon/#/builders/86/builds/1901/steps/14/logs/stdio >

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Kory Maincent
On Tue, 09 Mar 2021 13:26:55 + Luca Boccassi wrote: > > > > It miss also the Maintainer description for linux-util-uuid recipe: > > https://autobuilder.yoctoproject.org/typhoon/#/builders/86/builds/1901/steps/14/logs/stdio > > > > Regards, > > > > Köry > > Hi, > > The DESCRIPTION fiel

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Luca Bocassi
On Tue, 2021-03-09 at 12:18 +0100, Köry Maincent wrote: > On Mon, 08 Mar 2021 19:29:20 + > "Richard Purdie" wrote: > > > On Fri, 2021-03-05 at 11:02 +, luca.bocca...@gmail.com wrote: > > > From: Luca Boccassi > > > > > > Recently util-linux gained an (optional) build dependency on > >

[OE-core] [PATCH] sstate-diff-machines.sh: support rpm, deb and tar package types in analysis

2021-03-09 Thread Diego Santa Cruz via lists.openembedded.org
The sstate-diff-machines.sh script's --analyze option was only supporting ipk packages, this adds rpm, deb and tar packages, checking all the used package types simultaneously. Without this changing sstate between machines would not report an error if the difference occured in packages and ipk pac

Re: [OE-core] [PATCH 18/24] procps: update 3.3.16 -> 3.3.17

2021-03-09 Thread Alexander Kanavin
There is an open issue upstream: https://gitlab.com/procps-ng/procps/-/issues/193 I'm fine if this is deferred until upstream sorts it out. Alex On Mon, 8 Mar 2021 at 23:47, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Sun, 2021-02-28 at 11:10 -0800, Khem Raj wrote: > > > >

Re: [OE-core] [PATCH] webkitgtk: Link libatomic on RISCV

2021-03-09 Thread Alexander Kanavin
Thanks! Alex On Tue, 9 Mar 2021 at 06:11, Khem Raj wrote: > upstream is informed about this via > https://bugs.webkit.org/show_bug.cgi?id=222959 > > On Mon, Mar 8, 2021 at 7:58 PM Alexander Kanavin > wrote: > > > > Please send the patches upstream first, I wouldn’t normally ask for it > explic

Re: [OE-core] [PATCH] webkitgtk: Use linker options to reduce memory overhead during linking

2021-03-09 Thread Alexander Kanavin
Thanks Khem, this makes sense. Alex On Tue, 9 Mar 2021 at 05:05, Khem Raj wrote: > On Mon, Mar 8, 2021 at 7:50 PM Alexander Kanavin > wrote: > > > > Can you please explain the context for this? Why would we want to > support building webkit on such constrained machines? 8g of ram means they >

[OE-core] [PATCH 5/5] meta/recipes-graphics: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/rec

[OE-core] [PATCH 4/5] meta/recipes-multimedia: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.18.3.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta

[OE-core] [PATCH 3/5] meta/recipes-kernel: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-kernel/linux-firmware/linux-firmware_20210208.bb | 1 + meta/recipes-kernel/linux-libc-headers/linux-libc-

[OE-core] [PATCH 2/5] meta/recipes-support: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-support/boost/boost-build-native_4.3.0.bb | 2 ++ meta/recipes-support/lz4/lz4_1.9.3.bb |

[OE-core] [PATCH 1/5] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/python/python-cython.inc | 2 ++ meta/recipes-devtools/python/python3-dbusmock_0.22

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Kory Maincent
On Mon, 08 Mar 2021 19:29:20 + "Richard Purdie" wrote: > On Fri, 2021-03-05 at 11:02 +, luca.bocca...@gmail.com wrote: > > From: Luca Boccassi > > > > Recently util-linux gained an (optional) build dependency on libcryptsetup. > > But libcryptsetup build-depends on util-linux for blkid

[OE-core] [PATCH v8] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Luca Bocassi
From: Luca Boccassi Recently util-linux gained an (optional) build dependency on libcryptsetup. But libcryptsetup build-depends on util-linux for blkid (optional, can be disabled) and uuid (mandatory). Split out util-linux-uuid in a different recipe to break the cycle. https://github.com/karelz

Re: [OE-core] [PATCH v7] util-linux: split uuid in separate recipe to allow bootstrapping

2021-03-09 Thread Luca Bocassi
On Mon, 2021-03-08 at 19:29 +, Richard Purdie wrote: > On Fri, 2021-03-05 at 11:02 +, luca.bocca...@gmail.com wrote: > > From: Luca Boccassi > > > > Recently util-linux gained an (optional) build dependency on libcryptsetup. > > But libcryptsetup build-depends on util-linux for blkid (opt

Re: [OE-core] [meta-oe][sumo][PATCH] opencv: Security fixes

2021-03-09 Thread Robert Yang
Hi Neetika, This should send to openembedded-de...@lists.openembedded.org, not oe-core mailing list. // Robert On 3/9/21 6:00 PM, Neetika.Singh wrote: From: Neetika Singh Added patches to fix below CVE's: 1. CVE-2019-14491, CVE-2019-14492 Link: https://github.com/opencv/opencv/commit/ac4

[OE-core] [meta-oe][sumo][PATCH] opencv: Security fixes

2021-03-09 Thread Neetika.Singh
From: Neetika Singh Added patches to fix below CVE's: 1. CVE-2019-14491, CVE-2019-14492 Link: https://github.com/opencv/opencv/commit/ac425f67e4c1d0da9afb9203f0918d8d57c067ed 2. CVE-2019-14493 Link: https://github.com/opencv/opencv/commit/5691d998ead1d9b0542bcfced36c2dceb3a59023 3. CVE-2019-

[OE-core] [poky][dunfell][PATCH] python: Add fix for CVE-2021-3177

2021-03-09 Thread Harpritkaur Bhandari
From: harpritkaur bhandari Added patch to fix below CVE: CVE-2021-3177 Link: https://github.com/python/cpython/commit/ece5dfd403dac211f8d3c72701fe7ba7b7aa5b5f.patch --- .../python/python3/CVE-2021-3177.patch | 189 + meta/recipes-devtools/python/python3_3.8.2.b

Re: [OE-core] [PATCH 1/1] extrausers: Add ability to force password change on first login

2021-03-09 Thread Quentin Schulz
Hi Mark, On Mon, Mar 08, 2021 at 12:08:36PM -0600, Mark Hatle wrote: > From: Mark Hatle > > As documented in shadow(5), the third parameter is the last login time. A > special value of '0' is defined which causes the password system to force > a password change on next login. > > Adding the va

Re: [OE-core] [PATCH 1/1] rootfs-postcommands.bbclass: Print a warning when login with root is disabled

2021-03-09 Thread Robert Yang
Hi Peter, On 3/5/21 6:18 PM, Peter Kjellerstedt wrote: -Original Message- From: openembedded-core@lists.openembedded.org On Behalf Of Robert Yang Sent: den 5 mars 2021 09:49 To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH 1/1] rootfs-postcommands.bbclass: Print a