Re: [OE-core] [PATCH] kernel: Commit without running hooks

2023-10-27 Thread William A. Kennington III via lists.openembedded.org
On Fri, Oct 27, 2023 at 3:08 AM Luca Ceresoli wrote: > > Hello William, > > On Wed, 25 Oct 2023 15:37:10 -0700 > "William A. Kennington III via lists.openembedded.org" > wrote: > ^ > > As you can see your sender addr

Re: [OE-core] [PATCH] kernel: Commit without running hooks

2023-10-26 Thread William A. Kennington III via lists.openembedded.org
On Wed, Oct 25, 2023 at 7:08 PM Bruce Ashfield wrote: > > On Wed, Oct 25, 2023 at 6:37 PM William A. Kennington III via > lists.openembedded.org wrote: > > > > The hooks are pulled from the impure environment and are often broken in > > our environments. There is no r

[OE-core] [PATCH] kernel: Commit without running hooks

2023-10-25 Thread William A. Kennington III via lists.openembedded.org
The hooks are pulled from the impure environment and are often broken in our environments. There is no reason to add extra metadata or verify the commit message as its arbitrary to turn the tarball into a git repo. Signed-off-by: William A. Kennington III ---

Re: [OE-core] [PATCH] rootfs-postcommands: Make /etc/timestamp consistent with image

2022-08-29 Thread William A. Kennington III via lists.openembedded.org
On Mon, Aug 29, 2022 at 5:19 PM Mark Hatle wrote: > > > On 8/29/22 6:59 PM, William A. Kennington III via lists.openembedded.org > wrote: > > This makes the determination of the timestamp for the /etc/timestamp > > file consistent with mtimes in the generated image. This

[OE-core] [PATCH] rootfs-postcommands: Make /etc/timestamp consistent with image

2022-08-29 Thread William A. Kennington III via lists.openembedded.org
This makes the determination of the timestamp for the /etc/timestamp file consistent with mtimes in the generated image. This is desirable to make the built image reproducible with the git commit date instead of the current date. Change-Id: I7d9fe32906aa93baf53948aa40b7a98fb05dd384 Signed-off-by:

[OE-core] [PATCH] image_types: Set SOURCE_DATE_EPOCH for squashfs

2022-08-29 Thread William A. Kennington III via lists.openembedded.org
We want to use the reproducible timestamp for all of the files that is set rootfs-postcommands.bbclass, derived from REPRODUCIBLE_TIMESTAMP_ROOTFS. Without this, we use a hardcoded time that is built into the squashfs sources. Signed-off-by: William A. Kennington III ---

Re: [OE-core] [PATCH] rng-tools: disable libjitterentropy due to cpu usage

2022-05-02 Thread William A. Kennington III via lists.openembedded.org
Isn't this desirable if you don't have an hwrng? We want to generate entropy so we can perform cryptographic operations by default if we bring in rng-tools. On Mon, May 2, 2022 at 2:10 PM Wes Malone wrote: > > After boot rngd maxes out the processor initializing JITTER entropy for > some

[OE-core][PATCH] rm_work.bbclass: Fix for files starting with -

2021-09-27 Thread William A. Kennington III via lists.openembedded.org
This makes it possible to name files starting with a hyphen in the work directory. Without this change rm will fail due to an unexpected option being passed. Signed-off-by: William A. Kennington III --- meta/classes/rm_work.bbclass | 8 1 file changed, 4 insertions(+), 4 deletions(-)

Re: [OE-core] [V2][PATCH] libjpeg-turbo: fix do_compile error on armv5

2021-06-09 Thread William A. Kennington III via lists.openembedded.org
Btw, I'm hoping upstream will fix this for all arm https://github.com/libjpeg-turbo/libjpeg-turbo/issues/523 On Wed, Jun 9, 2021 at 12:32 AM Changqing Li wrote: > > From: Changqing Li > > fix below error: > /include/arm_neon.h:31:2: error: #error "NEON intrinsics not available with > the

Re: [OE-core][PATCH 1/2] systemd: Fix static neighbor creation in networkd

2021-05-18 Thread William A. Kennington III via lists.openembedded.org
18 May 2021 at 00:51, William A. Kennington III via > lists.openembedded.org wrote: >> >> Backport a patch to fix the creation of static neighbors. >> >> Signed-off-by: William A. Kennington III >> --- >> ...or-Always-add-neighbors-with-replace.pat

[OE-core][PATCH 2/2] systemd: Fix networkd failing links with loopback RAs

2021-05-17 Thread William A. Kennington III via lists.openembedded.org
Backport a patch to situations where the current node receives an RA packet from itself, which triggers systemd-networkd to put the link into a failed state which turns off internal RA functionality. Signed-off-by: William A. Kennington III --- ...le-ignoring-ll-gateway-being-link-ll.patch | 68

[OE-core][PATCH 1/2] systemd: Fix static neighbor creation in networkd

2021-05-17 Thread William A. Kennington III via lists.openembedded.org
Backport a patch to fix the creation of static neighbors. Signed-off-by: William A. Kennington III --- ...or-Always-add-neighbors-with-replace.patch | 50 +++ meta/recipes-core/systemd/systemd_247.6.bb| 1 + 2 files changed, 51 insertions(+) create mode 100644

Re: [OE-core] [PATCH] libxcb: Add inherit python3native

2021-04-14 Thread William A. Kennington III via lists.openembedded.org
It's correct because the package it depends on (xcb-proto-native) is already `inherit python3native`. This package's xcbgen invocation is broken because it is using a combination of files generated for native python but executed through host python (look at the site-packages version). It can't