Re: [yocto] [meta-raspberrypi][PATCH 2/2] linux-raspberrypi: build audio driver into kernel

2015-08-24 Thread Petter Mabäcker
2015-08-17 11:23 skrev Alex J Lennon: > On 17/08/2015 09:11, Petter Mabäcker wrote: > >> 2015-08-17 09:57 skrev Andrei Gherzan: >> >>> Hello, On Tuesday, August 11, 2015, Petter Mabäcker mailto:pet...@technux.se>> wrote: 2015-08-11 19:04 skrev Alex J Lennon: Signed-off-by: Alex J Lennon --

Re: [yocto] Packages in packagegroup are not installed in image

2015-08-24 Thread Ng, Mei Yeen
Hi Randy, The packagegroups is added into the image as below: 1) Create a bbappend of the image core-image-full-cmdline.bbappend in our new layer 2) In the core-image-full-cmdline.bbappend, enable the following lines: DESCRIPTION = "Custom list of packages for build essentials for comm

Re: [yocto] [meta-raspberrypi][PATCH v2 4/4] README: Add a section about graphic stacks

2015-08-24 Thread Javier Martinez Canillas
Hello, On 08/17/2015 11:58 AM, Javier Martinez Canillas wrote: > On 08/17/2015 09:57 AM, Andrei Gherzan wrote: >> On Thursday, August 13, 2015, Khem Raj wrote: [snip] +2.O. Graphic stacks +=== +The Raspberry Pi boards can use one of two graphics stacks: The u

[yocto] [meta-cgl][PATCH v2] cluster-glue: upgrade 1.0.5 -> 1.0.12

2015-08-24 Thread Li xin
* Add patch to aviod build Error and Warning. --0001-don-t-compile-doc-and-Error-Fix.patch --0001-ribcl.py.in-Warning-Fix.patch * Dropped backported patch: --fix-const-cast.patch --glue-remove-getpid-check.patch --glue-repair-deprecated-glib-support.patch --glue-repair-libxml-support.p

Re: [yocto] [meta-cgl][PATCH v2] cluster-glue: upgrade 1.0.5 -> 1.0.12

2015-08-24 Thread Alexandru Vaduva
Thanks Siva! -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Siva Borra Sent: Monday, August 24, 2015 11:33 AM To: yocto@yoctoproject.org Subject: Re: [yocto] [meta-cgl][PATCH v2] cluster-glue: upgrade 1.0.5 -> 1.0.12 Hi Li, Th

Re: [yocto] [meta-cgl][PATCH v2] cluster-glue: upgrade 1.0.5 -> 1.0.12

2015-08-24 Thread Alexandru Vaduva
Yes, no problem. I attached the log to this CR. All the other patches are ok and booting fine. The only problem is related to this one. Feel free to ask for further information if necessary :D Alex V. -Original Message- From: Li, Xin [mailto:lixin.f...@cn.fujitsu.com] Sent: Monday, Au

Re: [yocto] [meta-selinux][PATCH] Use the SELinux project release tarballs.

2015-08-24 Thread wenzong fan
On 08/22/2015 12:01 AM, Philip Tricca wrote: Greetings Wenzong, On 08/21/2015 02:09 AM, wenzong fan wrote: On 08/21/2015 10:48 AM, Philip Tricca wrote: Any opinions / thoughts on this one? I've got an upgrade for the toolstack (2.3 -> 2.4) ready to go but I've based it on the release URIs from

Re: [yocto] [meta-cgl][PATCH v2] cluster-glue: upgrade 1.0.5 -> 1.0.12

2015-08-24 Thread Siva Borra
Hi Li, The error reproducible on ppc32. Here are the error messages: make[2]: Entering directory `/media/data/fb/zsibo/CGL/P2041_RC/tmp/work/ppce500mc-enea-linux/cluster-glue/1.0.12-r0/build/lrm/admin' echo Creating lrmadmin.8 Creating lrmadmin.8 chmod a+x lrmadmin help2man --output lrmadmin

[yocto] [meta-raspberrypi][PATCH V3 1/5] userland: Fix install prefix and generate pkgconfigs

2015-08-24 Thread Khem Raj
several userspace libraries like libepoxy poke for pkgconfigs ( .pc ) files to detect egl support, and comes out to fail in configure stage, one of the patches now adds support to generate .pc files for some known cases. it could be further extended if needed for other libraries too Secondly, the

[yocto] [meta-raspberrypi][PATCH V3 4/5] weston: Enable rpi compositor backend

2015-08-24 Thread Khem Raj
oe-core default configure options disables it Signed-off-by: Khem Raj --- recipes-graphics/wayland/weston_%.bbappend | 4 1 file changed, 4 insertions(+) create mode 100644 recipes-graphics/wayland/weston_%.bbappend diff --git a/recipes-graphics/wayland/weston_%.bbappend b/recipes-graphi

[yocto] [meta-raspberrypi][PATCH V3 3/5] userland: Adjust include location for pthreads-headers

2015-08-24 Thread Khem Raj
vcos headers include headers like "vcos_platform.h" "vcos_futex_mutex.h" "vcos_platform_types.h" and these headers are different based on platform/OSes. e.g. OS targets that support pthreads these headers should come from pthreads/ folder but not for others. So one would add right -I option for eve