[OE-core] Qt on Wandboard-solo with Yocto -Problem

2014-08-05 Thread Nilesh Kokane
Hello, If anyone can help me to sought out the this issue to built up Qt on wandboard-Solo with yocto. Based on the url http://wiki.wandboard.org/index.php/Building_Qt5_using_yocto_on_Wandboard I altered the local.conf and the bblayers.confand gave a bitbake core-image-minimal with

[OE-core] [PATCH 2/3] strace: fix ptest execution failure

2014-08-05 Thread Chong Lu
ptest needs runtest-TESTS target. serial-tests is required to generate this target. Signed-off-by: Chong Lu chong...@windriver.com --- .../strace/strace-4.8/Makefile-ptest.patch | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 1/3] perl: fix the output format of all tests

2014-08-05 Thread Chong Lu
We should use PASS:|FAIL:|SKIP: testname to output results of ptest. Signed-off-by: Chong Lu chong...@windriver.com --- meta/recipes-devtools/perl/perl-5.20.0/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/perl/perl-5.20.0/run-ptest

[OE-core] [PATCH 3/3] dbus: fix ptest issue

2014-08-05 Thread Chong Lu
We use PTEST_ENABLED to decide whether build ptest package, so inherit ptest.bbclass in dbus.inc in order to using PTEST_ENABLED variable. Remove PACKAGES and ALLOW_EMPTY, since they have been defined in ptest.bbclass. Signed-off-by: Chong Lu chong...@windriver.com ---

[OE-core] [PATCH 0/3] fix several ptest issues

2014-08-05 Thread Chong Lu
The following changes since commit 870bb8d35547b8313b3a487d7e8b914ab9470e64: local.conf.sample.extended: fix example for EXTRA_USERS_PARAMS (2014-08-04 17:38:24 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib chonglu/ptest

[OE-core] [PATCH] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-05 Thread Yasir Khan
From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com --- .../wpa-supplicant/wpa-supplicant.inc | 17 - 1 file

Re: [OE-core] blocking pie in recipes that build shared object files

2014-08-05 Thread Peter A. Bigot
On 08/04/2014 05:39 PM, Khem Raj wrote: On 14-08-04 09:56:37, Peter A. Bigot wrote: I've now hit two recipes in meta-openembedded that fail on armv7-a because SECURITY_CFLAGS has -pie as an option that leaks into a link command building a shared object file. This produces: |

[OE-core] [PATCH] Add doc entry for ptest-pkgs in IMAGE_FEATURES list

2014-08-05 Thread Robert P. J. Day
Signed-off-by: Robert P. J. Day rpj...@crashcourse.ca --- diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass index 1b36cba..67e11bf 100644 --- a/meta/classes/core-image.bbclass +++ b/meta/classes/core-image.bbclass @@ -30,6 +30,7 @@ LIC_FILES_CHKSUM =

Re: [OE-core] [PATCH 3/3] dbus: fix ptest issue

2014-08-05 Thread Richard Purdie
On Tue, 2014-08-05 at 16:33 +0800, Chong Lu wrote: We use PTEST_ENABLED to decide whether build ptest package, so inherit ptest.bbclass in dbus.inc in order to using PTEST_ENABLED variable. Remove PACKAGES and ALLOW_EMPTY, since they have been defined in ptest.bbclass. Signed-off-by: Chong

Re: [OE-core] [PATCH 3/3] dbus: fix ptest issue

2014-08-05 Thread Chong Lu
On 08/05/2014 05:53 PM, Richard Purdie wrote: On Tue, 2014-08-05 at 16:33 +0800, Chong Lu wrote: We use PTEST_ENABLED to decide whether build ptest package, so inherit ptest.bbclass in dbus.inc in order to using PTEST_ENABLED variable. Remove PACKAGES and ALLOW_EMPTY, since they have been

Re: [OE-core] [PATCH 3/3] dbus: fix ptest issue

2014-08-05 Thread Paul Eggleton
On Tuesday 05 August 2014 18:07:50 Chong Lu wrote: On 08/05/2014 05:53 PM, Richard Purdie wrote: On Tue, 2014-08-05 at 16:33 +0800, Chong Lu wrote: We use PTEST_ENABLED to decide whether build ptest package, so inherit ptest.bbclass in dbus.inc in order to using PTEST_ENABLED variable.

Re: [OE-core] [PATCH] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-05 Thread Martin Jansa
On Tue, Aug 05, 2014 at 02:02:21PM +0500, Yasir Khan wrote: From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com ---

[OE-core] i guess there's no way to *conditionally* add tasks?

2014-08-05 Thread Robert P. J. Day
digging into ptest stuff, and i notice this in ptest.bbclass: addtask configure_ptest_base after do_configure before do_compile addtask compile_ptest_base after do_compile before do_install addtask install_ptest_base after do_install before do_package do_populate_sysroot python () {

[OE-core] still some remnants of allegedly removed do_package_write task

2014-08-05 Thread Robert P. J. Day
yocto ref manual, 5.5.13 (Tasks), claims: The do_package_write task has been removed. The task is no longer needed. but there still appear to be a few lingering references to it in oe-core: $ grep -rw do_package_write meta meta/classes/rm_work.bbclass:*do_package_write*)

[OE-core] [PATCH 1/2] perf: explicitly disable libunwind

2014-08-05 Thread Martin Jansa
* it's not included in DEPENDS and it's detected from sysroot Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/recipes-kernel/perf/perf.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index

[OE-core] [PATCH 2/2] perf: fix indentation

2014-08-05 Thread Martin Jansa
* multiline variables should use spaces not tabs for indentation * do_configure is also using wrong indentation, but I'm not fixing this one (still hoping that we'll eventually fix styleguide to use 4 spaces everywhere) Signed-off-by: Martin Jansa martin.ja...@gmail.com ---

Re: [OE-core] [PATCH] image.bbclass: Adding loop back for machine name in hosts file

2014-08-05 Thread Enrico Scholz
sujith h sujith.h-re5jqeeqqe8avxtiumw...@public.gmane.org writes: Is it ok to read from /etc/hostname and then have that in the /etc/hosts file, rather than using ${MACHINE}? ... + echo 127.0.1.1${MACHINE} ${IMAGE_ROOTFS}${sysconfdir}/hosts I do not see how this can be

Re: [OE-core] i guess there's no way to *conditionally* add tasks?

2014-08-05 Thread Enrico Scholz
Robert P. J. Day rpjday-L09J2beyid0N/h6p543...@public.gmane.org writes: addtask configure_ptest_base after do_configure before do_compile addtask compile_ptest_base after do_compile before do_install addtask install_ptest_base after do_install before do_package do_populate_sysroot

[OE-core] [PATCH] bluez5: Allow method calls over dbus for bluetooth daemon

2014-08-05 Thread Yasir Khan
From: Yasir-Khan yasir_k...@mentor.com This patch changes the dbus policy settings in order to allow calling methods over dbus. bluez5 and pulseaudio rely on this mechanism to configure media end points. Previously bluetoothd was failing to configure the media end points with error

Re: [OE-core] i guess there's no way to *conditionally* add tasks?

2014-08-05 Thread Paul Eggleton
On Tuesday 05 August 2014 13:28:45 Enrico Scholz wrote: Robert P. J. Day rpjday-L09J2beyid0N/h6p543...@public.gmane.org writes: addtask configure_ptest_base after do_configure before do_compile addtask compile_ptest_base after do_compile before do_install addtask install_ptest_base

Re: [OE-core] Qt on Wandboard-solo with Yocto -Problem

2014-08-05 Thread Otavio Salvador
On Tue, Aug 5, 2014 at 4:24 AM, Nilesh Kokane nilesh.kok...@mindastoneridge.com wrote: If anyone can help me to sought out the this issue to built up Qt on wandboard-Solo with yocto. Please wait until someone answer for few days before reposting something[1]. 1.

Re: [OE-core] [PATCH] image.bbclass: Adding loop back for machine name in hosts file

2014-08-05 Thread Koen Kooi
Op 4 aug. 2014, om 15:57 heeft Sujith H sujit...@gmail.com het volgende geschreven: From: Sujith H sujith_harida...@mentor.com If hostname is not added to /etc/hosts file then rpcinfo command fails when hostname is passed as argument. This was observed when rpcinfo command was tested on

Re: [OE-core] [PATCH] image.bbclass: Adding loop back for machine name in hosts file

2014-08-05 Thread sujith h
On Tue, Aug 5, 2014 at 6:17 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 4 aug. 2014, om 15:57 heeft Sujith H sujit...@gmail.com het volgende geschreven: From: Sujith H sujith_harida...@mentor.com If hostname is not added to /etc/hosts file then rpcinfo command fails when

Re: [OE-core] blocking pie in recipes that build shared object files

2014-08-05 Thread Khem Raj
On Tuesday, August 5, 2014, Peter A. Bigot p...@pabigot.com wrote: On 08/04/2014 05:39 PM, Khem Raj wrote: On 14-08-04 09:56:37, Peter A. Bigot wrote: I've now hit two recipes in meta-openembedded that fail on armv7-a because SECURITY_CFLAGS has -pie as an option that leaks into a link

[OE-core] [PATCH] PR_Service: Improvement of persistance of PR service

2014-08-05 Thread Dimitrios Katsaros
The current implementation only commits database changes after database exceptions or daemon shutdown. This patch adds a delayed commit after every request finish, defaulting to 20 seconds. I chose to make the sync on the consumer thread rather than the producer. This is to avoid simultaneous

Re: [OE-core] [PATCH 1/1] INITRD var: make it a list of filesystem images

2014-08-05 Thread Hart, Darren
On 8/4/14, 21:33, Kamble, Nitin A nitin.a.kam...@intel.com wrote: On 8/4/2014 9:38 AM, Hart, Darren wrote: On 7/29/14, 11:34, Kamble, Nitin A nitin.a.kam...@intel.com wrote: ... + if [ -n ${INITRD} ]; then + rm -f $dest/initrd + for fs in ${INITRD} + do +

Re: [OE-core] [PATCH 1/1] INITRD var: make it a list of filesystem images

2014-08-05 Thread Nitin A Kamble
On 8/5/2014 9:45 AM, Hart, Darren wrote: On 8/4/14, 21:33, Kamble, Nitin A nitin.a.kam...@intel.com wrote: On 8/4/2014 9:38 AM, Hart, Darren wrote: On 7/29/14, 11:34, Kamble, Nitin A nitin.a.kam...@intel.com wrote: ... + if [ -n ${INITRD} ]; then + rm -f $dest/initrd +

[OE-core] [PATCH] util-linux: create an all encompassing package group

2014-08-05 Thread Paul Gortmaker
Currently util-linux is fragmented into lots of small chunks, and if one is looking to avoid using busybox wholesale, there is currently no easy way to say I want all of it. Here we create a packagegroup for all of the util-linux chunks, so that it need not be duplicated by everyone wanting the

Re: [OE-core] [PATCH 01/20] udev-cache: Compress the cache

2014-08-05 Thread Randy MacLeod
On 14-08-04 02:40 PM, Ben Shelton wrote: From: Richard Tollerton rich.toller...@ni.com $DEVCACHE is observed to be 100k uncompressed; compressing it reduces its size to ~5k. Natinst-Rally-ID: TA44427 Acked-by: Gratian Crisan gratian.cri...@ni.com Natinst-ReviewBoard-ID: 58620 This is a good

[OE-core] [PATCH v2] wpa-supplicant: use PACKAGECONFIG for ssl selection

2014-08-05 Thread Yasir Khan
From: Yasir-Khan yasir_k...@mentor.com Select between openssl or gnutls as ssl implementation via PACKAGECONFIG instead of explicitly adding both via DEPENDS. Signed-off-by: Yasir-Khan yasir_k...@mentor.com --- .../wpa-supplicant/wpa-supplicant.inc | 20 +-

Re: [OE-core] [PATCH 01/20] udev-cache: Compress the cache

2014-08-05 Thread Otavio Salvador
On Tue, Aug 5, 2014 at 4:00 PM, Randy MacLeod randy.macl...@windriver.com wrote: On 14-08-04 02:40 PM, Ben Shelton wrote: From: Richard Tollerton rich.toller...@ni.com $DEVCACHE is observed to be 100k uncompressed; compressing it reduces its size to ~5k. Natinst-Rally-ID: TA44427

Re: [OE-core] [PATCH 01/20] udev-cache: Compress the cache

2014-08-05 Thread Randy MacLeod
On 14-08-05 04:09 PM, Otavio Salvador wrote: On Tue, Aug 5, 2014 at 4:00 PM, Randy MacLeod randy.macl...@windriver.com wrote: On 14-08-04 02:40 PM, Ben Shelton wrote: From: Richard Tollerton rich.toller...@ni.com $DEVCACHE is observed to be 100k uncompressed; compressing it reduces its size

[OE-core] [PATCH 0/2] INITRD commit feedback changes

2014-08-05 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com Here are couple of commits which enhances the code and documentation referring the recently changed INITRD variable. It is based on the feedback received from Darren Hart. Thanks, Nitin The following changes since commit

[OE-core] [PATCH 1/2] INITRD var: documentation changes

2014-08-05 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com The use of the INITRD variable is changed in a recent commit. Instead of specifying a single filesystem image, it specifies a list of file system images. Reflecting this change in the documentation. Signed-off-by: Nitin A Kamble

[OE-core] [PATCH 2/2] code cleanup for INITRD variable handing

2014-08-05 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com * Remove an unnecessary check * Instead of ignoring, report the errors Signed-off-by: Nitin A Kamble nitin.a.kam...@intel.com --- meta/classes/boot-directdisk.bbclass | 4 +++- meta/classes/bootimg.bbclass | 2 ++ 2 files changed, 5

[OE-core] [PATCH 00/24] wic: Remove unused code

2014-08-05 Thread Tom Zanussi
This patchset removes most of code inherited from mic but sitting essentially unused. There's no reason to be carrying it around other than some vague intention of reusing it, but that can still be done - anything needed can alwayse be added back. As it stands, it's only taking up space and

Re: [OE-core] [PATCH 1/2] INITRD var: documentation changes

2014-08-05 Thread Hart, Darren
On 8/5/14, 14:39, Kamble, Nitin A nitin.a.kam...@intel.com wrote: From: Nitin A Kamble nitin.a.kam...@intel.com The use of the INITRD variable is changed in a recent commit. Instead of specifying a single filesystem image, it specifies a list of file system images. Reflecting this change in the

Re: [OE-core] [PATCH 2/2] code cleanup for INITRD variable handing

2014-08-05 Thread Hart, Darren
On 8/5/14, 14:39, Kamble, Nitin A nitin.a.kam...@intel.com wrote: From: Nitin A Kamble nitin.a.kam...@intel.com * Remove an unnecessary check * Instead of ignoring, report the errors This isn't enough to ask for a resend, but please be a bit more explicit in what is going on in future commit

Re: [OE-core] [PATCH 01/20] udev-cache: Compress the cache

2014-08-05 Thread Ben Shelton
On 08/05, Randy MacLeod wrote: On 14-08-05 04:09 PM, Otavio Salvador wrote: On Tue, Aug 5, 2014 at 4:00 PM, Randy MacLeod randy.macl...@windriver.com wrote: On 14-08-04 02:40 PM, Ben Shelton wrote: From: Richard Tollerton rich.toller...@ni.com $DEVCACHE is observed to be 100k