Re: [OE-core] btrfs-tools-native build python error

2024-05-02 Thread Patrick Williams
On Thu, May 02, 2024 at 03:34:43PM +0200, Alexander Kanavin wrote: > On Thu, 2 May 2024 at 15:06, Patrick Williams wrote: > > > This is almost never correct and there is not a single example of it in > > poky. There _are_ examples of exactly what I wrote. > > > >

Re: [OE-core] btrfs-tools-native build python error

2024-05-02 Thread Patrick Williams
On Thu, May 02, 2024 at 02:57:30PM +0200, Alexander Kanavin wrote: > On Thu, 2 May 2024 at 14:52, Patrick Williams wrote: > > > I'm not convinced this is true. As I wrote, the final result of > > PACKAGECONFIG is exactly what I expect; it includes `python` for the >

Re: [OE-core] btrfs-tools-native build python error

2024-05-02 Thread Patrick Williams
On Thu, May 02, 2024 at 02:57:30PM +0200, Alexander Kanavin wrote: > On Thu, 2 May 2024 at 14:52, Patrick Williams wrote: > > > I'm not convinced this is true. As I wrote, the final result of > > PACKAGECONFIG is exactly what I expect; it includes `python` for the >

Re: [OE-core] btrfs-tools-native build python error

2024-05-02 Thread Patrick Williams
On Thu, May 02, 2024 at 11:28:54AM +0200, Alexander Kanavin wrote: > On Wed, 1 May 2024 at 23:27, Patrick Williams via > lists.openembedded.org > wrote: > > What is going on here? Well, this: > > > > ``` > > meta-phosphor/conf/distro/include/phosphor-pkg-tweak

Re: [OE-core] btrfs-tools-native build python error

2024-05-01 Thread Patrick Williams
ion value: # "${STAGING_BINDIR_NATIVE}/python3-native/python3" export PYTHON="/home/apwillia/local/builds/lf-build-yosemite4/tmp/work/x86_64-linux/btrfs-tools-native/6.8/recipe-sysroot-native/usr/bin/python3-native/python3" ``` It seems to me like `inherit_defer` is broken.

Re: [OE-core] [PATCH 4/4] classes/recipes: Switch to use inherit_defer

2024-01-22 Thread Patrick Williams
On Mon, Jan 22, 2024 at 10:08:56AM -0600, Patrick Williams wrote: > On Wed, Jan 03, 2024 at 02:59:02PM +, Richard Purdie wrote: > > meta/recipes-core/libxml/libxml2_2.11.5.bb | 2 +- > > I'm seeing some issues after this commit with libxml and Python > PA

Re: [OE-core] [PATCH 4/4] classes/recipes: Switch to use inherit_defer

2024-01-22 Thread Patrick Williams
ing list first. https://bugzilla.yoctoproject.org/show_bug.cgi?id=15361 -- Patrick Williams signature.asc Description: PGP signature -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#194181): https://lists.openembedded.org/g/openembedded-core/mess

[OE-core] [PATCH v3] shared-mime-info-native: handle old GCC for AlmaLinux8

2023-12-01 Thread Patrick Williams
shared-mime-info-native fails to build on AlmaLinux 8 due to its use of GCC-8 and the upstream package missing a required `-lstdc++fs` on that compiler. Submitted a patch upstream which fixes this and am porting. Signed-off-by: Patrick Williams --- ...dle-build-with-older-versions-of-GCC.patch

[OE-core] [PATCH v2] shared-mime-info-native: handle old GCC for AlmaLinux8

2023-12-01 Thread Patrick Williams
shared-mime-info-native fails to build on AlmaLinux 8 due to its use of GCC-8 and the upstream package missing a required `-lstdc++fs` on that compiler. Submitted a patch upstream which fixes this and am porting. Signed-off-by: Patrick Williams --- ...dle-build-with-older-versions-of-GCC.patch

[OE-core] [PATCH] shared-mime-info-native: handle old GCC for AlmaLinux8

2023-12-01 Thread Patrick Williams
shared-mime-info-native fails to build on AlmaLinux 8 due to its use of GCC-8 and the upstream package missing a required `-lstdc++fs` on that compiler. Submitted a patch upstream which fixes this and am porting. Signed-off-by: Patrick Williams --- ...dle-build-with-older-versions-of-GCC.patch

[OE-core] [PATCH v2] kernel: don't fail if Modules.symvers doesn't exist

2023-08-04 Thread Patrick Williams
-by: Joel Stanley Signed-off-by: Patrick Williams --- meta/classes-recipe/kernel.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass index 247ef4a48a..bb5995b495 100644 --- a/meta/classes-recipe

[OE-core] [PATCH] perl-version: remove PERL* assignments

2023-04-28 Thread Patrick Williams
. Related: openbmc/openbmc#3770 Signed-off-by: Patrick Williams --- meta/classes-recipe/perl-version.bbclass | 6 -- 1 file changed, 6 deletions(-) diff --git a/meta/classes-recipe/perl-version.bbclass b/meta/classes-recipe/perl-version.bbclass index 269ac9eb31..74e33175d9 100644 --- a/meta

Re: [OE-core] [PATCH] perl-version: make PERL* assignments non-immediate

2023-04-05 Thread Patrick Williams
On Wed, Apr 05, 2023 at 09:24:24AM +0100, Richard Purdie wrote: > On Tue, 2023-04-04 at 19:38 -0500, Patrick Williams wrote: > > > > -PERLVERSION := "${@get_perl_version(d)}" > > +PERLVERSION = "${@get_perl_version(d)}" > > PERLVERSION[vardepva

[OE-core] [PATCH] perl-version: make PERL* assignments non-immediate

2023-04-04 Thread Patrick Williams
-security/meta-perl uses PERLVERSION in one recipe's `do_install` step. OpenBMC's meta-phosphor similarly uses PERLVERSION in a `do_install` step. Therefore, it should be safe to make this non-immediate. Fixes: openbmc/openbmc#3770 Signed-off-by: Patrick Williams --- meta/classes-recipe/perl

Re: [OE-core] [PATCH] kernel-fitimage: reduce dependency to the cpio

2022-12-13 Thread Patrick Williams
Hello Richard, On Tue, Dec 13, 2022 at 11:52:08PM +, Richard Purdie wrote: > On Mon, 2022-12-12 at 16:18 -0600, Patrick Williams wrote: > > In order to build a fitimage, we don't need the image to be "complete" > > but we need the cpio portion of it built since the

[OE-core] [PATCH] kernel-fitimage: reduce dependency to the cpio

2022-12-12 Thread Patrick Williams
e that FIT into a larger SPI flash layout. Signed-off-by: Patrick Williams --- meta/classes-recipe/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/kernel-fitimage.bbclass b/meta/classes-recipe/kernel-fitimage.bbclass index

[OE-core] useradd: shadow RDEPEND

2022-11-18 Thread Patrick Williams
there is also 'CONFLICT_DISTRO_FEATURES = "systemd"' in eudev. I suppose the shadow-RDEPEND is necessary for the case where the package is installed via RPM/IPK? Is there any mechanism to specify that this RDEPEND doesn't need to be satisfied in a static image that I'm not aware of? --

Re: [OE-core][langdale 01/20] openssl: CVE-2022-3358 Using a Custom Cipher with NID_undef may lead to NULL encryption

2022-11-03 Thread Patrick Williams
On Thu, Nov 03, 2022 at 06:28:04AM -1000, Steve Sakoman wrote: > On Thu, Nov 3, 2022 at 5:54 AM Patrick Williams wrote: > > Instead of picking up this patch, wouldn't it make a lot more sense to > > go to 3.0.7 like we did with [1]? Since 3.0.7 contains a HIGH severity >

Re: [OE-core][langdale 01/20] openssl: CVE-2022-3358 Using a Custom Cipher with NID_undef may lead to NULL encryption

2022-11-03 Thread Patrick Williams
ernel.org/openembedded-core/20221101170310.2740317-1-edtan...@google.com/ -- Patrick Williams signature.asc Description: PGP signature -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#172639): https://lists.openembedded.org/g/ope

[OE-core] [PATCH v3] rng-tools: Add service file and systemd package config to rngd

2017-06-21 Thread Patrick Williams
-support/rng-tools/rng-tools/rngd.service Reviewed-by: Patrick Williams <patr...@stwcx.xyz> -- Patrick Williams signature.asc Description: Digital signature -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http:

[OE-core] [PATCH v2 2/2] util-linux: Disable bfs support

2016-09-15 Thread Patrick Williams
Disable building of mkfs.bfs, which is used to create BFS file-systems used by SCO UnixWare. This is highly unlikely to be utilized and there are otherwise no references to 'bfs' throughout the rest of the tree. Signed-off-by: Patrick Williams <patr...@stwcx.xyz> --- meta/recipes-cor

[OE-core] [PATCH 2/2] util-linux: Disable bfs support

2016-09-15 Thread Patrick Williams
Disable building of mkfs.bfs. Signed-off-by: Patrick Williams <patr...@stwcx.xyz> --- meta/recipes-core/util-linux/util-linux.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc

Re: [OE-core] [PATCH] util-linux: split {mkfs, fsck}.minix into packages

2016-09-14 Thread Patrick Williams
On Wed, Sep 14, 2016 at 10:01:01PM +0100, Burton, Ross wrote: > On 14 September 2016 at 18:12, Patrick Williams <patr...@stwcx.xyz> wrote: > > > mkfs.minix and fsck.minix are likely rarely used, so split > > them into their own packages to reduce the footprint of >

Re: [OE-core] [PATCH] e2fsprogs: configure with enable-symlink

2016-09-14 Thread Patrick Williams
t3 19455718 fsck.ext4 19455718 fsck.ext4dev 19455679 fsck.minix 19455695 fsck.minix.util-linux 19455675 fsck.util-linux Is there a reason to prefer hardlinks over softlinks, for my own education? My desktop system used softlinks for fsck. -- Patrick Williams signature.

Re: [OE-core] [PATCH v2] linux-libc-headers: Update doc for recipe depends

2016-06-22 Thread Patrick Williams
On Wed, Jun 22, 2016 at 11:31:46AM -0500, Patrick Williams wrote: > The previous documentation has not been accurate since at least > commit 6a1ff0e. Recipes that follow the old documentation will > not correctly build when sstate is enabled because the kernel > source will

[OE-core] [PATCH v2] linux-libc-headers: Update doc for recipe depends

2016-06-22 Thread Patrick Williams
The previous documentation has not been accurate since at least commit 6a1ff0e. Recipes that follow the old documentation will not correctly build when sstate is enabled because the kernel source will not actually be available. Signed-off-by: Patrick Williams <patr...@stwcx.xyz> ---

[OE-core] [PATCH] linux-libc-headers: Update doc for recipe depends

2016-06-22 Thread Patrick Williams
The previous documentation has not been accurate since at least commit 46cdaf1. Recipes that follow the old documentation will not correctly build when sstate is enabled because the kernel source will not actually be available. Signed-off-by: Patrick Williams <patr...@stwcx.xyz> ---

[OE-core] [PATCH] siteinfo: Add ppc64le support.

2016-03-07 Thread Patrick Williams
From: Chris Austen <aust...@us.ibm.com> Signed-off-by: Patrick Williams <patr...@stwcx.xyz> --- meta/classes/siteinfo.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass index b715b6c..1b3906c 100644 --- a/