Re: [OE-core] [dylan]devshell: broken

2013-08-14 Thread Andre McCurdy
On Wed, Aug 14, 2013 at 8:50 AM, Paul Eggleton wrote: > Hi Andre / Nicolas, > ... > I have just sent a patch for dylan to this list to exclude > LD_PRELOAD from the environment which fixes the > problem in my testing here. Fix confirmed here too. Thanks! Andre --

[OE-core] [PATCH] libsdl: PACKAGECONFIG conversion

2014-04-01 Thread Andre McCurdy
General cleanup + make it easier for distros / machines which support OpenGL ES only to prevent attempts to build against libgl. Signed-off-by: Andre McCurdy --- meta/recipes-graphics/libsdl/libsdl_1.2.15.bb | 30 ++- 1 file changed, 20 insertions(+), 10 deletions

Re: [OE-core] [PATCH] libsdl: PACKAGECONFIG conversion

2014-04-01 Thread Andre McCurdy
On 04/01/2014 03:54 AM, Richard Purdie wrote: On Tue, 2014-04-01 at 00:10 -0700, Andre McCurdy wrote: General cleanup + make it easier for distros / machines which support OpenGL ES only to prevent attempts to build against libgl. Signed-off-by: Andre McCurdy --- meta/recipes-graphics

[OE-core] [PATCH] curl: control ipv6 support based on DISTRO feature

2014-06-12 Thread Andre McCurdy
By default ipv6 is auto detected for native builds but disabled when cross compiling. This commit adds a PACKAGECONFIG option, unconditionally enabled for native and nativesdk builds and controlled by the ipv6 DISTRO feature for target builds. Signed-off-by: Andre McCurdy --- meta/recipes

[OE-core] [PATCH] directfb: fix-compilation-with-zlib.patch merged upstream

2014-06-14 Thread Andre McCurdy
Compilation with zlib is fixed in DirectFB 1.7.1. Upstream commit: commit 40779160de4d57bad973af9674df51ad281fdb8f Author: Denis Oliver Kropp Date: Tue Sep 18 21:10:25 2012 +0200 Core: Include zlib.h where it was missing. Signed-off-by: Andre McCurdy --- .../directfb/fix

[OE-core] [PATCH 1/3] curl: add zlib PACKAGECONFIG and remove hardcoded DEPENDS

2014-08-13 Thread Andre McCurdy
Add a zlib PACKAGECONFIG control and update PACKAGECONFIG[ssl] to include the openssl dependency. Older hardcoded DEPENDS can then be removed. Signed-off-by: Andre McCurdy --- meta/recipes-support/curl/curl_7.37.1.bb | 21 + 1 file changed, 9 insertions(+), 12 deletions

[OE-core] [PATCH 2/3] curl: let configure find gnutls via pkg-config

2014-08-13 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-support/curl/curl_7.37.1.bb | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta/recipes-support/curl/curl_7.37.1.bb b/meta/recipes-support/curl/curl_7.37.1.bb index e51e06d..4b7f9ec 100644 --- a/meta/recipes-support/curl

[OE-core] [PATCH 3/3] curl: --with-random is only applicable with openssl

2014-08-13 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-support/curl/curl_7.37.1.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta/recipes-support/curl/curl_7.37.1.bb b/meta/recipes-support/curl/curl_7.37.1.bb index 4b7f9ec..8bcd9ba 100644 --- a/meta/recipes-support/curl

[OE-core] Nondeterministic acl support in coreutils 6.9

2015-01-12 Thread Andre McCurdy
The GPLv2 coreutils recipe has PACKAGECONFIG support for acl, however the coreutils 6.9 configure script doesn't seem to support --disable-acl. Build Configuration: BB_VERSION= "1.24.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "Ubuntu-14.04" TARGET_SYS= "i586-rdk-linu

[OE-core] [PATCH 2/2] udev: remove obsolete dependency on acl

2015-01-12 Thread Andre McCurdy
udev_acl was removed from udev in v182. Signed-off-by: Andre McCurdy --- meta/recipes-core/udev/udev.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/udev/udev.inc b/meta/recipes-core/udev/udev.inc index 31d1230..44a2d72 100644 --- a/meta/recipes-core

[OE-core] [PATCH 1/2] udev: fix missing dependency on glib-2.0-native

2015-01-12 Thread Andre McCurdy
udev compile requires glib-genmarshal and glib-mkenums Signed-off-by: Andre McCurdy --- meta/recipes-core/udev/udev.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/udev/udev.inc b/meta/recipes-core/udev/udev.inc index 280da10..31d1230 100644 --- a/meta

[OE-core] [PATCH] logrotate: fix missing acl and libselinux dependencies

2015-01-12 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-extended/logrotate/logrotate_3.8.8.bb | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.8.bb b/meta/recipes-extended/logrotate/logrotate_3.8.8.bb index 133f6d7..00432de 100644 --- a/meta/recipes

Re: [OE-core] [PATCH] logrotate: fix missing acl and libselinux dependencies

2015-01-13 Thread Andre McCurdy
On Tue, Jan 13, 2015 at 12:35 AM, Anders Darander wrote: > * Andre McCurdy [150113 01:57]: >> +# TODO: logrotate 3.8.8 adds autotools/automake support, update recipe to >> use it. >> +# TODO: Document coreutils dependency. Why not RDEPENDS? Why not busybox? > > It

Re: [OE-core] [PATCH v2] curl: upgrade to 7.40

2015-01-16 Thread Andre McCurdy
On Fri, Jan 16, 2015 at 7:06 AM, Maxin B. John wrote: > Upgraded version include fixes for these CVE bugs: > 1. CVE-2014-8150 > 2. CVE-2014-8151 > > Signed-off-by: Maxin B. John > --- > meta/recipes-support/curl/{curl_7.38.0.bb => curl_7.40.0.bb} | 4 ++-- > 1 file changed, 2 insertions(+), 2 de

Re: [OE-core] Nondeterministic acl support in coreutils 6.9

2015-01-30 Thread Andre McCurdy
On Thu, Jan 29, 2015 at 8:24 PM, Qian Lei wrote: > On Mon, 12 Jan 2015 11:25:19 -0800 > Andre McCurdy wrote: > >> The GPLv2 coreutils recipe has PACKAGECONFIG support for acl, however >> the coreutils 6.9 configure script doesn't seem to support >> --disable-

[OE-core] [PATCH] mesa: update --with-llvm-shared-libs configure option

2015-02-09 Thread Andre McCurdy
As per the Mesa 10.2 release notes, "--with-llvm-shared-libs" has been renamed to "--enable-llvm-shared-libs". http://www.mesa3d.org/relnotes/10.2.html Signed-off-by: Andre McCurdy --- meta/recipes-graphics/mesa/mesa.inc | 2 +- 1 file changed, 1 insertion(+), 1 delet

[OE-core] [PATCH] mesa: update 10.4.3 -> 10.4.4

2015-02-09 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-graphics/mesa/{mesa-gl_10.4.3.bb => mesa-gl_10.4.4.bb} | 0 meta/recipes-graphics/mesa/{mesa_10.4.3.bb => mesa_10.4.4.bb} | 4 ++-- meta/recipes-graphics/mesa/mesa_git.bb | 6 ++ 3 files changed, 4 inse

[OE-core] [PATCH] icu: remove obsolete aclocal.m4 workaround (fixed upstream since v52.1)

2015-02-12 Thread Andre McCurdy
Patch also includes some minor formatting cleanup of icu.inc. Signed-off-by: Andre McCurdy --- meta/recipes-support/icu/icu.inc | 18 +- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc index

[OE-core] [PATCH] neon: update 0.30.0 -> 0.30.1

2015-02-13 Thread Andre McCurdy
pkgconfig.patch needed a minor refresh due to the following fix for static linking using neon.pc being merged upstream: http://lists.manyfish.co.uk/pipermail/neon/2013-October/001568.html Signed-off-by: Andre McCurdy --- .../neon/{neon-0.30.0 => neon}/pkgconfig.patch|

Re: [OE-core] Automatic prebuilt management

2019-08-23 Thread Andre McCurdy
On Mon, Aug 5, 2019 at 9:06 AM Loic Poulain wrote: > Say a company works with an OE internal tree, with open-source and > closed-source packages. The company wants to release the tree so that its > customers can fully customize the images/distro. The closed sources being > only available intern

[OE-core] [PATCH 01/13] bitbake.conf: drop FETCHCMD, GITDIR, etc fetcher over-rides

2019-08-23 Thread Andre McCurdy
This completes cleanup originally proposed in 2012: http://lists.openembedded.org/pipermail/openembedded-core/2012-July/064224.html Current versions of bitbake have "sane" default fetcher commands so it's no longer necessary for bitbake.conf to over-ride them. Signed-off-by

[OE-core] [PATCH 02/13] tune-arm1136jf-s.inc: add hardfloat support

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/conf/machine/include/tune-arm1136jf-s.inc | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/conf/machine/include/tune-arm1136jf-s.inc b/meta/conf/machine/include/tune-arm1136jf-s.inc index d883eba..b25995d 100644 --- a/meta/conf

[OE-core] [PATCH 04/13] tune-ep9312.inc: fix TUNEVALID description

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/conf/machine/include/tune-ep9312.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/machine/include/tune-ep9312.inc b/meta/conf/machine/include/tune-ep9312.inc index 4d92821..be20eb3 100644 --- a/meta/conf/machine/include/tune

[OE-core] [PATCH 03/13] tune-arm1176jz-s.inc: add support for arm1176jz-s CPU specific tuning

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/conf/machine/include/tune-arm1176jz-s.inc | 17 + 1 file changed, 17 insertions(+) create mode 100644 meta/conf/machine/include/tune-arm1176jz-s.inc diff --git a/meta/conf/machine/include/tune-arm1176jz-s.inc b/meta/conf/machine/include

[OE-core] [PATCH 05/13] feature-arm-thumb.inc: fix ARM_THUMB_SUFFIX

2019-08-23 Thread Andre McCurdy
Since TUNE_FEATURES now either contains a CPU or an architecture (but not both) we can't rely on finding the architecture in TUNE_FEATURES. Use architecture specific over-rides instead. Signed-off-by: Andre McCurdy --- meta/conf/machine/include/arm/feature-arm-thumb.inc | 7 +-- 1

[OE-core] [PATCH 06/13] packagegroup-core-boot: drop duplicate MACHINE_ESSENTIAL_EXTRA_RDEPENDS, etc

2019-08-23 Thread Andre McCurdy
Default values for MACHINE_ESSENTIAL_EXTRA_RDEPENDS and MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS are set from bitbake.conf and so don't need to be duplicated in the packagegroup-core-boot recipe. Signed-off-by: Andre McCurdy --- meta/recipes-core/packagegroups/packagegroup-core-boot.bb | 6

[OE-core] [PATCH 07/13] rootfs-postcommands.bbclass: add inittab tweak to read_only_rootfs_hook()

2019-08-23 Thread Andre McCurdy
It's not clear that we actually need to call mount -o remount,XX from the busybox-inittab inittab at all, but as we currently do, let's respect read-only-rootfs in IMAGE_FEATURES and not remount / as rw. Signed-off-by: Andre McCurdy --- meta/classes/rootfs-postcommands.bbclass | 5 +++

[OE-core] [PATCH 09/13] glibc: drop obsolete packaging of glibc libnsl libs

2019-08-23 Thread Andre McCurdy
Packaging rules were left behind when libnsl was removed: https://git.openembedded.org/openembedded-core/commit/?id=9dc9983901cec364ea57a72b9da1a0396b60663a Signed-off-by: Andre McCurdy --- meta/recipes-core/glibc/glibc-package.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OE-core] [PATCH 11/13] dropbear: don't create invalid symlinks if ssh, scp, etc are disabled

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/dropbear/dropbear.inc | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/dropbear/dropbear.inc b/meta/recipes-core/dropbear/dropbear.inc index dcbda74..7269888 100644 --- a/meta/recipes-core

[OE-core] [PATCH 10/13] update-rc.d.bbclass: support VIRTUAL-RUNTIME_init_manager == busybox

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/classes/update-rc.d.bbclass | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 1366fee..bf86bfa 100644 --- a/meta/classes/update-rc.d.bbclass +++ b

[OE-core] [PATCH 12/13] sqlite3: make CFLAGS consistent across native, nativesdk and target cases

2019-08-23 Thread Andre McCurdy
= are lost. Use _append instead. Signed-off-by: Andre McCurdy --- meta/recipes-support/sqlite/sqlite3.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc index 7cf23d0..044af5e 100644 --- a

[OE-core] [PATCH 13/13] sqlite3: explicitly set target endian-ness

2019-08-23 Thread Andre McCurdy
Unless SQLITE_BYTEORDER is predefined, the code falls back to build time huristics - which are not always correct (e.g. in sqlite 3.28.0 big-endian ARM is mis-detected). Signed-off-by: Andre McCurdy --- meta/recipes-support/sqlite/sqlite3.inc | 6 +- 1 file changed, 5 insertions(+), 1

[OE-core] [PATCH 08/13] base-files: nsswitch.conf is glibc specific

2019-08-23 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/base-files/base-files_3.0.14.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/base-files/base-files_3.0.14.bb b/meta/recipes-core/base-files/base-files_3.0.14.bb index 4b4027f..2b1f217 100644 --- a

Re: [OE-core] [PATCH] insane: improve license checksumming logic

2019-08-27 Thread Andre McCurdy
On Thu, Mar 21, 2019 at 5:30 AM Ross Burton wrote: > > Instead of opening files as bytes and battling decoding to UTF-8 which can > throw > exceptions, open directly as strings and replace invalid codepoints. This > handles licenses in encodings which are not UTF-8 but are based on ASCII much >

Re: [OE-core] [PATCH] common-licenses: update BSD-2-CLAUSE license text

2019-08-28 Thread Andre McCurdy
On Wed, Aug 28, 2019 at 3:05 AM Christophe PRIOUZEAU wrote: > > Using the generic BSD-2-CLAUSE license as specified on > https://opensource.org/licenses/BSD-2-Clause Fixing these kind of issues has been discussed before. I think the consensus was that a wider ranging cleanup is needed. The thread

Re: [OE-core] FETCHCMD drop breaks build when append is used (from patch b259bd31eb)

2019-08-30 Thread Andre McCurdy
On Fri, Aug 30, 2019 at 3:08 AM Andrey Zhizhikin wrote: > > Hello Andre, > > I've just pulled the master and experienced a build failure during > fetching of updated recipe's source tarballs. > > The reason for this being that defaults for FETCHCMD has been dropped > with your patch b259bd31eb fro

Re: [OE-core] FETCHCMD drop breaks build when append is used (from patch b259bd31eb)

2019-08-31 Thread Andre McCurdy
On Sat, Aug 31, 2019 at 11:07 AM Andrey Zhizhikin wrote: > On Sat, Aug 31, 2019 at 2:18 PM Adrian Bunk wrote: > > Disallowing appends could cause huge problems for a user or layer that > > has to append local options (e.g. proxy) building a recipe like libedit > > that has to change the User-Agen

Re: [OE-core] FETCHCMD drop breaks build when append is used (from patch b259bd31eb)

2019-08-31 Thread Andre McCurdy
On Sat, Aug 31, 2019 at 1:24 PM Andre McCurdy wrote: > > On Sat, Aug 31, 2019 at 11:07 AM Andrey Zhizhikin wrote: > > On Sat, Aug 31, 2019 at 2:18 PM Adrian Bunk wrote: > > > Disallowing appends could cause huge problems for a user or layer that > > > has to ap

Re: [OE-core] [PATCH 05/13] feature-arm-thumb.inc: fix ARM_THUMB_SUFFIX

2019-09-04 Thread Andre McCurdy
On Fri, Aug 23, 2019 at 1:52 PM Andre McCurdy wrote: > > Since TUNE_FEATURES now either contains a CPU or an architecture (but > not both) we can't rely on finding the architecture in TUNE_FEATURES. > Use architecture specific over-rides instead. This fix hasn't been

Re: [OE-core] make-mod-scripts question

2019-09-09 Thread Andre McCurdy
On Mon, Sep 9, 2019 at 1:25 PM Nicolas Dechesne wrote: > > If this reasoning is correct that means that kernel signing + external > module is broken. Note that I am working out of Thud for now, i am > sending this email for now to get some feedback, and will try to > reproduce without all our cust

Re: [OE-core] make-mod-scripts question

2019-09-09 Thread Andre McCurdy
On Mon, Sep 9, 2019 at 2:01 PM Nicolas Dechesne wrote: > On Mon, Sep 9, 2019 at 10:58 PM Andre McCurdy wrote: > > > > On Mon, Sep 9, 2019 at 1:25 PM Nicolas Dechesne > > wrote: > > > > > > If this reasoning is correct that means that kernel signing + exter

[OE-core] [PATCH 1/3] busybox: drop unused mount.busybox and umount.busybox wrappers

2019-09-12 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/busybox/busybox_1.31.0.bb| 2 -- meta/recipes-core/busybox/files/mount.busybox | 3 --- meta/recipes-core/busybox/files/umount.busybox | 3 --- 3 files changed, 8 deletions(-) delete mode 100755 meta/recipes-core/busybox/files

[OE-core] [PATCH 2/3] busybox: drop inittab from SRC_URI ( now moved to busybox-inittab )

2019-09-12 Thread Andre McCurdy
The reference to inittab should have been removed from busybox SRC_URI when the file was moved into the busybox-inittab recipe: http://git.openembedded.org/openembedded-core/commit/?id=afb09abd2f0f7555ba156260a87fd3867f591310 Signed-off-by: Andre McCurdy --- meta/recipes-core/busybox

[OE-core] [PATCH 3/3] busybox-inittab: minor formatting tweaks

2019-09-12 Thread Andre McCurdy
Add an empty line to inittab before the line(s) which start getty. Also cleanup indent in recipe do_install(). Signed-off-by: Andre McCurdy --- .../busybox/busybox-inittab_1.31.0.bb | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/meta/recipes

[OE-core] [PATCH 5/8] ffmpeg: enable more verbose build logs

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb index c4261248b6..2809f343b8 100644 --- a/meta/recipes-multimedia

[OE-core] [PATCH 7/8] initscripts: enable alignment.sh init script for big endian ARM

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- .../initscripts/initscripts-1.0/{arm => }/alignment.sh | 0 meta/recipes-core/initscripts/initscripts_1.0.bb | 1 + 2 files changed, 1 insertion(+) rename meta/recipes-core/initscripts/initscripts-1.0/{arm => }/alignment.sh

[OE-core] [PATCH 6/8] libwebp: apply ARM specific config options to big endian ARM

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/webp/libwebp_1.0.3.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/webp/libwebp_1.0.3.bb b/meta/recipes-multimedia/webp/libwebp_1.0.3.bb index 01fc02d23b..a4d1ae43d9 100644 --- a/meta

[OE-core] [PATCH 3/8] ffmpeg: add PACKAGECONFIG controls for alsa and zlib (enable by default)

2019-09-16 Thread Andre McCurdy
Also move the libogg dependency to the theora PACKAGECONFIG, since according to the configure script, theora is the specific component which requires it. Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb | 8 +--- 1 file changed, 5 insertions(+), 3 deletions

[OE-core] [PATCH 4/8] ffmpeg: don't rely on configure to correctly detect ARM vfp or neon

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb index 307e37e3fe..c4261248b6 100644 --- a

[OE-core] [PATCH 2/8] busybox: rcS and rcK should not be writeable by everyone

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/busybox/busybox.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 49165d7f51..4c3969501a 100644 --- a/meta/recipes-core/busybox

[OE-core] [PATCH 1/8] base-files: drop legacy empty file /etc/default/usbd

2019-09-16 Thread Andre McCurdy
Doesn't seem to be referenced by anything in oe-core any more. Signed-off-by: Andre McCurdy --- meta/recipes-core/base-files/base-files/usbd | 0 meta/recipes-core/base-files/base-files_3.0.14.bb | 2 -- 2 files changed, 2 deletions(-) delete mode 100644 meta/recipes-core/base-files

[OE-core] [PATCH 8/8] libunwind: apply configure over-ride to both big and little endian ARM

2019-09-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-support/libunwind/libunwind.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/libunwind/libunwind.inc b/meta/recipes-support/libunwind/libunwind.inc index 5726589661..76a1bf6246 100644 --- a/meta/recipes-support/libunwind

Re: [OE-core] [PATCH 4/8] ffmpeg: don't rely on configure to correctly detect ARM vfp or neon

2019-09-16 Thread Andre McCurdy
40a > On Sep 16, 2019, 12:25 PM -0700, Andre McCurdy , wrote: > > Signed-off-by: Andre McCurdy > --- > meta/recipes-multimedia/ffmpeg/ffmpeg_4.2.bb | 11 ++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.

Re: [OE-core] [PATCH 4/8] ffmpeg: don't rely on configure to correctly detect ARM vfp or neon

2019-09-16 Thread Andre McCurdy
On Mon, Sep 16, 2019 at 3:34 PM Adrian Bunk wrote: > > On Mon, Sep 16, 2019 at 03:08:01PM -0700, Andre McCurdy wrote: > > On Mon, Sep 16, 2019 at 2:33 PM Christopher Larson > > wrote: > > > > > > This seems like something that could do with a ‘why’ in the c

Re: [OE-core] [warrior][ 25/50] boost: Fix build and enable context and coroutines on aarch64

2019-09-23 Thread Andre McCurdy
On Mon, Sep 23, 2019 at 7:52 PM Armin Kuster wrote: > > From: "Bedel, Alban" > > Like for ARM bjam need some hints about the ABI to properly build on > aarch64. While at it also enable context and coroutine as these are > supported on aarch64. What's the symptom when this is mis-detected ? I'm

Re: [OE-core] [PATCH 1/1] openssl: make OPENSSL_ENGINES match install path

2019-09-25 Thread Andre McCurdy
On Wed, Sep 25, 2019 at 11:13 AM George McCollister wrote: > On Wed, Sep 25, 2019 at 11:08 AM Mark Hatle > wrote: > > On 9/25/19 6:52 AM, George McCollister wrote: > > > Set OPENSSL_ENGINES to the path where engines are actually installed. > > > > > > Signed-off-by: George McCollister > > > ---

Re: [OE-core] [PATCH 1/1] openssl: make OPENSSL_ENGINES match install path

2019-09-25 Thread Andre McCurdy
On Wed, Sep 25, 2019 at 12:13 PM George McCollister wrote: > On Wed, Sep 25, 2019 at 1:37 PM Andre McCurdy wrote: > > > > On Wed, Sep 25, 2019 at 11:13 AM George McCollister > > wrote: > > > On Wed, Sep 25, 2019 at 11:08 AM Mark Hatle > > > wrote: > &g

Re: [OE-core] [PATCH v2] squashfs-tools: Allow COMP_DEFAULT to be changed easily at build time

2020-09-11 Thread Andre McCurdy
On Fri, Sep 11, 2020 at 10:21 AM Peter Morrow wrote: > > The default compression algorithm is gzip, this patch allows the default > to be changed via a bbappend file by setting SQUASHFS_TOOLS_COMP_DEFAULT > to a valid compression algorithm. > > Signed-off-by: Peter Morrow > --- > ...ols-Allow-CO

Re: [OE-core] [PATCH v2] squashfs-tools: Allow COMP_DEFAULT to be changed easily at build time

2020-09-11 Thread Andre McCurdy
On Fri, Sep 11, 2020 at 10:04 PM Khem Raj wrote: > > > > On 9/11/20 10:33 AM, Andre McCurdy wrote: > > On Fri, Sep 11, 2020 at 10:21 AM Peter Morrow > > wrote: > >> > >> The default compression algorithm is gzip, this patch allows the default > &g

Re: [OE-core][PATCH] sysvinit: Remove ${B} assignment

2020-09-12 Thread Andre McCurdy
On Sat, Sep 12, 2020 at 12:46 PM Michael Gloff wrote: > > On Sat, Sep 12, 2020 at 2:11 PM Richard Purdie > wrote: >> >> On Sat, 2020-09-12 at 11:48 -0500, Michael Gloff wrote: >> > In order for the VERSION variable to be set, the >> > top level Makefile should be used, which only >> > builds the

Re: [OE-core] [PATCH v3] squashfs-tools: Allow COMP_DEFAULT to be changed easily at build time

2020-09-14 Thread Andre McCurdy
On Mon, Sep 14, 2020 at 2:59 AM Peter Morrow wrote: > > The default compression algorithm is currently gzip, this patch allows the > default to be changed by setting SQUASHFS_TOOLS_COMP_DEFAULT to a valid > compression algorithm. > > Signed-off-by: Peter Morrow > --- > meta/recipes-devtools/squa

Re: [OE-core] [PATCH] bison: remove the parallel build patch

2020-09-14 Thread Andre McCurdy
On Mon, Sep 14, 2020 at 1:35 AM Yu, Mingli wrote: > > From: Mingli Yu > > Remove the parallel build patch as the issue have already been > fixed in bison 3.7.2(f7b642cf build: fix incorrect dependencies). If parallel make issues have been fixed upstream then this workaround should be removed fro

Re: [OE-core] [PATCH] webkitgtk: remove '-fno-omit-frame-pointer' for x86

2020-11-10 Thread Andre McCurdy
On Mon, Nov 9, 2020 at 5:53 PM kai wrote: > > On 11/10/20 2:58 AM, Khem Raj wrote: > > On Mon, Nov 9, 2020 at 12:18 AM kai wrote: > > On 11/9/20 4:07 PM, Alexander Kanavin wrote: > > Right, but then adding _remove to the upstream recipe doesn't seem right - > rather you should use _pn-webkitgtk

Re: [OE-core] YPBZ 14125: busybox wget: where to add openssl-bin dependency?

2020-11-18 Thread Andre McCurdy
On Wed, Nov 18, 2020 at 2:30 PM Randy MacLeod wrote: > > Hi Shachar, > > On 2020-11-18 1:49 p.m., Shachar Menashe wrote: > > About the busybox patch, I realized that Dunfell doesn't come with the > > "openssl" binary built-in (only the library) but this fix will actually > > requires having the

Re: [OE-core] YPBZ 14125: busybox wget: where to add openssl-bin dependency?

2020-11-19 Thread Andre McCurdy
hat the GNU version of wget is not exposed to this attack, so this > furthers the confusion > > If there are severe technical issues with shipping the openssl executable > with Yocto, then we should definitely think about it, but I think this > endeavor is worthwhile > > -O

Re: [OE-core] YPBZ 14125: busybox wget: where to add openssl-bin dependency?

2020-11-20 Thread Andre McCurdy
ity issue, which personally I > think is problematic) > > -Original Message- > From: Andre McCurdy > Sent: Thursday, November 19, 2020 9:45 PM > To: Shachar Menashe > Cc: Randy MacLeod ; st...@sakoman.com; Patches > and discussions about the oe-core layer > &g

Re: [OE-core] [PATCH 2/2] gstreamer1.0-plugins-base: Use bb.utils.filter to reduce code

2020-11-20 Thread Andre McCurdy
On Fri, Nov 20, 2020 at 9:36 AM Otavio Salvador wrote: > > Signed-off-by: Otavio Salvador > --- > > .../gstreamer/gstreamer1.0-plugins-base_1.18.1.bb | 7 +-- > 1 file changed, 1 insertion(+), 6 deletions(-) > > diff --git > a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-

Re: [OE-core] [PATCH] libsdl2: Add directfb to PACKAGECONFIG rdepends

2020-11-23 Thread Andre McCurdy
On Mon, Nov 23, 2020 at 11:14 AM Mark Jonas wrote: > > When building libsdl2 with PACKAGECONFIG[directfb] then directfb is > added to the DEPENDS. But the automatically generated runtime > dependencies do not add the directfb package to the runtime > dependencies. Most likely this happens because

Re: [OE-core] [PATCH 1/2] iproute2: install tools to mirror install under Debian/Ubuntu

2020-12-02 Thread Andre McCurdy
On Wed, Dec 2, 2020 at 11:11 AM Alan Perry wrote: > > Many scripts exist that expect the iproute2 tools to be found in > the same directories where they are found in Debian or Ubuntu. > For the iproute2 tools included in the iproute2 recipe, move > them to those directories or create links there.

Re: [OE-core] Automatic cap on BB_NUMBER_THREADS and PARALLEL_MAKE

2020-12-03 Thread Andre McCurdy
On Thu, Dec 3, 2020 at 9:48 AM Ross Burton wrote: > > Hi, > > Currently, BB_NUMBER_THREADS and PARALLEL_MAKE use the number of cores > available unless told otherwise. This was a good idea six years > ago[1] but some modern machines are moving to very large core counts. > > For example, 88 core d

Re: [OE-core] [PATCH v2 1/2] iproute2: install tools to mirror install under Debian/Ubuntu

2020-12-09 Thread Andre McCurdy
On Wed, Dec 9, 2020 at 2:39 PM Alan Perry wrote: > On 12/7/20 1:49 PM, Richard Purdie wrote: > > On Sat, 2020-12-05 at 08:22 +, Alan Perry wrote: > >> Many scripts exist that expect the iproute2 tools to be found in > >> the same directories where they are found in Debian or Ubuntu. > >> For t

Re: [OE-core] [PATCH 5/5] systemd: add RRECOMMENDS for weak dependencies, if enabled

2020-12-11 Thread Andre McCurdy
On Thu, Dec 10, 2020 at 4:53 AM Luca Bocassi wrote: > > From: Luca Boccassi > > Some libraries are now dlopen'ed and skipped at runtime if > not available. Add them to the RRECOMMENDS list, to allow > users to exclude them for smaller images even if generally > enabled at build time. This seems

Re: [OE-core] [PATCH 0/2] Bug fixes for makedevs.c

2019-10-28 Thread Andre McCurdy
On Mon, Oct 28, 2019 at 10:15 AM Frazer Leslie Clews wrote: > > fixes a few bugs in some print statements and an overflow bug with usr_buf > > Frazer Leslie Clews (2): > fix format strings in makedevs.c in print statements > fix invalidScanfFormatWidth to prevent overflowing usr_buf Perhaps f

Re: [OE-core] [PATCH] image_types: add Zstandard conversion support

2019-11-05 Thread Andre McCurdy
On Tue, Nov 5, 2019 at 3:13 PM Stefan Agner wrote: > > From: Stefan Agner > > Add Zstandard (or just Zstd) compression support. This allows to > create Zstd compressed tarballs by using tar.zst as IMAGE_FSTYPES. > > Signed-off-by: Stefan Agner > --- > meta/classes/image_types.bbclass | 6 --

Re: [OE-core] [PATCH 3/3] systemd: Add runtime dependency on new ldconfig package

2019-11-07 Thread Andre McCurdy
On Thu, Nov 7, 2019 at 12:55 PM Andreas Oberritter wrote: > > Signed-off-by: Andreas Oberritter > --- > meta/recipes-core/systemd/systemd_243.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/recipes-core/systemd/systemd_243.bb > b/meta/recipes-core/systemd/syste

Re: [OE-core] [PATCH] pseudo: Drop static linking to sqlite3

2019-11-11 Thread Andre McCurdy
On Sat, Nov 9, 2019 at 8:46 AM Seebs wrote: > > On Sat, 09 Nov 2019 16:30:41 + > Richard Purdie wrote: > > > I did talk briefly to Mark (also cc'd) as he wrote the original patch > > and he thought it was possibly because the client was also linking > > against sqlite3 and due to the other th

Re: [OE-core] [PATCH 1/2] tune-riscv: Add support for hard and soft float

2019-11-13 Thread Andre McCurdy
On Wed, Nov 6, 2019 at 12:37 PM Alistair Francis wrote: > > Signed-off-by: Alistair Francis > --- > meta/conf/machine/include/riscv/arch-riscv.inc | 3 ++- > meta/conf/machine/include/riscv/tune-riscv.inc | 17 +++-- > 2 files changed, 17 insertions(+), 3 deletions(-) > > diff --git

[OE-core] fetcher uses wrong SRCREV for class-native

2019-11-13 Thread Andre McCurdy
With the following test recipe, foo.bb: LICENSE = "CLOSED" PV .= "+git${SRCPV}" SRCREV = "015b0cdce1a0abb68ab99510e7fc8d2f77e8ec77" SRCREV_class-native = "fc3e8f717779cabcbe583cac304308eaad5f1648" SRC_URI = "git://github.com/file/file.git;protocol=https" S = "${WORKDIR}/git" BBCLASSE

Re: [OE-core] fetcher uses wrong SRCREV for class-native

2019-11-13 Thread Andre McCurdy
On Wed, Nov 13, 2019 at 8:23 AM Richard Purdie wrote: > > On Wed, 2019-11-13 at 16:21 +, Richard Purdie wrote: > > On Wed, 2019-11-13 at 06:00 -0800, Andre McCurdy wrote: > > > With the following test recipe, foo.bb: > > > > > > LICENSE = "CLOSED&

Re: [OE-core] How to backport openssl to Sumo

2019-11-20 Thread Andre McCurdy
On Wed, Nov 20, 2019 at 11:09 AM Mark Hatle wrote: > On 11/20/19 1:06 PM, Ryan Harkin wrote: > > On Wed, 20 Nov 2019 at 18:36, Mark Hatle > > wrote: > > > > You know that 1.0.2 and 1.1 APIs are not compatible? So you will need > > to update > > eve

Re: [OE-core] How to backport openssl to Sumo

2019-11-20 Thread Andre McCurdy
On Wed, Nov 20, 2019 at 11:44 AM Ryan Harkin wrote: > > Hi Andre, > > On Wed, 20 Nov 2019 at 19:27, Andre McCurdy wrote: >> >> On Wed, Nov 20, 2019 at 11:09 AM Mark Hatle >> wrote: >> > On 11/20/19 1:06 PM, Ryan Harkin wrote: >> > > On Wed, 20

Re: [OE-core] How to backport openssl to Sumo

2019-11-20 Thread Andre McCurdy
On Wed, Nov 20, 2019 at 2:41 PM Ryan Harkin wrote: > On Wed, 20 Nov 2019 at 21:29, Ryan Harkin wrote: >> >> I pulled the whole openssl dir from your repo, added the layer.conf changes >> to my layer.conf and rebuilt openssl and my image. >> >> Unfortunately, I still have no /usr/bin/openssl in m

Re: [OE-core] How to backport openssl to Sumo

2019-11-21 Thread Andre McCurdy
On Thu, Nov 21, 2019 at 5:53 AM Ryan Harkin wrote: > On Thu, 21 Nov 2019 at 13:39, Nicolas Dechesne > wrote: >> On Thu, Nov 21, 2019 at 2:15 PM Ryan Harkin wrote: >> > On Wed, 20 Nov 2019 at 23:53, Andre McCurdy wrote: >> >> On Wed, Nov 20, 2019 at

Re: [OE-core] [PATCH v2] tune-riscv: Add support for no float

2019-11-21 Thread Andre McCurdy
On Thu, Nov 21, 2019 at 4:08 PM Alistair Francis wrote: > > Signed-off-by: Alistair Francis > --- > meta/conf/machine/include/riscv/arch-riscv.inc | 3 ++- > meta/conf/machine/include/riscv/tune-riscv.inc | 16 +++- > 2 files changed, 17 insertions(+), 2 deletions(-) > > diff --git

Re: [OE-core] [master][zeus][PATCH 2/2] libtirpc: Make it easy to disable the installation of legacy headers

2019-12-05 Thread Andre McCurdy
On Thu, Dec 5, 2019 at 2:23 PM Peter Kjellerstedt wrote: > > > -Original Message- > > From: openembedded-core-boun...@lists.openembedded.org > > On Behalf Of Peter > > Kjellerstedt > > Sent: den 5 december 2019 23:07 > > To: openembedded-core@lists.openembedded.org > > Subject: [OE-core

Re: [OE-core] [PATCH v2] tune-cortexa72-cortexa53: Add tunes

2019-12-13 Thread Andre McCurdy
On Fri, Dec 13, 2019 at 4:55 PM Joshua Watt wrote: > > Adds tunes for Cortex-A72 Cortex-A53 big.LITTLE SoCs (with and without > crypto extensions), e.g. Rockchip RK3399 > > Signed-off-by: Joshua Watt > --- > .../include/tune-cortexa72-cortexa53.inc | 24 +++ > 1 file changed

Re: [OE-core] [PATCH 1/5] zip: Enable largefile support based on distro feature

2022-08-12 Thread Andre McCurdy
On Wed, Aug 10, 2022 at 10:54 PM Khem Raj wrote: > > The configure test tries to run a binary during build to determine > largefile support, which wont work in cross-compile mode, therefore > specify it when largefile DISTRO_FEATURE is on. > > Signed-off-by: Khem Raj > --- > meta/recipes-extende

Re: [OE-core] [PATCH v3] bitbake.conf: Define TC_CXX_RUNTIME

2022-09-09 Thread Andre McCurdy
On Fri, Sep 9, 2022 at 9:52 AM Khem Raj wrote: > > This variable is used to denote the C/C++ compiler runtime to use. > Right now there are few alternatives out of the core which could > use this variable to define this property, the values it can take > are 'gnu' for gcc runtime. 'llvm' for using

Re: [oe-core][PATCH] libpng: Added "--enable-hardware-optimizations" instead of "--enable-arm-neon". Because "--enable-arm-neon" only works for armv7, but doesn't work for aarch64. But in fact neon is

2022-12-13 Thread Andre McCurdy
On Mon, Dec 12, 2022 at 6:38 PM leimaohui wrote: > > Reference to libpng-1.6.38/configure,if enable_hardware_optimizations is > enabled, libpng can judge whether enable enable_arm_neon according > to $host_cpu. > > $ cat libpng-1.6.38/configure > .. > i

Re: [OE-core] runqemu nographic and hvc0

2020-03-12 Thread Andre McCurdy
On Thu, Mar 12, 2020 at 9:13 AM Khem Raj wrote: > On 3/12/20 8:21 AM, Marko, Peter wrote: > > Hi, > > > > I'm trying to boot my own qemu image on zeus branch with "runqemu nographic > > /path/to/extracted/rootfs" but I have problem that console is flooded with > > process '/sbin/getty 115200 hvc0

Re: [OE-core] simplest command to display which layers are applying the same patch?

2020-03-12 Thread Andre McCurdy
On Thu, Mar 12, 2020 at 7:30 AM wrote: > Quoting Alexander Kanavin : > > > I think 'bitbake -e recipe', and then searching for SRC_URI in it should > > show which layer applies which patch. > >... snip ... > > I *think* I know what might be happening here, and I'd like to verify > some suspici

[OE-core] [PATCH 1/5] gcc-runtime: apply ARM specific workaround to big-endian ARM too

2020-03-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-devtools/gcc/gcc-runtime.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index b2c5d43bd4..771f344ac0 100644 --- a/meta/recipes-devtools/gcc/gcc

[OE-core] [PATCH 3/5] tune-arm1136jf-s.inc: restore vfp to TUNE_FEATURES_tune-arm1136jfs

2020-03-16 Thread Andre McCurdy
-by: Andre McCurdy --- meta/conf/machine/include/tune-arm1136jf-s.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/machine/include/tune-arm1136jf-s.inc b/meta/conf/machine/include/tune-arm1136jf-s.inc index b25995d495..173cb468ef 100644 --- a/meta/conf/machine

[OE-core] [PATCH 2/5] opkg-utils: remove python scripts etc for the class-target only

2020-03-16 Thread Andre McCurdy
OE's packaging functions assume that the opkg-utils python scipts are always provided by opkg-utils-native, so the scripts should be removed for class-target only. Signed-off-by: Andre McCurdy --- meta/recipes-devtools/opkg-utils/opkg-utils_0.4.2.bb | 8 1 file changed, 4 inser

[OE-core] [PATCH 4/5] tune-arm1176jz-s.inc: fix typo in PACKAGE_EXTRA_ARCHS_tune-arm1176jzs

2020-03-16 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/conf/machine/include/tune-arm1176jz-s.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/machine/include/tune-arm1176jz-s.inc b/meta/conf/machine/include/tune-arm1176jz-s.inc index c741e80521..a63d585698 100644 --- a/meta/conf

[OE-core] [PATCH 5/5] qemuarmv5.conf: drop stray comment including tune-arm1136jf-s.inc

2020-03-16 Thread Andre McCurdy
An old comment which appears to have been checked in by accident as part of an unrelated change: https://git.openembedded.org/openembedded-core/commit/?id=e9ebcc4c19a624f76051c0a25d9ecf6ac4afb257 Signed-off-by: Andre McCurdy --- meta/conf/machine/qemuarmv5.conf | 1 - 1 file changed, 1

Re: [OE-core] [zeus][PATCH] sanity: check for more bits of Python

2020-03-19 Thread Andre McCurdy
On Thu, Mar 19, 2020 at 12:19 PM Martin Jansa wrote: > > From: Ross Burton > > MJ: icu in master doesn't need distutils anymore, because icu 65.1 currently > in > dunfell/master doesn't depend on python3-distutils anymore since: > https://github.com/unicode-org/icu/commit/b4d41b0561b6e8de38b9985

Re: [OE-core] [zeus][PATCH] sanity: check for more bits of Python

2020-03-19 Thread Andre McCurdy
On Thu, Mar 19, 2020 at 12:37 PM Martin Jansa wrote: > > On Thu, Mar 19, 2020 at 12:33:17PM -0700, Andre McCurdy wrote: > > On Thu, Mar 19, 2020 at 12:19 PM Martin Jansa > > wrote: > > > > > > From: Ross Burton > > > > > > MJ: icu in m

Re: [OE-core] [PATCH] pulseaudio: fix for ARM thumb + frame pointers compilation error

2020-03-26 Thread Andre McCurdy
On Thu, Mar 26, 2020 at 8:26 AM Stefan Ghinea wrote: > > From: Catalin Enache > > When compiling for Thumb or Thumb2, frame pointers _must_ be disabled > since the Thumb frame pointer in r7 clashes with pulseaudio's use of inline > asm to make syscalls (where r7 is used for the syscall NR). > > I

Re: [OE-Core][RFC PATCH 06/13] systemd: Add PACKAGECONFIG for sysvinit

2020-03-26 Thread Andre McCurdy
On Thu, Mar 26, 2020 at 10:33 AM Adrian Bunk wrote: > > On Thu, Mar 26, 2020 at 03:54:55PM +, Alex Kiernan wrote: > > On Thu, Mar 26, 2020 at 2:56 PM Adrian Bunk wrote: > > > On Thu, Mar 26, 2020 at 08:54:19AM +, Alex Kiernan wrote: > > > > Add sysvinit PACKAGECONFIG which is bound to DIS

  1   2   3   4   5   6   7   8   9   10   >