Re: [OE-core] [poky] [meta-poky][PATCH 1/1] local.conf.sample: make systemd as default init manager

2018-12-09 Thread Richard Purdie
On Thu, 2018-12-06 at 20:53 +0800, kai.k...@windriver.com wrote: > From: Kai Kang > > Move configurations from local.conf.sample.extended to > local.conf.sample > to make systemd as default init manager for poky. > > [YOCTO #13031] > > Signed-off-by: Kai Kang > --- >

[OE-core] [PATCH 1/2] create_manifest2: Dont match filenames which contain the directory name for new manifest

2018-12-09 Thread Alejandro Enedino Hernandez Samaniego
When creating a new python2 manifest, there is a corner case on which the filepath for a certain dependency that was found, could contain the path of an existing folder, e.g. ${libdir}/python2.7/xmlrpclib.py module path contains ${libdir}/python2.7/xml, this causes an issue where the dependency

Re: [OE-core] [PATCH 1/1] oeqa: drop support of listing machines in QEMU_USE_KVM

2018-12-09 Thread ChenQi
On 12/07/2018 07:02 PM, Richard Purdie wrote: On Thu, 2018-12-06 at 14:30 +0800, Chen Qi wrote: We want QEMU_USE_KVM to only set to some boolean value, with possible MACHINE override. Drop the support of listing machines in this variable, and give users error message if they still do so. Error

[OE-core] [PATCH 2/4] ccache.bbclass: Refactor it to make it more reliable

2018-12-09 Thread Robert Yang
The previous ccache.bbclass has the following problems: - It uses host's ccache for native recipes, but this may not work on some hosts, for example, it nerver works on my Ubuntu 14.04.4, there are always build failures (m4-native failed at do_configure, and others will also be failed if I

[OE-core] [PATCH 0/4] ccache.bbclass: Refactor it to make it more reliable

2018-12-09 Thread Robert Yang
Hi RP and Ross, With this refactor, I think that we can even enable ccache by default, it is useful for debugging recipes which require a lot of time to compile. // Robert The following changes since commit 8bc0d2f2197430723f8b2d0785169e48c883eedb: mdadm: Drop redundant patches and fix build

[OE-core] [PATCH 1/4] base.bbclass: Remove invalid ccache related code

2018-12-09 Thread Robert Yang
The code is in setup_hosttools_dir(), it searches ccache in PATH in reverse order, I can't figure out what it is used for, maybe it is aimed to use host's ccache rather than recipe-sysroot-native/usr/bin/ccache, but the later one isn't in original PATH, so remove the code. Signed-off-by: Robert

[OE-core] [PATCH 3/4] apr/openssl10: Enable ccache for them

2018-12-09 Thread Robert Yang
The work well now. Signed-off-by: Robert Yang --- meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb | 3 --- meta/recipes-support/apr/apr_1.6.5.bb | 1 - 2 files changed, 4 deletions(-) diff --git a/meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb

Re: [OE-core] [poky] [meta-poky][PATCH 1/1] local.conf.sample: make systemd as default init manager

2018-12-09 Thread Kang Kai
On 2018/12/10 上午2:12, Richard Purdie wrote: On Thu, 2018-12-06 at 20:53 +0800, kai.k...@windriver.com wrote: From: Kai Kang Move configurations from local.conf.sample.extended to local.conf.sample to make systemd as default init manager for poky. [YOCTO #13031] Signed-off-by: Kai Kang ---

[OE-core] [thud][PATCH] createrepo-c: Fix setup of logging (log domains)

2018-12-09 Thread Zheng Ruoqin
New debug messages were added into GLib library. These messages come from the "GLib" log domain and were not hidden in the standard and quiet mode of the application. This fix hides log messages regardless on source log domain. Backport from 80810f04f2de6bae6e394f52ad9cdd2189862f74.

[OE-core] [PATCH] createrepo-c: Fix setup of logging (log domains)

2018-12-09 Thread Zheng Ruoqin
New debug messages were added into GLib library. These messages come from the "GLib" log domain and were not hidden in the standard and quiet mode of the application. This fix hides log messages regardless on source log domain. Backport from 80810f04f2de6bae6e394f52ad9cdd2189862f74.

[OE-core] βœ— patchtest: failure for createrepo-c: Fix setup of logging (log domains) (rev2)

2018-12-09 Thread Patchwork
== Series Details == Series: createrepo-c: Fix setup of logging (log domains) (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/15277/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests

[OE-core] βœ— patchtest: failure for createrepo-c: Fix setup of logging (log domains)

2018-12-09 Thread Patchwork
== Series Details == Series: createrepo-c: Fix setup of logging (log domains) Revision: 1 URL : https://patchwork.openembedded.org/series/15277/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

[OE-core] [PATCH] liberror-perl: upgrade 0.17026 -> 0.17027

2018-12-09 Thread Tim Orling
* add RDEPENDS * add RDEPENDS for ptest - tested on qemux86 with glibc and musl * drop do_compile, not obvious why LIBC needed to be set * Added HOMEPAGE: https://bitbucket.org/shlomif/perl-error.pm - Repository used to be github.com/shlomif (deadlink) Upstream release notes: """ 0.17027

[OE-core] [PATCH 4/4] cmake.bbclass/goarch.bbclass: Set CCACHE_DISABLE

2018-12-09 Thread Robert Yang
They can't be built with ccache. Signed-off-by: Robert Yang --- meta/classes/cmake.bbclass | 4 ++-- meta/classes/goarch.bbclass | 4 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index b364d2b..12fc452 100644 ---