Re: [OE-core] musl patches

2018-04-16 Thread Khem Raj
On Mon, Apr 16, 2018 at 7:02 PM ChenQi wrote: > On 04/16/2018 07:05 PM, Andreas Müller wrote: > > Hi, > > > > I am not happy plastering patches around for musl. This gets even > > worse when I see patches like this [1]: Just wipe away security checks > > unconditionally - the developers did intro

Re: [OE-core] musl patches

2018-04-16 Thread ChenQi
On 04/16/2018 07:05 PM, Andreas Müller wrote: Hi, I am not happy plastering patches around for musl. This gets even worse when I see patches like this [1]: Just wipe away security checks unconditionally - the developers did introduce this check not just for fun I guess... I have seen this alrea

Re: [OE-core] [OE-CORE][sumo][python3] Generated SDK missing sqlite3

2018-04-16 Thread Alejandro Enedino Hernandez Samaniego
Which commit are you using? https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=4379b29e7eede727993ee68c9eba2bdebace5108 In any case, that one should've solved it. Alejandro From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org]

[OE-core] [PATCH V3] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMS

2018-04-16 Thread liu . ming50
From: Ming Liu It defaults to be '0', but it allows the developers to choose not add file-checksums to do_compile for the entire source tree, by setting to '1'. We need this because we have a huge project with 100G bytes source files, and we do not want them to be added to file-checksums variabl

Re: [OE-core] [PATCH V2] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread Ming Liu
Oops, will send a V3. 2018-04-17 2:34 GMT+02:00 Peter Kjellerstedt : > > -Original Message- > > From: openembedded-core-boun...@lists.openembedded.org > > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > > liu.min...@gmail.com > > Sent: den 17 april 2018 02:25 > >

Re: [OE-core] [PATCH V2] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > liu.min...@gmail.com > Sent: den 17 april 2018 02:25 > To: openembedded-core@lists.openembedded.org > Cc: Ming Liu > Subject: [OE-core] [

[OE-core] [PATCH V2] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread liu . ming50
From: Ming Liu It defaults to be '0', but it allows the developers to choose not add file-checksums to do_compile for the entire source tree, by setting to '1'. We need this because we have a huge project with 100G bytes source files, and we do not want them to be added to file-checksums variabl

Re: [OE-core] [PATCH] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread Ming Liu
My mistake, that is a typo, will send the V2 soon. //Ming Liu 2018-04-16 23:22 GMT+02:00 Andre McCurdy : > On Mon, Apr 16, 2018 at 12:26 PM, wrote: > > From: Ming Liu > > > > It defaults to be '0', but it allows the developers to choose not add > > file-checksums to do_compile for the entire

Re: [OE-core] [PATCH] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread Andre McCurdy
On Mon, Apr 16, 2018 at 12:26 PM, wrote: > From: Ming Liu > > It defaults to be '0', but it allows the developers to choose not add > file-checksums to do_compile for the entire source tree, by setting to > '1'. > > We need this because we have a huge project with 100G bytes source > files, and

Re: [OE-core] [PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-16 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Mark Hatle > Sent: den 16 april 2018 17:34 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH] package.bbclass: Ad

[OE-core] [PATCH] recipes-kernel/linux: Enable NUMA Kconfig from DISTRO_FEATURES

2018-04-16 Thread Alistair Francis
If the user has set numa as a distro feature enable NUMA support in the kernel config. Signed-off-by: Alistair Francis --- meta/recipes-kernel/linux/files/numa.cfg | 4 meta/recipes-kernel/linux/linux-yocto.inc | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 meta/recipes-kern

[OE-core] [rocko][PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-16 Thread Mark Hatle
The isELF function works by running: result = file if 'ELF' in result By default 'file' will prepend the result with the path name of the file that is being checked. This usually works fine, such as: $ file /home/foo/openembedded-core/meta/classes/package.bbclass /home/foo/openembedded-c

[OE-core] [pyro][PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-16 Thread Mark Hatle
The isELF function works by running: result = file if 'ELF' in result By default 'file' will prepend the result with the path name of the file that is being checked. This usually works fine, such as: $ file /home/foo/openembedded-core/meta/classes/package.bbclass /home/foo/openembedded-c

[OE-core] [PATCH] externalsrc.bbclass: introduce INHIBIT_SRCTREE_FILE_CHECKSUMES

2018-04-16 Thread liu . ming50
From: Ming Liu It defaults to be '0', but it allows the developers to choose not add file-checksums to do_compile for the entire source tree, by setting to '1'. We need this because we have a huge project with 100G bytes source files, and we do not want them to be added to file-checksums variabl

Re: [OE-core] [OE-CORE][sumo][python3] Generated SDK missing sqlite3

2018-04-16 Thread Davis, Michael
Adding python3-misc to the SDK seems to have solved the issue. I saw some commits about separating the two so perhaps this is a side effect? From: Davis, Michael Sent: Monday, April 16, 2018 11:04 AM To: 'openembedded-core@lists.openembedded.org' Subject: [OE-CORE][sumo][python3] Generated SDK mis

[OE-core] [OE-CORE][sumo][python3] Generated SDK missing sqlite3

2018-04-16 Thread Davis, Michael
Testing out the upcoming sumo release and ran into an issue. Whenever I attempt to generate an sdk-ext with sumo I get a failure about missing sqlite3. Traceback (most recent call last): File "/home/mdavis/core_sdk/sysroots/x86_64-pokysdk-linux/usr/bin/devtool", line 344, in ret = main() F

[OE-core] Yocto Project Status April 16, 2018

2018-04-16 Thread Jordan, Robin L
Current Dev Position: YP 2.5 M4 final close out. Next Deadline: YP 2.5 M4 release is 4/27/18 SWAT Team Rotation: SWAT lead is currently: Tracy. SWAT team rotation: Tracy -> Stephano on April 20, 2018 SWAT team rotation: Stephano -> Maxin on April 27, 2018 https://wiki.yoctoproject.org/wiki/Y

[OE-core] [PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-16 Thread Mark Hatle
The isELF function works by running: result = file if 'ELF' in result By default 'file' will prepend the result with the path name of the file that is being checked. This usually works fine, such as: $ file /home/foo/openembedded-core/meta/classes/package.bbclass /home/foo/openembedded-c

[OE-core] [PATCH v2 2/4] libcap: fix (base_)libdir usage

2018-04-16 Thread Koen Kooi
The recipe wants to install libs into base_libdir, but uses "basename $libdir" to derive that. That breaks in a multiarch setup. Use the proper variable and remove the inline python usage. Signed-off-by: Koen Kooi --- meta/recipes-support/libcap/libcap_2.25.bb | 2 +- 1 file changed, 1 inserti

[OE-core] [PATCH v2 1/4] native bbclass: handle base_libdir as well

2018-04-16 Thread Koen Kooi
Native.bbclass needs to fixup both base_libdir and libdir to handle things like multiarch. This fixes wic and ext4.* image failures during do_rootfs where mkfs.ext4 can't find its libraries. Signed-off-by: Koen Kooi --- meta/classes/native.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff

[OE-core] [PATCH v2 3/4] bind: fix openSSL detection when using multiarch

2018-04-16 Thread Koen Kooi
In multiarch /usr/include and /usr/lib/ --- meta/recipes-connectivity/bind/bind_9.10.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/bind/bind_9.10.6.bb b/meta/recipes-connectivity/bind/bind_9.10.6.bb index 8b8835b..20c8d7b 100644 --- a/meta/reci

[OE-core] [PATCH v2 4/4] python 2.7: fix multilib patch to accept multiarch style paths

2018-04-16 Thread Koen Kooi
Using 'basename' to strip the prefix fails when using multiarch style paths. Signed-off-by: Koen Kooi --- meta/recipes-devtools/python/python.inc| 6 ++ meta/recipes-devtools/python/python/multilib.patch | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/meta/r

[OE-core] musl patches

2018-04-16 Thread Andreas Müller
Hi, I am not happy plastering patches around for musl. This gets even worse when I see patches like this [1]: Just wipe away security checks unconditionally - the developers did introduce this check not just for fun I guess... I have seen this already elsewhere so: musl maintainers please take ca

Re: [OE-core] [PATCH] run-postinsts: Replace pi_dir variable test

2018-04-16 Thread Burton, Ross
I'll drop it myself, but in the future note that PR bumps are not required. Ross On 14 April 2018 at 07:54, Niko Mauno wrote: > Since commit 5159ddcb62682e1b7e63a20a9218ea96e3fe10a2 string length test > performed against pi_dir has effectively never been able to succeed. > > Change this to rathe

Re: [OE-core] dropping commerical flags in mpg123 and lame recipes

2018-04-16 Thread Burton, Ross
I *think* we're good to do this. If you could send a patch with a nice long commit message with sources and comparisons to other distros, then we can have a concrete patch to review and get further advice on. Ross On 15 April 2018 at 09:12, Carlos Rafael Giani wrote: > Please note that the Frau

Re: [OE-core] [PATCH] u-boot: Upgrade to 2018.03 release

2018-04-16 Thread Marek Vasut
On 04/16/2018 10:38 AM, yamada.masah...@socionext.com wrote: > Hi. > >> -Original Message- >> From: Martin Hundebøll [mailto:m...@prevas.dk] >> Sent: Wednesday, April 11, 2018 5:42 PM >> To: Yamada, Masahiro/山田 真弘 ; >> ma...@denx.de; raj.k...@gmail.com >> Cc: ota...@ossystems.com.br; opene