[OE-core][kirkstone 1/1] linux-yocto/5.15: cfg: remove obselete CONFIG_NFSD_V3 option

2024-05-03 Thread Bruce Ashfield
From: Bruce Ashfield Integrating the following commit(s) to linux-yocto/.: 1/1 [ Author: Bruce Ashfield Email: bruce.ashfi...@gmail.com Subject: nfsd: drop CONFIG_NFSD_V3 Date: Tue, 2 Aug 2022 10:52:25 -0400 commit 5f9a62ff7d2808c7b56c0ec90f3b7eae5872afe6 Author:

Re: [OE-core][kirkstone 11/12] linux-yocto/5.15: update to v5.15.157

2024-05-03 Thread Bruce Ashfield
I'll revisit this in a week or so, and send the queue again at that point. The fix is trivial, I've just moved on from it for the time being Bruce On Fri, May 3, 2024 at 1:39 PM Steve Sakoman wrote: > Hi Bruce, > > Unfortunately I'm getting warnings on many of the builds: > > WARNING:

Re: [OE-core][kirkstone 11/12] linux-yocto/5.15: update to v5.15.157

2024-05-03 Thread Steve Sakoman
Hi Bruce, Unfortunately I'm getting warnings on many of the builds: WARNING: linux-yocto-5.15.157+gitAUTOINC+21fd5becb1_f0d16a142e-r0 do_kernel_configcheck: [kernel config]: This BSP contains fragments with warnings: [INFO]: the following symbols were not found in the active configuration: -

Re: [OE-core] [PATCH] uboot-sign: fix loop in do_uboot_assemble_fitimage

2024-05-03 Thread Steve Sakoman
On Fri, May 3, 2024 at 9:44 AM Quentin Schulz wrote: > > Hi Ralph, > > On 5/3/24 5:18 PM, Ralph Siemsen via lists.openembedded.org wrote: > > [You don't often get email from > > ralph.siemsen=linaro@lists.openembedded.org. Learn why this is > > important at

Re: [OE-core] [PATCH v2 0/5] Improvements for performance test report view

2024-05-03 Thread Randy MacLeod via lists.openembedded.org
On 2024-05-03 10:43 a.m., Ninette Adhikari wrote: This work is done according to "Milestone 9: Build performance test report view" as stated in the Scope of Work with Sovereign Tech Fund (STF) (https://www.sovereigntechfund.de/). The current report can be accessed here: Performance test report

Re: [OE-core] [PATCH] uboot-sign: fix loop in do_uboot_assemble_fitimage

2024-05-03 Thread Quentin Schulz via lists.openembedded.org
Hi Ralph, On 5/3/24 5:18 PM, Ralph Siemsen via lists.openembedded.org wrote: [You don't often get email from ralph.siemsen=linaro@lists.openembedded.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] When using multiple u-boot configurations in

Re: [OE-core] [PATCH] uboot-sign: fix loop in do_uboot_assemble_fitimage

2024-05-03 Thread Sean Anderson via lists.openembedded.org
On 5/3/24 11:18, Ralph Siemsen wrote: > When using multiple u-boot configurations in UBOOT_CONFIG, the helper > function uboot_assemble_fitimage_helper() was not called with all > combinations of type & binary, due to a copy-n-paste indexing error. > > Signed-off-by: Ralph Siemsen > --- >

[OE-core] [PATCH] uboot-sign: fix loop in do_uboot_assemble_fitimage

2024-05-03 Thread Ralph Siemsen
When using multiple u-boot configurations in UBOOT_CONFIG, the helper function uboot_assemble_fitimage_helper() was not called with all combinations of type & binary, due to a copy-n-paste indexing error. Signed-off-by: Ralph Siemsen --- meta/classes-recipe/uboot-sign.bbclass | 2 +- 1 file

Re: [OE-core] [PATCH] ipk: Do not hardcode payload compression algorithm

2024-05-03 Thread Quentin Schulz via lists.openembedded.org
Hi Philip, On 5/2/24 8:00 PM, Philip Lorenz wrote: Hi Quentin, On 02.05.24 19:19, Quentin Schulz wrote: Sent from outside the BMW organization  - be CAUTIOUS, particularly with links and attachments. Absender außerhalb der BMW Organisation - Bitte VORSICHT beim Öffnen von Links und Anhängen.

Re: [OE-core] [PATCH] openssl: fix pkgconfig path problems

2024-05-03 Thread Mikko Rapeli
Hi, On Fri, May 03, 2024 at 10:59:21AM +, Ross Burton via lists.openembedded.org wrote: > OpenSSL 3.3.0 introduced new pkgconfig generators which interact badly > with our incorrect setting of --libdir, which is documented as being > the name of the directory _under $prefix_, not an absolute

[OE-core] [PATCH v2 3/5] oe-build-perf-report: Improve report styling and add descriptions

2024-05-03 Thread Ninette Adhikari
From: Ninette Adhikari <13760198+ninetteadhik...@users.noreply.github.com> Styling updates are added including page margin, labels for x and y axis, tooltip, and section descriptions. --- .../build_perf/html/measurement_chart.html| 28 +++--- scripts/lib/build_perf/html/report.html |

[OE-core] [PATCH v2 2/5] oe-build-perf-report: Display more than 300 commits and date instead of commit number

2024-05-03 Thread Ninette Adhikari
From: Ninette Adhikari <13760198+ninetteadhik...@users.noreply.github.com> - This commit updates measurement statistics data to include start_time so that time can be displayed instead of commit numbers on the chart. - It also updates default commit history length to 300. ---

[OE-core] [PATCH v2 5/5] oe-build-perf-report: Add dark mode

2024-05-03 Thread Ninette Adhikari
Update css to add dark mode when window prefers-color-scheme is dark. Signed-off-by: Ninette Adhikari --- .../build_perf/html/measurement_chart.html| 15 +--- scripts/lib/build_perf/html/report.html | 34 +++ 2 files changed, 39 insertions(+), 10 deletions(-) diff

[OE-core] [PATCH v2 0/5] Improvements for performance test report view

2024-05-03 Thread Ninette Adhikari
This work is done according to "Milestone 9: Build performance test report view" as stated in the Scope of Work with Sovereign Tech Fund (STF) (https://www.sovereigntechfund.de/). The current report can be accessed here: Performance test report HTML

[OE-core] [PATCH v2 4/5] oe-build-perf-report: Update chart tooltip and chart type

2024-05-03 Thread Ninette Adhikari
- Update chart tooltip format to show value as size in MB for 'rootfs size' and timestamp for 'tmpdir size' - Add commit number to tooltip - Update chart type to 'step chart' instead of 'line chart' Signed-off-by: Ninette Adhikari --- .../build_perf/html/measurement_chart.html| 31

[OE-core] [PATCH v2 1/5] oe-build-perf-report: Add apache echarts to make report interactive

2024-05-03 Thread Ninette Adhikari
From: Ninette Adhikari <13760198+ninetteadhik...@users.noreply.github.com> - Add Apache echarts (https://echarts.apache.org/en/index.html) library to create build performance charts. - Restructure data to time and value array format so that it can be used by echarts. - This commit also converts

[OE-core][scarthgap 3/3] systemd: sed ROOT_HOME only if sysusers PACKAGECONFIG is set

2024-05-03 Thread Steve Sakoman
From: Christian Bräuner Sørensen Fixes a bug introducted in ebafe46379 systemd: upgrade to 255.1. Besides updating systemd, that commit also made other changes. One of them being when to perform the replacement in order to fix ROOT_HOME. Previously, that happened on a configure prefunc and on

[OE-core][scarthgap 1/3] sstate.bbclass: Add _SSTATE_EXCLUDEDEPS_SYSROOT to vardepsexclude

2024-05-03 Thread Steve Sakoman
From: Mark Hatle When using tinfoil to control the build, multiple commands (serially) could trigger an error such as: When reparsing bb:do_package, the basehash value changed from ... to The metadata is not deterministic and this needs to be fixed. ERROR: The following commands

[OE-core][scarthgap 2/3] scripts/oe-setup-build: write a build environment initialization one-liner into the build directory

2024-05-03 Thread Steve Sakoman
From: Alexander Kanavin With this, users no longer have to know where oe-init-build-env is relative to the build directory; that information is contained in the one liner and then it's possible to simply use that: . /path/to/build/init-build-env This will particularly help with initializing

[OE-core][scarthgap 0/3] Patch review

2024-05-03 Thread Steve Sakoman
Please review this set of changes for scarthgap and have comments back by end of day Monday, May 6 Passed a-full on autobuilder: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/6873 The following changes since commit e38a0f1a5e515651173b1aa21d38f2b3924de8b2: mpg123: upgrade

Re: [oe-core][kirkstone][PATCH 4/4] gstreamer1.0-plugins-bad: fix CVE-2023-44446

2024-05-03 Thread Steve Sakoman
On Fri, May 3, 2024 at 4:43 AM Polampalli, Archana via lists.openembedded.org wrote: > > From: Archana Polampalli > > Signed-off-by: Archana Polampalli > --- > .../CVE-2023-6.patch | 329 ++ > .../gstreamer1.0-plugins-bad_1.20.7.bb| 1 + > 2

Re: [OE-core][kirkstone][PATCH] libpciaccess: Remove duplicated license entry

2024-05-03 Thread Steve Sakoman
Since this is also an issue in master branch, I'll need you to submit this patch for master first before I can take it in kirkstone. Thanks, Steve On Thu, May 2, 2024 at 11:14 PM nikhil via lists.openembedded.org wrote: > > Remove duplicated MIT license entry for libpciaccess > > Duplication

[OE-core][PATCH 3/4] patchtest: tests: update bugzilla_entry_format.fail testfile

2024-05-03 Thread Trevor Gamblin
Update the test file to target a more stable README file. Signed-off-by: Trevor Gamblin --- .../TestMbox.test_bugzilla_entry_format.fail | 25 ++- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git

[OE-core][PATCH 4/4] patchtest: utils: remove unused functions

2024-05-03 Thread Trevor Gamblin
Specifically, remove four things: - get_subject_prefix(): This function is only being used once (in the next function found in the module), so remove it for easier comprehension/maintenance. - exec_cmd: the backend for executing a custom command - exec_cmds: for running multiple calls to exec_cmd

[OE-core][PATCH 1/4] patchtest: requirements.txt: add GitPython

2024-05-03 Thread Trevor Gamblin
GitPython provides some simple utilities for retrieving repo configurations that can replace the manual work that patchtest currently does. Add it to the requirements so that the source can make use of it. Signed-off-by: Trevor Gamblin --- meta/lib/patchtest/requirements.txt | 1 + 1 file

[OE-core][PATCH 0/4] patchtest: refactor and simplify, part 1

2024-05-03 Thread Trevor Gamblin
This series is the preliminary step in what is intended to be a larger refactor of the patchtest codebase. It consists mainly of the removal of a custom _exec() function and underlying supports in favor of the GitPython module's built-in capabilities and .execute() method for interacting with a

[OE-core][PATCH 2/4] patchtest: repo: refactor to use GitPython

2024-05-03 Thread Trevor Gamblin
The repo module currently uses a custom _exec() function in order to run various git commands as part of the patchtest setup/test process. These can more efficiently be done with the GitPython module, so use that instead and reduce the amount of custom code to be maintained for patchtest in the

Re: [OE-core] [PATCH 02/12] linux-yocto/6.6: update CVE exclusions (6.6.24)

2024-05-03 Thread Bruce Ashfield
On Fri, May 3, 2024 at 1:42 AM Marta Rybczynska wrote: > Hello Bruce et al, > For information, the linux_kernel_cves repo has now a banner "This > repository has been archived by the owner on May 2, 2024. It is now > read-only. ", > Yes, I had noticed that, but was letting my release scripts do

[OE-core] [RFC] dm-verity image support

2024-05-03 Thread Louis Rannou via lists.openembedded.org
Hello, Would that be ok to have support for verity images in oe-core ? We may use the bbclass dm-verity-image from meta-security. But in my opinion we should not include the commit that creates a wic fragment 3b88f75 (dm-verity: add wks.in fragment with dynamic build hash data (10 months ago)

[OE-core] [PATCH 1/2] python3-pyproject-hooks: fix upstream version check

2024-05-03 Thread Alexander Kanavin
From: Alexander Kanavin Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb

[OE-core] [PATCH 2/2] wayland: fix upstream version check

2024-05-03 Thread Alexander Kanavin
From: Alexander Kanavin Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/wayland/wayland-protocols_1.35.bb | 1 + meta/recipes-graphics/wayland/wayland-utils_1.2.0.bb| 1 + meta/recipes-graphics/wayland/wayland_1.22.0.bb | 2 +-

[oe-core][kirkstone][PATCH 3/4] gstreamer1.0-plugins-bad: fix CVE-2024-0444

2024-05-03 Thread Polampalli, Archana via lists.openembedded.org
From: Archana Polampalli Signed-off-by: Archana Polampalli --- .../CVE-2024-0444.patch | 42 +++ .../gstreamer1.0-plugins-bad_1.20.7.bb| 1 + 2 files changed, 43 insertions(+) create mode 100644

[oe-core][kirkstone][PATCH 2/4] ofono: fix CVE-2023-4233

2024-05-03 Thread Polampalli, Archana via lists.openembedded.org
From: Archana Polampalli A flaw was found in ofono, an Open Source Telephony on Linux. A stack overflow bug is triggered within the sms_decode_address_field() function during the SMS PDU decoding. It is assumed that the attack scenario is accessible from a compromised modem, a malicious base

[oe-core][kirkstone][PATCH 4/4] gstreamer1.0-plugins-bad: fix CVE-2023-44446

2024-05-03 Thread Polampalli, Archana via lists.openembedded.org
From: Archana Polampalli Signed-off-by: Archana Polampalli --- .../CVE-2023-6.patch | 329 ++ .../gstreamer1.0-plugins-bad_1.20.7.bb| 1 + 2 files changed, 330 insertions(+) create mode 100644

[oe-core][kirkstone][PATCH 1/4] ofono: fix CVE-2023-4234

2024-05-03 Thread Polampalli, Archana via lists.openembedded.org
From: Archana Polampalli A flaw was found in ofono, an Open Source Telephony on Linux. A stack overflow bug is triggered within the decode_submit_report() function during the SMS decoding. It is assumed that the attack scenario is accessible from a compromised modem, a malicious base station,

[OE-core] [PATCH] openssl: fix pkgconfig path problems

2024-05-03 Thread Ross Burton
OpenSSL 3.3.0 introduced new pkgconfig generators which interact badly with our incorrect setting of --libdir, which is documented as being the name of the directory _under $prefix_, not an absolute path. This resulted in the pkgconfig files have libdir=/usr which mostly works as the actual

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Martin Jansa
On Fri, May 3, 2024 at 12:46 PM Mikko Rapeli wrote: > > Hi, > > On Fri, May 03, 2024 at 12:43:29PM +0200, Martin Jansa wrote: > > On Fri, May 3, 2024 at 12:37 PM Mikko Rapeli via > > lists.openembedded.org > > wrote: > > > > > > Hi, > > > > > > On Fri, May 03, 2024 at 12:32:42PM +0200, Alexander

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Ross Burton
On 3 May 2024, at 11:43, Martin Jansa via lists.openembedded.org wrote: > Isn't it easier to fix tpm2-openssl then? > > I had similar issue in chip which was using "pkg-config > --variable=prefix openssl" and didn't expect it to be empty in "if > prefix[-4] == '/usr'" and rather patched chip

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Mikko Rapeli
Hi, On Fri, May 03, 2024 at 12:43:29PM +0200, Martin Jansa wrote: > On Fri, May 3, 2024 at 12:37 PM Mikko Rapeli via > lists.openembedded.org > wrote: > > > > Hi, > > > > On Fri, May 03, 2024 at 12:32:42PM +0200, Alexander Kanavin wrote: > > > I’m sorry, this doesn’t look right. Shouldn’t we

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Martin Jansa
On Fri, May 3, 2024 at 12:37 PM Mikko Rapeli via lists.openembedded.org wrote: > > Hi, > > On Fri, May 03, 2024 at 12:32:42PM +0200, Alexander Kanavin wrote: > > I’m sorry, this doesn’t look right. Shouldn’t we rather ensure $(LIBDIR) is > > correctly set? Besides, hardcoding to lib is certainly

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Mikko Rapeli
Hi, On Fri, May 03, 2024 at 12:32:42PM +0200, Alexander Kanavin wrote: > I’m sorry, this doesn’t look right. Shouldn’t we rather ensure $(LIBDIR) is > correctly set? Besides, hardcoding to lib is certainly incorrect as it will > break multilib. We constantly have to fix upstreams in the opposite

Re: [OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Alexander Kanavin
I’m sorry, this doesn’t look right. Shouldn’t we rather ensure $(LIBDIR) is correctly set? Besides, hardcoding to lib is certainly incorrect as it will break multilib. We constantly have to fix upstreams in the opposite direction. Alex On Fri 3. May 2024 at 12.26, Mikko Rapeli via

[OE-core] [PATCH] openssl: fix pkg-config file libdir from /usr back to /usr/lib

2024-05-03 Thread Mikko Rapeli
openssl update from 3.2.1 to 3.3.0 changed pkg-config generators and libdir changed from /usr/lib to /lib. This breaks builds of recipes which use openssl pkg-config files for library install etc paths. For example meta-security tpm2-openssl fails to build: ERROR:

[OE-core][kirkstone][PATCH] libpciaccess: Remove duplicated license entry

2024-05-03 Thread nikhil
Remove duplicated MIT license entry for libpciaccess Duplication was done as part of below commit: Link: https://git.yoctoproject.org/poky/commit/meta/recipes-graphics/xorg-lib/libpciaccess_0.16.bb?h=kirkstone=b0130fcf91daee0d905af755302fabe608da141c Signed-off-by: Bhabu Bindu ---

[OE-core] [PATCH] llvm: Upgrade to 18.1.5

2024-05-03 Thread Khem Raj
Brings 617a15a9eac9 [clang codegen] Fix MS ABI detection of user-provided constructors. (#90151) 20b9ed64ea07 [RISCV][ISel] Fix types in tryFoldSelectIntoOp (#90659) ece9d35f1a70 [GlobalISel] Fix store merging incorrectly classifying an unknown index expr as 0. (#90375) a7b8b890600a [X86]