Re: [OE-core] [kirkstone][PATCH-v2] Upgrade OpenSSL 3.0.7 -> 3.0.8

2023-02-14 Thread Richard Leitner via lists.openembedded.org
On Thu, Feb 09, 2023 at 08:08:00PM +0530, Siddharth wrote: > From: Siddharth Doshi > > OpenSSL 3.0.8 fixes 1 HIGH level security vulnerability and 7 MODERATE level > security vulnerability [1]. > > Upgrade the recipe to point to 3.0.8. > > CVE-2022-3996 is reported fixed in 3.0.8, so drop the

[OE-core] [meta-oe][PATCH V2] tar: add ptest support

2023-02-14 Thread Yan Xin Kuan
From: yanxk original test suites takes 5 minutes with KVM enabled. autotest files would contain reference to TMPDIR, now they are removed. tar test would provide ptest output like: PASS: compressor program failure SKIP: remove-files with compression PASS: remove-files with compression:

Re: [OE-core] [kirkstone][PATCH] qemu: fix compile error

2023-02-14 Thread Kai Kang
On 2/14/23 22:30, Martin Jansa wrote: Thanks Kai, this should fix what I've reported in: https://lists.openembedded.org/g/openembedded-core/message/176508

Re: [OE-core] [kirkstone][PATCH 0/1] Update webkitgtk to 2.38.4 for CVEs

2023-02-14 Thread Kai Kang
On 2/15/23 00:22, Steve Sakoman wrote: Stable branch policy doesn't allow this type of version upgrade. I can only take upgrades that are strict bug/security fix only releases. The reason that why upgrade webkitgtk directly is that there is no obvious single patch to fix CVEs. It just declares

Re: [OE-core] [PATCH 1/2] site: remove glib site values

2023-02-14 Thread Alexandre Belloni via lists.openembedded.org
Hello Ross, iI think this is causes failures on the AB while building nativesdk-pkgconfig: https://autobuilder.yoctoproject.org/typhoon/#/builders/65/builds/6725/steps/12/logs/stdio | checking for growing stack pointer... configure: error: in

[OE-core] [PATCH] python3-numpy: upgrade to 1.24.2

2023-02-14 Thread Martin Jansa
* remove patch applied upstream * FWIW: this version still fails to build with DEBUG_BUILD AND gcc-13 as shown in: http://errors.yoctoproject.org/Errors/Details/689841/ In file included from

Re: [OE-core] [PATCH 2/2] site: remove at-spi2-core values

2023-02-14 Thread Khem Raj
these would need some testing, I wonder if there are other autotooled recipes which indirectly are using these cached values. On Tue, Feb 14, 2023 at 7:56 AM Ross Burton wrote: > > at-spi2-core is built with Meson now, so these values are not needed. > > Signed-off-by: Ross Burton > --- >

[OE-core] Can create-spdx handle multiple components per recipe

2023-02-14 Thread Joseph Reynolds
Team, Thanks again for continuing to improve Yocto/OE. I have a question about the capabilities of the create-spdx.bbclass.  I understand it will can an sBOM entry for each recipe. Can create-spdx.bbclass handle multiple components per recipe?  For example, my bitbake recipe produces a web

[OE-core] [PATCH v3 4/4] linux-yocto: include tools for dtb in devshell

2023-02-14 Thread Trevor Woerner
Make more tools available to the user in a kernel devshell so they can test and validate their device trees. devshell> make dtbs_check Signed-off-by: Trevor Woerner --- meta/recipes-kernel/linux/linux-yocto.inc | 4 1 file changed, 4 insertions(+) diff --git

[OE-core] [PATCH v3 2/4] python3-dtschema: add dependency on dtc-pylibfdt

2023-02-14 Thread Trevor Woerner
dt-schema has a dependency on pylibfdt from dtc. Signed-off-by: Trevor Woerner --- meta/recipes-devtools/python/python3-dtschema_2023.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/python/python3-dtschema_2023.1.bb

[OE-core] [PATCH v3 3/4] python3-yamllint: add

2023-02-14 Thread Trevor Woerner
Add a recipe for yamllint, which is used in a kernel devshell for dtb checking. Signed-off-by: Trevor Woerner --- meta/conf/distro/include/maintainers.inc | 1 + .../python/python3-yamllint_1.29.0.bb | 15 +++ 2 files changed, 16 insertions(+) create mode

[OE-core] [PATCH v3 1/4] dtc: version bump and add python wrapper

2023-02-14 Thread Trevor Woerner
Bump the version of dtc from 1.6.1 to to 1.7.0. Add support for building the python wrapper around libfdt. Signed-off-by: Trevor Woerner --- ...tdump-fix-Werror-int-to-pointer-cast.patch | 40 --- meta/recipes-kernel/dtc/dtc/0001-meson.patch | 37 +

Re: [OE-core] [PATCH] libcgroup: clean up musl DEPENDS

2023-02-14 Thread Khem Raj
On Tue, Feb 14, 2023 at 8:42 AM Ross Burton wrote: > > libcgroup uses fts_* functions, but these are not implemented in musl so > we depend on the fts recipe and force a link to libfts. > > However since 3.0.0 libcgroup will automatically look for fts_open in > both libc and libfts[1], so this

[OE-core] [PATCH v2 0/1] Add support for custom annotations in SPDX

2023-02-14 Thread Saul Wold
V2 fixes commit message and adds additional check for empty custom_var. Additional testing with SPDX_CUSTOM_ANNOTATION_VARS:pn-${PN} and SPDX_CUSTOM_ANNOTATION_VARS:append:pn-${PN} confirmed to work as expected. We will leave the variable flag handling for a future extension of this code as

[OE-core] [PATCH v2 1/1] create-spdx-2.2: Add support for custom Annotations

2023-02-14 Thread Saul Wold
This change adds a new variable to track which recipe variables are added as SPDX Annotations. Usage: add SPDX_CUSTOM_ANNOTATION_VARS = The recipe spdx json will contain an annotation stanza that looks something like this: "annotations": [ { "annotationDate":

Re: [OE-core] [PATCH] create-spdx-2.2: Add support for custom Annotations

2023-02-14 Thread Joshua Watt
On 2/14/23 10:52, Saul Wold (local) wrote: On 2/13/23 12:03, Joshua Watt wrote: On Mon, Feb 13, 2023 at 1:54 PM Saul Wold wrote: This change adds a new variable to track which recipe variables are added as SPDX Annotations. Usage: add SPDX_CUSTOME_ANNOTATION_VARS = nit: CUSTOM v2

[OE-core] [PATCH v2 4/4] oeqa/selftest/resulttool: add test for metadata filtering on regression

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Introduce new tests for the metadata-based filtering added for oeselftest results Signed-off-by: Alexis Lothoré --- .../oeqa/selftest/cases/resulttooltests.py| 121 ++ 1 file changed, 121 insertions(+) diff --git

[OE-core] [PATCH v2 3/4] scripts/resulttool/regression: add metadata filtering for oeselftest

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré When generating regression reports, many false positive can be observed since some tests results are compared while the corresponding tests sets are not the same, as it can be seen for example for oeselftest tests (oeselftest is run multiple time but with different

[OE-core] [PATCH v2 2/4] oeqa/selftest/resulttooltests: fix minor typo

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Signed-off-by: Alexis Lothoré --- meta/lib/oeqa/selftest/cases/resulttooltests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/resulttooltests.py b/meta/lib/oeqa/selftest/cases/resulttooltests.py index

[OE-core] [PATCH v2 0/4] scripts/resulttool/regression: add metadata filtering

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré This v2 does not contain any change in patches content, it only sets the From: field correctly. Sorry for the noise. This patch serie is a proposal linked to discussion initiated here: https://lists.yoctoproject.org/g/automated-testing/topic/96652823#1219 After integration

[OE-core] [PATCH v2 1/4] scripts/oe-selftest: append metadata to tests results

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Many stored results TEST_TYPE are set to "oeselftest", however all those tests are not run with the same sets of parameters, so those tests results may not be comparable. Attach relevant parameters as tests metadata to allow identifying tests configuration so we can compare

Re: [OE-core] [PATCH] create-spdx-2.2: Add support for custom Annotations

2023-02-14 Thread Saul Wold
On 2/13/23 12:03, Joshua Watt wrote: On Mon, Feb 13, 2023 at 1:54 PM Saul Wold wrote: This change adds a new variable to track which recipe variables are added as SPDX Annotations. Usage: add SPDX_CUSTOME_ANNOTATION_VARS = nit: CUSTOM v2 will come shortly (I will try to address the

[OE-core] [PATCH 2/2] cml1: remove redundand addtask

2023-02-14 Thread Ross Burton
The configure task is added by base.bbclass, no need to do it again. Signed-off-by: Ross Burton --- meta/classes-recipe/cml1.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes-recipe/cml1.bbclass b/meta/classes-recipe/cml1.bbclass index b79091383de..a09a042c3f1 100644 ---

[OE-core] [PATCH 1/2] lib/buildstats: handle tasks that never finished

2023-02-14 Thread Ross Burton
If a task is aborted the buildstats file isn't complete, so calculate when the build finished and use that as a end time. Signed-off-by: Ross Burton --- scripts/lib/buildstats.py | 33 +++-- 1 file changed, 27 insertions(+), 6 deletions(-) diff --git

[OE-core] [PATCH] libcgroup: clean up musl DEPENDS

2023-02-14 Thread Ross Burton
libcgroup uses fts_* functions, but these are not implemented in musl so we depend on the fts recipe and force a link to libfts. However since 3.0.0 libcgroup will automatically look for fts_open in both libc and libfts[1], so this can be simplified to just a conditional DEPENDS. [1]

Re: [OE-core] [PATCH] busybox: Fix excluding .debug from depmod

2023-02-14 Thread Alexandre Belloni via lists.openembedded.org
Hello, Saul sent this on Friday: https://lore.kernel.org/openembedded-core/20230210153255.2716448-1-saul.w...@windriver.com/ On 14/02/2023 16:17:34+0300, Anton Kikin wrote: > The previously added patch for excluding .debug from depmod has an > invalid expression in the condition. The strstr

[OE-core] [PATCH] elfutils: Backport fix for DW_TAG_unspecified_type handling

2023-02-14 Thread Khem Raj
Re-enable funcretval tests Signed-off-by: Khem Raj --- .../elfutils/elfutils_0.188.bb| 3 +- .../handle_DW_TAG_unspecified_type.patch | 88 +++ 2 files changed, 89 insertions(+), 2 deletions(-) create mode 100644

Re: [OE-core] [kirkstone][PATCH 0/1] Update webkitgtk to 2.38.4 for CVEs

2023-02-14 Thread Steve Sakoman
Stable branch policy doesn't allow this type of version upgrade. I can only take upgrades that are strict bug/security fix only releases. Exceptions to the policy would require TSC approval. Best regards, Steve On Sun, Feb 12, 2023 at 7:50 PM Kai Kang wrote: > > From: Kai Kang > > Update

[OE-core] [PATCH 2/2] site: remove at-spi2-core values

2023-02-14 Thread Ross Burton
at-spi2-core is built with Meson now, so these values are not needed. Signed-off-by: Ross Burton --- meta/site/arm-32 | 10 -- meta/site/arm-64 | 9 - meta/site/ix86-common| 10 -- meta/site/mips-common| 10 -- meta/site/powerpc-common |

[OE-core] [PATCH 1/2] site: remove glib site values

2023-02-14 Thread Ross Burton
GLib 1.x is incredibly obsolete and GLib 2.x is built using Meson not autotools, so we can remove the GLib entries from the site files. Also fix a few copy/paste typos where glib_ was used incorrectly, for example: ac_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4} The glib_cv_ should be

[OE-core] Yocto Project Status 14 February 2023 (WW07)

2023-02-14 Thread Stephen Jolley
Current Dev Position: YP 4.2 M3 Next Deadline: 20th February 2023 YP 4.2 M3 Build Next Team Meetings: * Bug Triage meeting Thursday February 16th 7:30 am PDT (

Re: [OE-core] [kirkstone][PATCH] qemu: fix compile error

2023-02-14 Thread Martin Jansa
Thanks Kai, this should fix what I've reported in: https://lists.openembedded.org/g/openembedded-core/message/176508 once this is merged, can you please add both oe-core changes (3 qemu patches) to dunfell as well, so that similar patch is included in both branches? The broken version wasn't

[OE-core] [kirkstone][PATCH] qemu: fix compile error

2023-02-14 Thread Kai Kang
From: Kai Kang Backport 2 patches and rebase 0001-hw-display-qxl-Pass-requested-buffer-size-to-qxl_phy.patch to fix compile error: ../qemu-6.2.0/hw/display/qxl.c: In function 'qxl_phys2virt': ../qemu-6.2.0/hw/display/qxl.c:1477:67: error: 'size' undeclared (first use in this function); did you

Re: [OE-core] [PATCH] kernel-yocto: fix kernel-meta data detection

2023-02-14 Thread Bruce Ashfield
Indeed. Clearly not something anyone is using very often. Good catch on that typo! Bruce On Tue, Feb 14, 2023 at 5:26 AM Ulrich Ölmann wrote: > > Fixes: 7ef7af5c03ba ("kernel-yocto: restore kernel-meta data detection for > SRC_URI elements") > Signed-off-by: Ulrich Ölmann > --- >

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-14 Thread Richard Purdie
On Tue, 2023-02-14 at 10:46 +0100, Enrico Jörns wrote: > Hi Richard, > > Am Freitag, dem 03.02.2023 um 14:17 + schrieb Richard Purdie: > > On Fri, 2023-02-03 at 14:50 +0100, Marco Felsch wrote: > > > This adds the support for the barebox bootloader to oe-core. The recipe > > > is based on the

[OE-core] [PATCH 3/4] scripts/resulttool/regression: add metadata filtering for oeselftest

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
When generating regression reports, many false positive can be observed since some tests results are compared while the corresponding tests sets are not the same, as it can be seen for example for oeselftest tests (oeselftest is run multiple time but with different parameters, resulting in

[OE-core] [PATCH 4/4] oeqa/selftest/resulttool: add test for metadata filtering on regression

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
Introduce new tests for the metadata-based filtering added for oeselftest results Signed-off-by: Alexis Lothoré --- .../oeqa/selftest/cases/resulttooltests.py| 121 ++ 1 file changed, 121 insertions(+) diff --git a/meta/lib/oeqa/selftest/cases/resulttooltests.py

[OE-core] [PATCH 0/4] scripts/resulttool/regression: add metadata filtering

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
This patch serie is a proposal linked to discussion initiated here: https://lists.yoctoproject.org/g/automated-testing/topic/96652823#1219 After integration of some improvements on regression reporting, it has been observed that the regression report of version 4.2_M2 is way too big. When

[OE-core] [PATCH 1/4] scripts/oe-selftest: append metadata to tests results

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
Many stored results TEST_TYPE are set to "oeselftest", however all those tests are not run with the same sets of parameters, so those tests results may not be comparable. Attach relevant parameters as tests metadata to allow identifying tests configuration so we can compare tests only when they

[OE-core] [PATCH 2/4] oeqa/selftest/resulttooltests: fix minor typo

2023-02-14 Thread Alexis Lothoré via lists . openembedded . org
Signed-off-by: Alexis Lothoré --- meta/lib/oeqa/selftest/cases/resulttooltests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/resulttooltests.py b/meta/lib/oeqa/selftest/cases/resulttooltests.py index c2e76f1a44..efdfd98af3 100644 ---

[OE-core] [PATCH] busybox: Fix excluding .debug from depmod

2023-02-14 Thread Anton Kikin
The previously added patch for excluding .debug from depmod has an invalid expression in the condition. The strstr function returns NULL if substring is NOT found [1]. Therefore, the existing patch, on the opposite, handles only modules that have a .debug substring in the path. This commit fixes

Re: [OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Robert Yang
On 2/14/23 18:38, Alexander Kanavin wrote: On Tue, 14 Feb 2023 at 10:12, Robert Yang wrote: This is used for online package feeds (When PACKAGE_FEED_URIS is set), the default PACKAGE_FEED_ARCHS is None, so "dnf install/upgrade" or "apt-get update" doesn't work by default, we must set

[OE-core][PATCH 1/1] libseccomp: fix for the ptest result format

2023-02-14 Thread Narpat Mali
The output of libseccomp ptest should follow a unified format as per this https://wiki.yoctoproject.org/wiki/Ptest Replaced the test results SUCCESS, FAILURE & SKIPPPED with PASS, FAIL & SKIP and printing the ptest result with the below format result: testname Signed-off-by: Narpat Mali ---

Re: [OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Alexander Kanavin
On Tue, 14 Feb 2023 at 10:12, Robert Yang wrote: > This is used for online package feeds (When PACKAGE_FEED_URIS is set), the > default PACKAGE_FEED_ARCHS is None, so "dnf install/upgrade" or "apt-get > update" > doesn't work by default, we must set PACKAGE_FEED_ARCHS to make it work, but > it's

[OE-core] [PATCH] kernel-yocto: fix kernel-meta data detection

2023-02-14 Thread Ulrich Ölmann
Fixes: 7ef7af5c03ba ("kernel-yocto: restore kernel-meta data detection for SRC_URI elements") Signed-off-by: Ulrich Ölmann --- meta/classes-recipe/kernel-yocto.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/kernel-yocto.bbclass

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-14 Thread Enrico Jörns
Hi Richard, Am Freitag, dem 03.02.2023 um 14:17 + schrieb Richard Purdie: > On Fri, 2023-02-03 at 14:50 +0100, Marco Felsch wrote: > > This adds the support for the barebox bootloader to oe-core. The recipe > > is based on the recipe found in meta-ptx [1] with a few minor adaptions. > > > >

Re: [OE-core] [PATCH 1/1] base.bbclass: Fix dangling NATIVELSBSTRING

2023-02-14 Thread Robert Yang
Hi RP, On 2/14/23 16:44, Richard Purdie wrote: On Tue, 2023-02-14 at 00:28 -0800, Robert Yang wrote: Fixed: $ rm -fr tmp; bitbake quilt-native -n Build Configuration: [snip] NATIVELSBSTRING = "ubuntu-18.04" [snip] And when run bitbake again: $ bitbake quilt-native -n Build Configuration:

Re: [OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Richard Purdie
On Tue, 2023-02-14 at 00:28 -0800, Robert Yang wrote: > The PACKAGE_FEED_ARCHS is highly related to ALL_MULTILIB_PACKAGE_ARCHS, set it > automatically is better than manually, for example, we may forget to upgrade > PACKAGE_FEED_ARCHS when ALL_MULTILIB_PACKAGE_ARCHS is changed if set it >

Re: [OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Alexander Kanavin
On Tue, 14 Feb 2023 at 09:28, Robert Yang wrote: > self.pm.insert_feeds_uris(self.d.getVar('PACKAGE_FEED_URIS') or > "", > self.d.getVar('PACKAGE_FEED_BASE_PATHS') or "", > -self.d.getVar('PACKAGE_FEED_ARCHS')) > +

Re: [OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Robert Yang
Hi RP and Alexander, On 2/14/23 16:47, Richard Purdie wrote: On Tue, 2023-02-14 at 00:28 -0800, Robert Yang wrote: The PACKAGE_FEED_ARCHS is highly related to ALL_MULTILIB_PACKAGE_ARCHS, set it automatically is better than manually, for example, we may forget to upgrade PACKAGE_FEED_ARCHS when

Re: [OE-core] [PATCH 1/1] base.bbclass: Fix dangling NATIVELSBSTRING

2023-02-14 Thread Richard Purdie
On Tue, 2023-02-14 at 00:28 -0800, Robert Yang wrote: > Fixed: > $ rm -fr tmp; bitbake quilt-native -n > Build Configuration: > [snip] > NATIVELSBSTRING = "ubuntu-18.04" > [snip] > > And when run bitbake again: > $ bitbake quilt-native -n > Build Configuration: > NATIVELSBSTRING =

Re: [OE-Core][master][kirkstone][PATCH] dhcpcd: fix dhcpcd start failure on qemuppc64

2023-02-14 Thread Alexandre Belloni via lists.openembedded.org
On 14/02/2023 16:32:54+0800, Xiangyu Chen wrote: > > On 2/10/23 10:18, Xiangyu Chen wrote: > > From: Xiangyu Chen > > > > Backport patch to fix dhcpcd start failed on qemuppc64. > > Friendly ping, thanks. You sent this patch 4 days ago, over the weekend, maybe you should have more patience.

Re: [OE-core] [PATCH] meta/lib/oeqa/selftest/cases/wic: Add tests for configuring kernel image install into boot partition.

2023-02-14 Thread Alexandre Belloni via lists.openembedded.org
Hello, This fails on the autobuilders: 2023-02-14 02:00:37,111 - oe-selftest - INFO - 6: 47/60 496/512 (18.80s) (0 failed) (wic.Wic.test_kernel_install) 2023-02-14 02:00:37,111 - oe-selftest - INFO - testtools.testresult.real._StringException: Traceback (most recent call last): File

[OE-core] [PATCH 1/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Robert Yang
The PACKAGE_FEED_ARCHS is highly related to ALL_MULTILIB_PACKAGE_ARCHS, set it automatically is better than manually, for example, we may forget to upgrade PACKAGE_FEED_ARCHS when ALL_MULTILIB_PACKAGE_ARCHS is changed if set it manually. The workflow is: Use PACKAGE_FEED_ARCHS if it is defined,

[OE-core] [PATCH 0/1] rootfs.py: Set PACKAGE_FEED_ARCHS when it is not defined

2023-02-14 Thread Robert Yang
The following changes since commit 0049f6757f6f956fb4cc77b3df6a672c20b53cf4: oeqa qemurunner.py: try to avoid reading one character at a time (2023-02-10 09:25:41 +) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib rbt/feed

[OE-core] [PATCH 1/1] base.bbclass: Fix dangling NATIVELSBSTRING

2023-02-14 Thread Robert Yang
Fixed: $ rm -fr tmp; bitbake quilt-native -n Build Configuration: [snip] NATIVELSBSTRING = "ubuntu-18.04" [snip] And when run bitbake again: $ bitbake quilt-native -n Build Configuration: NATIVELSBSTRING = "universal" It has been changed from ubuntu-18.04 to universal on the same host

[OE-core] [PATCH 0/1] base.bbclass: Fix dangling NATIVELSBSTRING

2023-02-14 Thread Robert Yang
The following changes since commit 0049f6757f6f956fb4cc77b3df6a672c20b53cf4: oeqa qemurunner.py: try to avoid reading one character at a time (2023-02-10 09:25:41 +) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib rbt/lsb

Re: [OE-Core][master][kirkstone][PATCH] dhcpcd: fix dhcpcd start failure on qemuppc64

2023-02-14 Thread Xiangyu Chen
On 2/10/23 10:18, Xiangyu Chen wrote: From: Xiangyu Chen Backport patch to fix dhcpcd start failed on qemuppc64. Friendly ping, thanks. Signed-off-by: Xiangyu Chen --- .../dhcpcd/dhcpcd_9.4.1.bb| 1 + ...x-SECCOMP_AUDIT_ARCH-missing-ppc64le.patch | 34