Re: [OE-core] [PATCH] classes/kernel: Delay module signing until after strip

2024-07-05 Thread Bruce Ashfield
On Fri, Jul 5, 2024 at 2:35 PM Jörg Sommer via lists.openembedded.org wrote: > > Bruce Ashfield via lists.openembedded.org schrieb am Fr 05. Jul, 10:08 (GMT): > > On Fri, Jul 5, 2024 at 9:19 AM Jörg Sommer via lists.openembedded.org > > wrote: > > > > > > From: Jörg Sommer > > > > > > The curren

Re: [OE-core] [PATCH] classes/kernel: Delay module signing until after strip

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
Bruce Ashfield via lists.openembedded.org schrieb am Fr 05. Jul, 10:08 (GMT): > On Fri, Jul 5, 2024 at 9:19 AM Jörg Sommer via lists.openembedded.org > wrote: > > > > From: Jörg Sommer > > > > The current do_package does not strip the kernel modules, if they are > > signed. Hence, the files in a

Re: [OE-core] Rust reproducibility issue summary

2024-07-05 Thread Alexander Kanavin
On Mon, 3 Jun 2024 at 09:08, Sundeep KOKKONDA < sundeep.kokko...@windriver.com> wrote: > Further analysis on autobuilder binaries shows that the deviations are > similar to that of earlier *rustdoc *issue. The deviations are in > .llvm. suffixes. > > As discussed in issue >

[OE-core] Patchtest results for [PATCH 2/2] oeqa/utils/postactions: transfer whole archive over ssh instead of doing individual copies

2024-07-05 Thread Patchtest
Thank you for your submission. Patchtest identified one or more issues with the patch. Please see the log below for more information: --- Testing patch /home/patchtest/share/mboxes/2-2-oeqa-utils-postactions-transfer-whole-archive-over-ssh-instead-of-doing-individual-copies.patch FAIL: test bugz

[OE-core] [PATCH 0/2] oeqa/utils/postactions: fix disk storage consumption

2024-07-05 Thread Alexis Lothoré via lists . openembedded . org
Hello, this small series aims to fix Bugzilla issue 15536 [1], which results in a big disk storage consumption and/or inode max count issue. The main root cause is that in its current form, the artifacts retriever convert symlinks to the targeted files. This series changes the way those files are r

[OE-core] [PATCH 2/2] oeqa/utils/postactions: transfer whole archive over ssh instead of doing individual copies

2024-07-05 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Fixes [YOCTO 15536] The postactions retrieval actions currently rely on scp executed individually on any file or directory expanded from TESTIMAGE_FAILED_QA_ARTIFACTS. Unfortunately, symlinks are not preserved with this mechanism, which lead to big storage space consumption.

[OE-core] [PATCH 1/2] oeqa/ssh: allow to retrieve raw, unformatted ouput

2024-07-05 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré The ssh target is currently well tailored to easily retrieve textual output from a command run on a remote target. It could also be used to retrieve raw data from a command run onto a remote target (for example, to feed this data directly to another program), but it currently

Re: [OE-core] [PATCH] classes/kernel: Delay module signing until after strip

2024-07-05 Thread Bruce Ashfield
On Fri, Jul 5, 2024 at 9:19 AM Jörg Sommer via lists.openembedded.org wrote: > > From: Jörg Sommer > > The current do_package does not strip the kernel modules, if they are > signed. Hence, the files in a release image stay very big and the debug > information are not split into the kernel-dbg pa

[OE-core] [PATCH] classes/kernel: Delay module signing until after strip

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
From: Jörg Sommer The current do_package does not strip the kernel modules, if they are signed. Hence, the files in a release image stay very big and the debug information are not split into the kernel-dbg package. The idea of this change is to suppress the signing of the modules on `modules_ins

Re: [OE-core] [PATCH] kernel: fix do_symlink_kernsrc function

2024-07-05 Thread Julien Stephan
Le ven. 5 juil. 2024 à 13:58, Etienne Cordonnier a écrit : > > Hi Julien, > did you see my previous patch and the follow-up discussion? > Ticket: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15325 > Previous discussion: > https://lists.openembedded.org/g/openembedded-core/topic/103308574#msg

Re: [OE-core] [PATCH] kernel: fix do_symlink_kernsrc function

2024-07-05 Thread Julien Stephan
Le ven. 5 juil. 2024 à 13:55, Jose Quaresma a écrit : > > > > Julien Stephan via lists.openembedded.org > escreveu (sexta, 5/07/2024 > à(s) 12:31): >> >> According to the comment in do_symlink_kernsrc, this function exists >> for compatibility with old style kernel recipes: >> >> # Old styl

Re: [OE-core] [PATCH] kernel: fix do_symlink_kernsrc function

2024-07-05 Thread Etienne Cordonnier via lists.openembedded.org
Hi Julien, did you see my previous patch and the follow-up discussion? Ticket: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15325 Previous discussion: https://lists.openembedded.org/g/openembedded-core/topic/103308574#msg195238 I think Richard wanted a solution where this errors out: > I'm v

Re: [OE-core] [PATCH] kernel: fix do_symlink_kernsrc function

2024-07-05 Thread Jose Quaresma
Julien Stephan via lists.openembedded.org escreveu (sexta, 5/07/2024 à(s) 12:31): > According to the comment in do_symlink_kernsrc, this function exists > for compatibility with old style kernel recipes: > > # Old style kernels may set ${S} = ${WORKDIR}/git for example > > For such recipes S

Re: [OE-core] Rust reproducibility issue summary

2024-07-05 Thread Alexander Kanavin
On Thu, 4 Jul 2024 at 18:47, Randy MacLeod wrote: > That's true, but it's always nicer to be able to reproduce a problem locally > so one can tests fixes properly. > Richard and I suggested that we at least get the distro and list of packages > identified so that Sundeep > could see if he can re

[OE-core] [PATCH] kernel: fix do_symlink_kernsrc function

2024-07-05 Thread Julien Stephan
According to the comment in do_symlink_kernsrc, this function exists for compatibility with old style kernel recipes: # Old style kernels may set ${S} = ${WORKDIR}/git for example For such recipes S will always be different from STAGING_KERNEL_DIR. This is fine for the first build or when un

Re: [OE-core] [PATCH v2] u-boot: set B = WORKDIR/build

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
Richard Purdie schrieb am Fr 05. Jul, 11:03 (GMT): > On Fri, 2024-07-05 at 11:39 +0200, Jörg Sommer via lists.openembedded.org > wrote: > > From: Jörg Sommer > > > > The build of u-boot fails, if `UBOOT_MACHINE` (instead of `UBOOT_CONFIG`) is > > used. U-boot doe not like the setting of `O=$S` i

Re: [OE-core][PATCH v2] openssh: upgrade 9.7p1 -> 9.8p1

2024-07-05 Thread Jose Quaresma
Richard Purdie escreveu (quinta, 4/07/2024 à(s) 21:27): > On Thu, 2024-07-04 at 13:46 +0100, Jose Quaresma via > lists.openembedded.org wrote: > > Release notes at https://www.openssh.com/txt/release-9.8 > > > > Security > > > > > > This release contains fixes for two security problems,

Re: [OE-core] [PATCH v2] u-boot: set B = WORKDIR/build

2024-07-05 Thread Richard Purdie
On Fri, 2024-07-05 at 11:39 +0200, Jörg Sommer via lists.openembedded.org wrote: > From: Jörg Sommer > > The build of u-boot fails, if `UBOOT_MACHINE` (instead of `UBOOT_CONFIG`) is > used. U-boot doe not like the setting of `O=$S` in the make call, which > happen when `UBOOT_MACHINE` is used. Th

Re: [OE-core] [PATCH] u-boot: do not pass O=$B, if $B = $S

2024-07-05 Thread Richard Purdie
On Fri, 2024-07-05 at 11:41 +0200, Jörg Sommer wrote: > Richard Purdie schrieb am Do 04. Jul, 20:38 (GMT): > > On Thu, 2024-07-04 at 21:18 +0200, Jörg Sommer via > > lists.openembedded.org wrote: > > > From: Jörg Sommer > > > > > > The u-boot Makefile (even v2024.07) doesn't like it, when `O=…` i

Re: [OE-core] [PATCH] u-boot: do not pass O=$B, if $B = $S

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
Richard Purdie schrieb am Do 04. Jul, 20:38 (GMT): > On Thu, 2024-07-04 at 21:18 +0200, Jörg Sommer via > lists.openembedded.org wrote: > > From: Jörg Sommer > > > > The u-boot Makefile (even v2024.07) doesn't like it, when `O=…` is > > the same > > directory as the source directory and complains

[OE-core] [scarthgap][master][PATCH] pixman: fix do_compile error

2024-07-05 Thread Changqing Li via lists.openembedded.org
From: Changqing Li When debug build is enabled(-Og is used), pixman-native do_compile failed with error: In function ‘combine_inner’, inlined from ‘combine_soft_light_ca_float’ at ../pixman-0.42.2/pixman/pixman-combine-float.c:655:1: ../pixman-0.42.2/pixman/pixman-combine-float.c:370:5: erro

[OE-core] [PATCH v2] u-boot: set B = WORKDIR/build

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
From: Jörg Sommer The build of u-boot fails, if `UBOOT_MACHINE` (instead of `UBOOT_CONFIG`) is used. U-boot doe not like the setting of `O=$S` in the make call, which happen when `UBOOT_MACHINE` is used. Therefore, use a dedicated build directory to circumvent the conflict `$B == $S`. Yocto buil

[OE-core] [PATCH] u-boot: set B = WORKDIR/build

2024-07-05 Thread Jörg Sommer via lists . openembedded . org
From: Jörg Sommer The build of u-boot fails, if `UBOOT_MACHINE` (instead of `UBOOT_CONFIG`) is used. U-boot doe not like the setting of `O=$S` in the make call, which happen when `UBOOT_MACHINE` is used. Therefore, use a dedicated build directory to circumvent the conflict `$B == $S`. Yocto buil

[OE-core] [PATCH] abi_version/package: Bump hashequiv version and package class version

2024-07-05 Thread Richard Purdie
The recent pkgconfig change and subsqeuent fixes have left the hash equivalence server in a corrupted state with hashes linking the changes beofore and after the pkgconfig change, breaking reproducibile builds. Bump the appropriate version numbers to allow us to move on and avoid build failures an

Re: [OE-core] [PATCH] bluez5: upgrade 5.72 -> 5.76

2024-07-05 Thread Guðni Már Gilbert
Done https://marc.info/?l=linux-bluetooth&m=172016892412318&w=2 ( https://marc.info/?l=linux-bluetooth&m=172016892412318&w=2 ) :) Hopefully I sent it correctly and it passes CI. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#201591): https://list

Re: [OE-core] [PATCH] testexport: fallback for empty IMAGE_LINK_NAME

2024-07-05 Thread Richard Purdie
On Fri, 2024-07-05 at 07:18 +0200, Konrad Weihmann wrote: > > > On 04.07.24 17:15, Richard Purdie wrote: > > On Wed, 2024-07-03 at 04:47 +, Konrad Weihmann via > > lists.openembedded.org wrote: > > > if IMAGE_LINK_NAME is set empty to disable the symlinking > > > for image artifacts in deploy

Re: [OE-core][PATCH v5 0/8] Add SPDX 3.0 support

2024-07-05 Thread Richard Purdie
On Wed, 2024-07-03 at 07:59 -0600, Joshua Watt via lists.openembedded.org wrote: > This patch series add support for SPDX 3.0 and sets it as the > default. > Currently it is not possible to have SPDX 2.2 and SPDX 3.0 enabled at > the same time > > v2: Added tests and addressed feedback > v3: Fixed