[OE-core] [PATCH] python3: dont disable readline module for editline

2024-02-27 Thread Nick Owens
if we use editline, then the readline module must also be enabled for python to build the readline module and link it against libedit. Signed-off-by: Nick Owens --- meta/recipes-devtools/python/python3_3.12.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

Re: [OE-core] [PATCH] kernel: improve initramfs bundle processing time

2023-04-20 Thread Nick Owens
hi bruce, thanks for your work. looks good to me as a stopgap for now. could this be backported to kirkstone? nick On Fri, Apr 14, 2023 at 12:29 PM Bruce Ashfield wrote: > From: Bruce Ashfield > > This is a partial fix for bugzilla 15059 [ >

Re: [OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-24 Thread Nick Owens
700, Nick Owens wrote: > > parallel builds for native code in python modules was added about 5 > > years ago. distutils understands '-j N', so just pass along > > the right argument to setup.py build. > > > > Signed-off-by: Nick Owens > > --- > > meta/clas

[OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-23 Thread Nick Owens
parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along the right argument to setup.py build. Signed-off-by: Nick Owens --- meta/classes/distutils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH v2] distutils: pass along parallel make flags to setup.py build

2019-10-23 Thread Nick Owens
thanks ross, i've updated my patch. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-22 Thread Nick Owens
parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along ${PARALLEL_MAKE} to setup.py build. Signed-off-by: Nick Owens --- meta/classes/distutils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git