Re: [OE-core] [PATCH v2 4/4] scripts:recipetool:create_buildsys_python: add PEP517 support

2023-10-19 Thread Alexandre Belloni via lists.openembedded.org
On 19/10/2023 20:20:33+0200, Julien Stephan wrote: > Le jeu. 19 oct. 2023 à 15:49, Alexandre Belloni > a écrit : > > > > Hello, > > > > On 19/10/2023 09:36:53+0200, Julien Stephan wrote: > > > add support for PEP517 [1] > > > > > > if a pyproject.toml file is found, use it to create the recipe, >

Re: [OE-core] [PATCH] runqemu: Add squashfs filesystem types

2023-10-19 Thread Logan Gunthorpe via lists.openembedded.org
On 2023-10-19 14:57, Alexandre Belloni wrote: > Hello, > > On 19/10/2023 12:10:51-0600, Logan Gunthorpe via lists.openembedded.org wrote: >> From: Logan Gunthorpe >> >> When using a squashfs filesystem type, runqemu requires specifying the >> full path to the image because it doesn't list

Re: [OE-core] [PATCH] runqemu: Add squashfs filesystem types

2023-10-19 Thread Alexandre Belloni via lists.openembedded.org
Hello, On 19/10/2023 12:10:51-0600, Logan Gunthorpe via lists.openembedded.org wrote: > From: Logan Gunthorpe > > When using a squashfs filesystem type, runqemu requires specifying the > full path to the image because it doesn't list squashfs types in its > fstypes variable. Add them to provide

[OE-core] [PATCH RESEND] runqemu: Add squashfs filesystem types

2023-10-19 Thread Logan Gunthorpe via lists.openembedded.org
When using a squashfs filesystem type, runqemu requires specifying the full path to the image because it doesn't list squashfs types in its fstypes variable. Add them to provide the same support as other filesystem types. Signed-off-by: Logan Gunthorpe --- scripts/runqemu | 4 +++- 1 file

Re: [OE-core] [PATCH v2 4/4] scripts:recipetool:create_buildsys_python: add PEP517 support

2023-10-19 Thread Julien Stephan
Le jeu. 19 oct. 2023 à 15:49, Alexandre Belloni a écrit : > > Hello, > > On 19/10/2023 09:36:53+0200, Julien Stephan wrote: > > add support for PEP517 [1] > > > > if a pyproject.toml file is found, use it to create the recipe, > > otherwise fallback to the old setup.py method. > > > > [YOCTO

[OE-core][PATCH 1/2 v2] patchtest: skip merge test if not targeting master

2023-10-19 Thread Trevor Gamblin
Avoid testing mergeability of a patch when not targeting master, so that patches tested via other means (e.g. maintainer branches and AB runs) don't get unnecessarily reviewed an extra time. Signed-off-by: Trevor Gamblin --- v2 corrects the logic in the new if statement (modified during a test)

[OE-core][PATCH 1/2] patchtest: skip merge test if not targeting master

2023-10-19 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta/lib/patchtest/tests/test_mbox_merge.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/patchtest/tests/test_mbox_merge.py b/meta/lib/patchtest/tests/test_mbox_merge.py index bc55c588b40..013b9e0144d 100644 ---

[OE-core][PATCH 2/2] patchtest: test regardless of mergeability

2023-10-19 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta/lib/patchtest/tests/test_metadata_lic_files_chksum.py | 5 - meta/lib/patchtest/tests/test_metadata_license.py | 5 - meta/lib/patchtest/tests/test_metadata_summary.py | 5 - meta/lib/patchtest/tests/test_python_pylint.py

[OE-core][kirkstone][PATCH] zlib: patch CVE-2023-45853

2023-10-19 Thread Peter Marko via lists.openembedded.org
From: Peter Marko Backport commit merged to develop branch from PR linked in NVD report: * https://nvd.nist.gov/vuln/detail/CVE-2023-45853 * https://github.com/madler/zlib/pull/843 Signed-off-by: Peter Marko --- .../zlib/zlib/CVE-2023-45853.patch| 42 +++

[OE-core] [PATCH] runqemu: Add squashfs filesystem types

2023-10-19 Thread Logan Gunthorpe via lists.openembedded.org
From: Logan Gunthorpe When using a squashfs filesystem type, runqemu requires specifying the full path to the image because it doesn't list squashfs types in its fstypes variable. Add them to provide the same support as other filesystem types. Signed-off-by: Logan Gunthorpe ---

Re: [OE-core] [mickledore] glibc: stable 2.37 branch updates.

2023-10-19 Thread Khem Raj
On Thu, Oct 19, 2023 at 5:16 AM Sanjana.Venkatesh via lists.openembedded.org wrote: > Hi Khem, > > We tried increasing the memory and no regression failures were found. > > Thanks for following up Steve We can cherry pick this for mickledore I think now Here is the test results: > >

[OE-core] [mickledore][kirkstone][PATCH] qemu: ignore RHEL specific CVE-2023-2680

2023-10-19 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- meta/recipes-devtools/qemu/qemu.inc | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 5526eacb960..83bd5d7e67d 100644 ---

[OE-core] [PATCH] qemuboot.bbclass: fix typos in documentation

2023-10-19 Thread Marcus Folkesson
comand -> command docuemntation -> documentation Signed-off-by: Marcus Folkesson --- meta/classes-recipe/qemuboot.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes-recipe/qemuboot.bbclass b/meta/classes-recipe/qemuboot.bbclass index

[OE-Core][PATCH 1/2] scripts/resulttool: limit the number of changes displayed per test

2023-10-19 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Most of the changes list generated in regression reports fall in one of the two following categories: - there is only a few (<10) changes listed and the info is valuable/relevant - the list is huge (> 100 ? 1000 ?) and basically tells us that the whole tests category

[OE-Core][PATCH 0/2] Add a display limit for regression report generation

2023-10-19 Thread Alexis Lothoré via lists . openembedded . org
It has been observed that useful information in regression report can be drowned in huge regression lists which are often false-positives (for example, a whole set of tests has been temporarily disabled). This series brings a default limit to how many changes are displayed per base/target

[OE-Core][PATCH 2/2] scripts/yocto_testresults_query: add option to change display limit

2023-10-19 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Add a "-l"/"--limit" option to allow changing the display limit in resulttool. - If no value is passed, resulttool uses its default value. - If 0 is passed, the display limit is removed and every regression will be displayed - If a custom value is passed, this value

Re: [OE-core] [PATCH 1/4] scripts:recipetool:create_buildsys_python: fix license note

2023-10-19 Thread Julien Stephan
Le mer. 18 oct. 2023 à 21:58, Alexandre Belloni a écrit : > > Hello, > > On 18/10/2023 14:01:11+0200, Julien Stephan wrote: > > License field of setup is not always standardized, so we usually use the > > classifier to determine the correct license format to use in the recipe. > > > > A warning

[OE-core][kirkstone][PATCH] gawk: backport Debian patch to fix CVE-2023-4156

2023-10-19 Thread Vijay Anusuri via lists.openembedded.org
From: Vijay Anusuri Upstream-Status: Backport [https://git.launchpad.net/ubuntu/+source/gawk/tree/debian/patches?h=ubuntu/jammy-security & https://git.savannah.gnu.org/gitweb/?p=gawk.git;a=commitdiff;h=e709eb829448ce040087a3fc5481db6bfcaae212] Signed-off-by: Vijay Anusuri ---

[OE-core] [PATCH v2 2/4] scripts:recipetool:create_buildsys_python: prefix created recipes with python3-

2023-10-19 Thread Julien Stephan
By convention, all python recipes start with "python3-" so update create_buildsys_python to do this This rule doesn't apply for packages already starting with "python" Signed-off-by: Julien Stephan --- scripts/lib/recipetool/create_buildsys_python.py | 5 + 1 file changed, 5 insertions(+)

[OE-core] [PATCH v2 1/4] scripts:recipetool:create_buildsys_python: fix license note

2023-10-19 Thread Julien Stephan
License field of setup is not always standardized, so we usually use the classifier to determine the correct license format to use in the recipe. A warning note is added above the LICENSE field of the create recipe in case a license is provided in setup. But when the plugin is called, "LICENSE ="

[OE-core] [PATCH v2 4/4] scripts:recipetool:create_buildsys_python: add PEP517 support

2023-10-19 Thread Julien Stephan
add support for PEP517 [1] if a pyproject.toml file is found, use it to create the recipe, otherwise fallback to the old setup.py method. [YOCTO #14737] [1]: https://peps.python.org/pep-0517/ Signed-off-by: Julien Stephan --- .../lib/recipetool/create_buildsys_python.py | 234

[OE-core] [PATCH v2 3/4] scripts:recipetool:create_buildsys_python: refactor code for futur PEP517 addition

2023-10-19 Thread Julien Stephan
In order to prepare the support for pyproject.toml (PEP517 [1]) enabled projects, refactor the code and move setup.py specific code into a specific class in order to allow sharing the PythonRecipeHandler class No functionnal changes expected [1]: https://peps.python.org/pep-0517/#source-tree

[OE-core] Detecting unimplemented ptests with heuristics

2023-10-19 Thread Yoann Congal
Hi everyone, We recently implemented a way to detect recipes for upstream code that contain unit tests but does not implement ptests. Those recipes make good candidates for increasing the ptests coverage. This is implemented as a QA check. The check is disabled by default since it generates a

Re: [OE-core] [PATCH] Add SECURITY.md

2023-10-19 Thread Richard Purdie
On Wed, 2023-10-18 at 07:03 +0200, Marta Rybczynska wrote: > On Tue, Oct 17, 2023 at 11:50 PM Richard Purdie > wrote: > > > > On Tue, 2023-10-17 at 17:25 +0200, Marta Rybczynska wrote: > > > Add a SECURITY.md filr with hints for security researchers and other > > > parties who might report

[OE-core] [PATCH] selftest/buildoptions: tag the download mirror test with 'yocto-mirrors'

2023-10-19 Thread Alexander Kanavin
This will allow bundling all yocto mirror tests together, both for the purposes of running only them specifically, and excluding them from 'general' oe-selftest runs. There is an upcoming test for sstate cache served over content delivery network which will use the same tag, so it can be run

Re: [OE-core] [PATCH] cve-check.bbclass: support embedded SW components with different version number

2023-10-19 Thread Marta Rybczynska
On Mon, Oct 16, 2023 at 9:01 AM Mikko Rapeli wrote: > > Many recipes embed other SW components. The name and version of the > embedded SW component differs from the main recipe. To detect CVEs in the > embedded SW component, it needs to be added to CVE_PRODUCT list using > name of the SW product

Re: [OE-core] [PATCH 1/3] lib/oe/sstatesig.py: dump locked.sigs.inc only when explicitly asked via -S lockedsigs

2023-10-19 Thread Richard Purdie
On Tue, 2023-10-17 at 15:30 +0200, Alexander Kanavin wrote: > This was writing out locked-sigs.inc into cwd with every > 'bitbake -S' invocation. When the intent is only to to get task > stamps (-S none), or print the difference between them (-S printdiff), > the file is unnecessary clutter. > >

Re: [OE-core] [PATCH] cve-check.bbclass: support embedded SW components with different version number

2023-10-19 Thread Mikko Rapeli
Hi, On Thu, Oct 19, 2023 at 10:19:53AM +0200, Marta Rybczynska wrote: > On Mon, Oct 16, 2023 at 9:01 AM Mikko Rapeli wrote: > > > > Many recipes embed other SW components. The name and version of the > > embedded SW component differs from the main recipe. To detect CVEs in the > > embedded SW

Re: [OE-core] [mickledore] glibc: stable 2.37 branch updates.

2023-10-19 Thread Sanjana.Venkatesh via lists.openembedded.org
Hi Khem, We tried increasing the memory and no regression failures were found. Here is the test results: Regression testing is done and below are the test results. Before glibc update Summary of test results: PASS:4727 FAIL:240 XPASS:4 XFAIL:16 UNSUPPORTED:220 After glibc update Summary of

Re: [OE-core] Using devtool without an absolute path to the workspace in bblayers.conf

2023-10-19 Thread Mike Crowe via lists.openembedded.org
On Wednesday 18 October 2023 at 17:47:50 +0200, Julien Stephan wrote: > Le mer. 18 oct. 2023 à 16:29, Mike Crowe via lists.openembedded.org > a écrit : > > > > I'm trying to work out how we can make use of devtool to make our lives > > easier during development. In general it seems to work very

Re: [OE-core] [PATCH] perf: lift TARGET_CC_ARCH modification out of security_flags.inc

2023-10-19 Thread Richard Purdie
On Thu, 2023-10-19 at 14:32 +0200, Rasmus Villemoes via lists.openembedded.org wrote: > From: Rasmus Villemoes > > Building perf without security_flags.inc being included in one's > distro results in the buildpaths warning > > WARNING: perf-1.0-r9 do_package_qa: QA Issue: File /usr/bin/trace in

[OE-core] [PATCH v2] selftest/buildoptions: tag the download mirror test with 'yocto-mirrors'

2023-10-19 Thread Alexander Kanavin
This will allow bundling all yocto mirror tests together, both for the purposes of running only them specifically, and excluding them from 'general' oe-selftest runs. There is an upcoming test for sstate cache served over content delivery network which will use the same tag, so it can be run

Re: [OE-core] [PATCH] cve-check.bbclass: support embedded SW components with different version number

2023-10-19 Thread Jose Quaresma
Hi This change will need some adaptations in the create-spdx.bbclass to handle this new variable with _PN Jose Mikko Rapeli escreveu no dia quinta, 19/10/2023 à(s) 10:13: > Hi, > > On Thu, Oct 19, 2023 at 10:19:53AM +0200, Marta Rybczynska wrote: > > On Mon, Oct 16, 2023 at 9:01 AM Mikko

Re: [OE-core] [PATCH] perf: lift TARGET_CC_ARCH modification out of security_flags.inc

2023-10-19 Thread Bruce Ashfield
On Thu, Oct 19, 2023 at 8:32 AM Rasmus Villemoes wrote: > > From: Rasmus Villemoes > > Building perf without security_flags.inc being included in one's > distro results in the buildpaths warning > > WARNING: perf-1.0-r9 do_package_qa: QA Issue: File /usr/bin/trace in > package perf contains

Re: [OE-core] [PATCH] cve-check.bbclass: support embedded SW components with different version number

2023-10-19 Thread Mikko Rapeli
Hi, On Thu, Oct 19, 2023 at 12:54:44PM +0100, Jose Quaresma wrote: > Hi > > This change will need some adaptations in the create-spdx.bbclass to handle > this new variable with _PN Good point. How does SPDX tooling handle embedded SW components in recipe sources? I presume it does not because

Re: Kernel 6.5 ttyS1 hang with qemu (was Re: [OE-core] Summary of the remaining 6.5 kernel serial issue (and 6.5 summary)

2023-10-19 Thread Richard Purdie
On Wed, 2023-10-18 at 08:28 +0300, Tony Lindgren wrote: > * Richard Purdie [231017 22:15]: > > On Tue, 2023-10-17 at 09:56 +0300, Tony Lindgren wrote: > > > * Richard Purdie [231016 08:10]: > > > > The port sometimes doesn't come up properly at boot. > > > > > > > > To be clear, the "\n\n" from

Re: [OE-core] Using devtool without an absolute path to the workspace in bblayers.conf

2023-10-19 Thread Alexander Kanavin
On Thu, 19 Oct 2023 at 14:33, Mike Crowe via lists.openembedded.org wrote: > We do need to modify bblayers.conf from time to time to add and remove > layers. > > Using templates might be possible, but it would appear that this would > force developers to manually incorporate changes (or just wipe

[OE-core][PATCH 0/2] DNS resolution using systemd-resolved

2023-10-19 Thread Eero Aaltonen via lists.openembedded.org
From: Eero Aaltonen Enable DNS resolution features from systemd-resolved, such as Multicast DNS for distros using systemd. The first commit enables systemd-resolved via glibc nsswitch.conf, which is one of the interfaces recommended by systemd upstream. The second commit enables mDNS

[OE-core][PATCH 1/2] base-files, systemd: add nss-resolve plugin

2023-10-19 Thread Eero Aaltonen via lists.openembedded.org
From: Eero Aaltonen Add nss-resolve plugin to the glibc Name Service Switch (NSS) with systemd-resolved DISTRO_FEATURE so that systemd-resolved is used in DNS name resolution. This enables the resolution of Multicast DNS and Link-Local Multicast Name Resolution names, depending on the selected

[OE-core][PATCH 2/2] systemd: add option to use stub-resolv.conf

2023-10-19 Thread Eero Aaltonen via lists.openembedded.org
From: Eero Aaltonen Add option to use the stub-resolv.conf file, which is the systemd upstream's recommended default mode https://www.freedesktop.org/software/systemd/man/systemd-resolved.service.html#/etc/resolv.conf This enables the resolution of Multicast DNS and Link-Local Multicast Name

[OE-core] [PATCH] perf: lift TARGET_CC_ARCH modification out of security_flags.inc

2023-10-19 Thread Rasmus Villemoes via lists.openembedded.org
From: Rasmus Villemoes Building perf without security_flags.inc being included in one's distro results in the buildpaths warning WARNING: perf-1.0-r9 do_package_qa: QA Issue: File /usr/bin/trace in package perf contains reference to TMPDIR because the ${DEBUG_PREFIX_MAP} does not get used.

Re: [OE-core] [PATCH] cve-check.bbclass: support embedded SW components with different version number

2023-10-19 Thread Mikko Rapeli
Hi, Could something like this work? --- a/meta/lib/oe/cve_check.py +++ b/meta/lib/oe/cve_check.py @@ -140,15 +140,14 @@ def get_patched_cves(d): return patched_cves -def get_cpe_ids(cve_product, version): +def get_cpe_ids(cve_product, cve_version): """ Get list of CPE

[OE-core][mickledore][PATCH] weston: default to launcher-seatd

2023-10-19 Thread Sean Nyekjaer
Lets use the launcher-seatd as default, launcher-logind is "sometimes" failing to provide input events. Further more is the launcher-logind depricated in newer versions of weston. Signed-off-by: Sean Nyekjaer --- meta/recipes-graphics/wayland/weston_11.0.1.bb | 4 ++-- 1 file changed, 2

Re: [OE-core] [PATCH v2 4/4] scripts:recipetool:create_buildsys_python: add PEP517 support

2023-10-19 Thread Tim Orling
On Thu, Oct 19, 2023 at 6:49 AM Alexandre Belloni via lists.openembedded.org wrote: > Hello, > > On 19/10/2023 09:36:53+0200, Julien Stephan wrote: > > add support for PEP517 [1] > > > > if a pyproject.toml file is found, use it to create the recipe, > > otherwise fallback to the old setup.py

Re: [OE-core] [PATCH 1/2] patchtest: sort when reading patches from a directory

2023-10-19 Thread Trevor Gamblin
On 2023-10-19 09:40, Ross Burton wrote: From: Ross Burton When reading patches from a directory it's important to sort the output of os.listdir(), as that returns the files in an effectively random order. We can't test the patches apply if they're applied in the wrong order, and typically

Re: [OE-core] [PATCH v2 4/4] scripts:recipetool:create_buildsys_python: add PEP517 support

2023-10-19 Thread Alexandre Belloni via lists.openembedded.org
Hello, On 19/10/2023 09:36:53+0200, Julien Stephan wrote: > add support for PEP517 [1] > > if a pyproject.toml file is found, use it to create the recipe, > otherwise fallback to the old setup.py method. > > [YOCTO #14737] > > [1]: https://peps.python.org/pep-0517/ > > Signed-off-by: Julien

Re: [OE-core] Using devtool without an absolute path to the workspace in bblayers.conf

2023-10-19 Thread Mike Crowe via lists.openembedded.org
On Thursday 19 October 2023 at 14:51:56 +0200, Alexander Kanavin wrote: > On Thu, 19 Oct 2023 at 14:33, Mike Crowe via lists.openembedded.org > wrote: > > We do need to modify bblayers.conf from time to time to add and remove > > layers. > > > > Using templates might be possible, but it would

[OE-core] [PATCH] kea: drop unused directory

2023-10-19 Thread Thomas Wolber
the usage of /var/kea was dropped in the 1.6 release (see https://gitlab.isc.org/isc-projects/kea/-/issues/538 ). Creating the directory fails on systems with read-only rootfs. Signed-off-by: Thomas Wolber Signed-off-by: Vyacheslav Yurkov ---

[OE-core] [PATCH] linux-yocto/6.5: serial: core: integrate upstream fixes

2023-10-19 Thread Bruce Ashfield
From: Bruce Ashfield Integrating the following commit(s) to linux-yocto/6.5: 14f83e409308 serial: core: test for -EINPROGRESS during tx power management validation 1b5b735f311f serial: core: Fix checks for tx runtime PM state dee98a75d75c Revert "serial-core: disable power

[OE-core] [PATCH 2/2] patchtest: remove unused imports

2023-10-19 Thread Ross Burton
From: Ross Burton Signed-off-by: Ross Burton --- meta/lib/patchtest/data.py | 1 - meta/lib/patchtest/repo.py | 1 - meta/lib/patchtest/tests/test_mbox_cve.py | 1 - meta/lib/patchtest/tests/test_mbox_mailinglist.py | 1

[OE-core] [PATCH 1/2] patchtest: sort when reading patches from a directory

2023-10-19 Thread Ross Burton
From: Ross Burton When reading patches from a directory it's important to sort the output of os.listdir(), as that returns the files in an effectively random order. We can't test the patches apply if they're applied in the wrong order, and typically patch filenames are prefixed with a counter

[OE-core][PATCH] patchtest: check for untracked changes

2023-10-19 Thread Trevor Gamblin
[YOCTO #15243] Avoid overwriting local changes when running patchtest by checking for anything unstaged or uncommitted in the target repo, and logging an error if something is found. This will provide the user helpful feedback if (for example) they forgot to commit a change for their patch under

Re: [OE-core] [qa-build-notification] QA notification for completed autobuilder build (yocto-4.3.rc1)

2023-10-19 Thread Jing Hui Tham
Hi all, Intel and WR YP QA is planning for QA execution for YP build yocto-4.3.rc1. We are planning to execute following tests for this cycle: OEQA-manual tests for following module: 1. OE-Core 2. BSP-hw Runtime auto test for following platforms: 1. MinnowBoard Turbot - 32bit

Re: [OE-core] [PATCH] linux-yocto/6.5: serial: core: integrate upstream fixes

2023-10-19 Thread Richard Purdie
On Thu, 2023-10-19 at 11:08 -0400, bruce.ashfi...@gmail.com wrote: > From: Bruce Ashfield > > Integrating the following commit(s) to linux-yocto/6.5: > > 14f83e409308 serial: core: test for -EINPROGRESS during tx power > management validation > 1b5b735f311f serial: core: Fix checks for

[OE-core] [PATCH] linux-yocto/6.5: config: remove VIDEO_STK1160_COMMON

2023-10-19 Thread Bruce Ashfield
From: Bruce Ashfield Integrating the following commit(s) to linux-yocto/.: 4531e74daf0 media/media-usb-tv.cfg: remove VIDEO_STK1160_COMMON Signed-off-by: Bruce Ashfield --- Apply this before the recently sent serial core fixup patch. Bruce

[OE-core] [PATCH] bb-matrix-plot.sh: Show underscores correctly in labels

2023-10-19 Thread Peter Kjellerstedt
Underscores previously caused the next character in the label to be printed using subscript due to the enhanced string support in gnuplot. Signed-off-by: Peter Kjellerstedt --- scripts/contrib/bb-perf/bb-matrix-plot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH 1/3] kernel-yocto, devtool-source.bbclass: fix 'devtool modify' for kernels

2023-10-19 Thread Chris Laplante via lists.openembedded.org
Hi Alexandre, > The series causes: > > 2023-10-17 23:07:15,509 - oe-selftest - INFO - > devtool.DevtoolUpgradeTests.test_devtool_modify_kernel_overrides > (subunit.RemotedTestCase) > 2023-10-17 23:07:15,675 - oe-selftest - INFO - ... FAIL > Stderr: > 2023-10-17 22:28:35,773 - oe-selftest - INFO

Re: [OE-core] Detecting unimplemented ptests with heuristics

2023-10-19 Thread Michael Opdenacker via lists.openembedded.org
Hi Yoann On 19.10.23 at 10:00, Yoann Congal wrote: Hi everyone, We recently implemented a way to detect recipes for upstream code that contain unit tests but does not implement ptests. Those recipes make good candidates for increasing the ptests coverage. This is implemented as a QA check.

Re: [OE-core] [PATCH v3] rust: Upgrade 1.70.0 -> 1.71.0

2023-10-19 Thread Sundeep KOKKONDA via lists.openembedded.org
Hi Alex, We may look into rust oe-selftest issues during coming week. FYI... We did rust upgrade to 1.73.0 and we could still see the  "-Z nightly build flag" failure issue (which was initially observed with rust 1.72.0 upgrade). We will send the patch by tomorrow and you can consider that for

Re: [OE-core] [qa-build-notification] QA notification for completed autobuilder build (yocto-4.3.rc1)

2023-10-19 Thread Richard Purdie
On Thu, 2023-10-19 at 14:06 +, Jing Hui Tham wrote: > Hi all, > > Intel and WR YP QA is planning for QA execution for YP build yocto-4.3.rc1. > We are planning to execute following tests for this cycle: > > OEQA-manual tests for following module: > 1. OE-Core > 2. BSP-hw > > Runtime

[OE-core][kirkstone][PATCH 1/1] libx11: fix CVE-2023-43787

2023-10-19 Thread Urade, Yogita via lists.openembedded.org
From: Yogita Urade A vulnerability was found in libX11 due to an integer overflow within the XCreateImage() function. This flaw allows a local user to trigger an integer overflow and execute arbitrary code with elevated privileges. Reference:

Re: [OE-core] [mickledore] glibc: stable 2.37 branch updates.

2023-10-19 Thread Sanjana.Venkatesh via lists.openembedded.org
Hi Khem, We have checked by raising the memory and no regression failures were found. Here is the test summary; Regression testing is done and below are the test results. Before glibc update Summary of test results: PASS:4727 FAIL:240 XPASS:4 XFAIL:16 UNSUPPORTED:220 After glibc update Summary

Re: [OE-core] [mickledore] glibc: stable 2.37 branch updates.

2023-10-19 Thread Sanjana.Venkatesh via lists.openembedded.org
Hi Khem , We tried increasing the memory and no regression failures were found. Here is the test results: Regression testing is done and below are the test results. Before glibc update Summary of test results: PASS:4727 FAIL:240 XPASS:4 XFAIL:16 UNSUPPORTED:220 After glibc update Summary of

Re: [OE-core] [mickledore] glibc: stable 2.37 branch updates.

2023-10-19 Thread Sanjana.Venkatesh via lists.openembedded.org
Hi Khem, We tried increasing the memory and no regression failures were found. Here is the test results: Regression testing is done and below are the test results. Before glibc update Summary of test results: PASS:4727 FAIL:240 XPASS:4 XFAIL:16 UNSUPPORTED:220 After glibc update Summary of

[OE-core][mickledore][PATCH 1/1] libxpm: upgrade to 3.5.17

2023-10-19 Thread Urade, Yogita via lists.openembedded.org
From: Ross Burton This release fixes the following CVEs: - CVE-2023-43788 - CVE-2023-43789 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie (cherry picked from commit 46dd8ce41756dbc2aa0f9001416f208cced1c8d5) Signed-off-by: Yogita Urade --- .../xorg-lib/{libxpm_3.5.16.bb =>

[OE-core][mickledore][PATCH 1/1] libx11: upgrade to 1.8.7

2023-10-19 Thread Urade, Yogita via lists.openembedded.org
From: Ross Burton This incorporates fixes for the following CVEs: - CVE-2023-43785 - CVE-2023-43786 - CVE-2023-43787 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie (cherry picked from commit a1534bb34b680bfc5cb2f35b5fd5a0c2afed6368) Signed-off-by: Yogita Urade ---

[oe-core][kirkstone][PATCH 1/1] linux-firmware: upgrade 20230625 -> 20230804

2023-10-19 Thread Meenali Gupta via lists.openembedded.org
License-Update: additional firmwares upgrade include fix for CVE-2023-20569 CVE-2022-40982 CVE-2023-20593 Changelog: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/ References: https://nvd.nist.gov/vuln/detail/CVE-2023-20569

[OE-core] [PATCH] shared-mime-info: Fix missing sentinel warning

2023-10-19 Thread Khem Raj
Clang finds it, gcc does not. Signed-off-by: Khem Raj --- .../0001-Fix-literal-as-per-c-11.patch| 284 ++ .../shared-mime-info/shared-mime-info_git.bb | 3 +- 2 files changed, 286 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH v2] shared-mime-info: Fix missing sentinel warning

2023-10-19 Thread Khem Raj
Clang finds it, gcc does not. Signed-off-by: Khem Raj --- v2: Some more warnings fixed with clang .../0001-Fix-literal-as-per-c-11.patch| 279 ++ ...001-Fix-string-literal-concatenation.patch | 39 +++ .../shared-mime-info/shared-mime-info_git.bb | 5 +- 3 files