[yocto] [meta-raspberrypi][PATCH] userland: Fix install prefix and generate pkgconfigs

2015-08-10 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

Re: [yocto] [meta-raspberrypi][PATCH 2/5] rpi-config: Allow to mask GPU irqs

2015-08-10 Thread Javier Martinez Canillas
Hello Andrei, Thanks a lot for your feedback and for picking patches #1 and #3! On 08/10/2015 12:44 AM, Andrei Gherzan wrote: > Hello, > > On Thu, Jul 30, 2015 at 10:34:08AM +0200, Javier Martinez Canillas wrote: >> From: Derek Foreman >> >> The rpi config.txt file has a mask_gpu_interrupt opti

[yocto] [meta-raspberrypi][PATCH 2/2] README: Add extra iformation on creating/sending patches using git

2015-08-10 Thread Khem Raj
Current instructions could be improvised to help user in creating properly formatted patches with some command help on git format-patch and git send-email Signed-off-by: Khem Raj --- README | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README b/README index d70f

Re: [yocto] [meta-raspberrypi][PATCH 4/5] linux-raspberrypi: Add a 4.1 linux kernel with vc4 support

2015-08-10 Thread Javier Martinez Canillas
Hello Andrei, On 08/10/2015 12:54 AM, Andrei Gherzan wrote: > Hi, > > On Thu, Jul 30, 2015 at 10:34:10AM +0200, Javier Martinez Canillas wrote: >> From: Derek Foreman >> >> This adds Eric Anholt's WIP kernel with dri/kms/3d support for the GPU on >> the rpi2. Adding a recipe that tracks this ker

Re: [yocto] [meta-raspberrypi][PATCH 0/5] Add support for 4.1 kernel with vc4 DRM/KMS driver

2015-08-10 Thread Javier Martinez Canillas
Hello Andrei, On 08/10/2015 01:01 AM, Andrei Gherzan wrote: > Cheers! > > First of all good work. Additionally to the comments I made in patches, find > some here. > Thanks a lot. > On Thu, Aug 06, 2015 at 09:03:34AM +0200, Javier Martinez Canillas wrote: >> Hello Petter, >> >> On 08/05/2015 1

Re: [yocto] [meta-raspberrypi][PATCH 5/5] rpi-default-providers: Switch providers according to used gfx stack

2015-08-10 Thread Javier Martinez Canillas
Hello Andrei, On 08/10/2015 01:05 AM, Andrei Gherzan wrote: > On Thu, Aug 06, 2015 at 08:59:56AM +0200, Javier Martinez Canillas wrote: >> Hello Khem, >> >> On 08/06/2015 04:54 AM, Khem Raj wrote: >>> On Tue, Aug 4, 2015 at 11:34 PM, Javier Martinez Canillas >>> wrote: > who defines the distr

Re: [yocto] [meta-raspberrypi][PATCH] firmware.inc: fetch from SVN instead of Git

2015-08-10 Thread Khem Raj
On Sun, Aug 9, 2015 at 4:57 PM, Andrei Gherzan wrote: > Hi, > > On Mon, Jul 20, 2015 at 09:59:30AM -0600, Gary Thomas wrote: >> On 2015-07-19 15:34, Andrei Gherzan wrote: >> >Hello, >> > >> >-- >> >Andrei Gherzan >> > >> >On Thu, Jul 16, 2015 at 7:53 PM, Jon Szymaniak > >

Re: [yocto] [meta-raspberrypi][PATCH 5/5] rpi-default-providers: Switch providers according to used gfx stack

2015-08-10 Thread Javier Martinez Canillas
Hello Andreas, On 08/10/2015 01:37 AM, Andreas Müller wrote: >> Khem definitely has a very good point. Maybe his way of putting it in words >> was >> not that productive. But the core idea was definitely right: I don't want rpi >> layer to introduce distro features. > Agreed but I still have issu

Re: [yocto] autotools --prefix ignored?

2015-08-10 Thread Burton, Ross
On 7 August 2015 at 15:28, Adam Rossi wrote: > inherit autotools > EXTRA_OECONF = "--prefix=${D}/opt/myfolder" > > The above is ignored, auto tools puts the results in /usr/bin > Autotools already passes --prefix so you should probably just set prefix in the recipe instead. Also don't use ${D}.

[yocto] [meta-raspberrypi][PATCH 1/2] linux-raspberrypi: Update kernel to 3.18.16

2015-08-10 Thread Alex J Lennon
This requires some changes to KERNEL_DEVICETREE as the dtb layout has changed to support overlays. This change also makes us ready to support kernel 4.x series Signed-off-by: Alex J Lennon --- conf/machine/include/rpi-base.inc | 22 ++ recipes-kernel/linux/linux-

[yocto] [meta-raspberrypi][PATCH 2/2] linux-raspberrypi: support kernel 4.1.3

2015-08-10 Thread Alex J Lennon
Signed-off-by: Alex J Lennon --- recipes-kernel/linux/linux-raspberrypi_4.1.bb | 6 ++ 1 file changed, 6 insertions(+) create mode 100644 recipes-kernel/linux/linux-raspberrypi_4.1.bb diff --git a/recipes-kernel/linux/linux-raspberrypi_4.1.bb b/recipes-kernel/linux/linux-raspberrypi_4.1.bb

[yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread yocto yocto
Good day, I am using the "soci" recipe: https://github.com/openembedded/meta-openembedded/tree/9a5d25f2a717814f948b492b9c01c1ff0edb678d/meta-oe/recipes-support/soci soci is successfully being built when using the following dependency in my own recipe which relies on soci: DEPENDS = "soci" soci

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread Burton, Ross
On 10 August 2015 at 12:13, yocto yocto wrote: > However, when compiling my own recipe I get compiling errors ("soci.h not > found"). I am 100% sure that I specified the correct paths. > The headers are likely installed in the sysroot, but your script can't find them. The first step would be to

[yocto] Disable "Warning: X, set to be excluded, is excluded [...]"

2015-08-10 Thread yocto yocto
I am building my own yocto image based on the intel edison image. For that reason i created my own layer so that I do not have to touch the official intel sources. Each change is done in my own layer. Hence, to remove packages that are added within the intel edison configuration I use PACKAGE_EXCL

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread yocto yocto
2015-08-10 13:16 GMT+02:00 Burton, Ross : > > The first step would be to verify that the sysroot does in fact have the > headers installed in > > Ross > Thank you for your response! How do I verify that? -- ___ yocto mailing list yocto@yoctoproject.org

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread yocto yocto
Please see the attachment for a simplified example. A library (consisting of 1 cpp and 1 header) is being built using soci. Compiling fails since soci.h is not found. 2015-08-10 13:16 GMT+02:00 Burton, Ross : > > On 10 August 2015 at 12:13, yocto yocto > wrote: > >> However, when compiling my ow

Re: [yocto] ipk zImage in master-next

2015-08-10 Thread Trevor Woerner
On 08/09/15 06:07, Paul Barker wrote: > On Fri, Aug 07, 2015 at 09:19:45AM -0400, Trevor Woerner wrote: >> When packaging a zImage kernel for IPK in master-next the following >> error shows up: >> >> | kernel-image-zImage-4.1.2-fslc+g95d9e15 >> | *** Error: Package name contains illegal characters

Re: [yocto] [oe] Bug in Open CV receipt

2015-08-10 Thread Victor Rodriguez
On Thu, Jul 23, 2015 at 11:30 AM, Otavio Salvador wrote: > On Thu, Jul 23, 2015 at 12:05 PM, Victor Rodriguez wrote: >> On Wed, Jul 22, 2015 at 7:35 AM, Otavio Salvador >> wrote: >>> On Tue, Jul 21, 2015 at 11:57 AM, Victor Rodriguez >>> wrote: Few weeks ago I was having some problems wit

Re: [yocto] Disable "Warning: X, set to be excluded, is excluded [...]"

2015-08-10 Thread Paul Eggleton
On Monday 10 August 2015 13:19:48 yocto yocto wrote: > I am building my own yocto image based on the intel edison image. For that > reason i created my own layer so that I do not have to touch the official > intel sources. Each change is done in my own layer. > > Hence, to remove packages that are

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread Khem Raj
> On Aug 10, 2015, at 4:50 AM, yocto yocto wrote: > > Please see the attachment for a simplified example. A library (consisting of > 1 cpp and 1 header) is being built using soci. Compiling fails since soci.h > is not found. > > 2015-08-10 13:16 GMT+02:00 Burton, Ross

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread yocto yocto
I also did further research. The problem is that FIND_PACKAGE does not work for soci. For that reason one has to specify CMake variable such as SOCI_INCLUDEDIR manually. Using namespaces such as #include is no solution: When enabling further backends such as postgresql this approach fails since th

Re: [yocto] autotools --prefix ignored?

2015-08-10 Thread Adam Rossi
Perfection! Thanks Ross! On Mon, Aug 10, 2015 at 5:53 AM, Burton, Ross wrote: > > On 7 August 2015 at 15:28, Adam Rossi wrote: >> >> inherit autotools >> EXTRA_OECONF = "--prefix=${D}/opt/myfolder" >> >> The above is ignored, auto tools puts the results in /usr/bin > > > Autotools already passes

[yocto] [PATCH][rrs] rrs_upstream_history.py: Use regexes in SPECIAL_PKGSUFFIX packages

2015-08-10 Thread Aníbal Limón
When SPECIAL_PKGSUFFIX packages don't have regexes use it from package without SPECIAL_PKGSUFFIX. [YOCTO #8102] For example: python-native use regex from python if don't have one. Signed-off-by: Aníbal Limón --- rrs/tools/rrs_upstream_history.py | 40 +++ 1

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread Khem Raj
On Mon, Aug 10, 2015 at 12:08 PM, yocto yocto wrote: > SET(SOCI_INCLUDEDIR > /home/my-PC/development/2015-08-04_edison-src/edison-src/build/tmp/sysroots/edison/usr/include/soci) > > everything worked fine. Is there any way to get the path > "/home/my-PC/development/2015-08-04_edison-src/edison-src

[yocto] [meta-raspberrypi][PATCH 1/1] rpi-default-providers: Let users overwrite the default providers

2015-08-10 Thread Andrei Gherzan
[Feature #65] Signed-off-by: Andrei Gherzan Signed-off-by: Pierre FICHEUX --- conf/machine/include/rpi-default-providers.inc | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/machine/include/rpi-default-providers.inc b/conf/machine/include/rpi-default-providers.i

Re: [yocto] [meta-raspberrypi][PATCH 1/1] rpi-default-providers: Let users overwrite the default providers

2015-08-10 Thread Andrei Gherzan
On Mon, Aug 10, 2015 at 11:22:36PM +0200, Andrei Gherzan wrote: > [Feature #65] > > Signed-off-by: Andrei Gherzan > Signed-off-by: Pierre FICHEUX > --- > conf/machine/include/rpi-default-providers.inc | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/conf/machine/i

Re: [yocto] [meta-raspberrypi][PATCH 2/5] rpi-config: Allow to mask GPU irqs

2015-08-10 Thread Andrei Gherzan
On Mon, Aug 10, 2015 at 09:48:43AM +0200, Javier Martinez Canillas wrote: > Hello Andrei, > > Thanks a lot for your feedback and for picking patches #1 and #3! > > On 08/10/2015 12:44 AM, Andrei Gherzan wrote: > > Hello, > > > > On Thu, Jul 30, 2015 at 10:34:08AM +0200, Javier Martinez Canillas wro

Re: [yocto] [meta-raspberrypi][PATCH 5/5] rpi-default-providers: Switch providers according to used gfx stack

2015-08-10 Thread Andrei Gherzan
Hi, On Mon, Aug 10, 2015 at 10:22:06AM +0200, Javier Martinez Canillas wrote: > Hello Andreas, > > On 08/10/2015 01:37 AM, Andreas Müller wrote: > >> Khem definitely has a very good point. Maybe his way of putting it in > >> words was > >> not that productive. But the core idea was definitely rig

Re: [yocto] [meta-raspberrypi][PATCH 0/5] Add support for 4.1 kernel with vc4 DRM/KMS driver

2015-08-10 Thread Andrei Gherzan
On Mon, Aug 10, 2015 at 10:02:03AM +0200, Javier Martinez Canillas wrote: > Hello Andrei, > > On 08/10/2015 01:01 AM, Andrei Gherzan wrote: > > Cheers! > > > > First of all good work. Additionally to the comments I made in patches, find > > some here. > > > > Thanks a lot. > > > On Thu, Aug 06, 201

Re: [yocto] [meta-raspberrypi][PATCH 4/5] linux-raspberrypi: Add a 4.1 linux kernel with vc4 support

2015-08-10 Thread Andrei Gherzan
On Mon, Aug 10, 2015 at 09:59:30AM +0200, Javier Martinez Canillas wrote: > Hello Andrei, > > On 08/10/2015 12:54 AM, Andrei Gherzan wrote: > > Hi, > > > > On Thu, Jul 30, 2015 at 10:34:10AM +0200, Javier Martinez Canillas wrote: > >> From: Derek Foreman > >> > >> This adds Eric Anholt's WIP kerne

Re: [yocto] [meta-raspberrypi][PATCH 2/2] README: Add extra iformation on creating/sending patches using git

2015-08-10 Thread Andrei Gherzan
Hello, On Mon, Aug 10, 2015 at 12:52:47AM -0700, Khem Raj wrote: > Current instructions could be improvised to help user in creating > properly formatted patches with some command help on git format-patch > and git send-email > > Signed-off-by: Khem Raj > --- > README | 11 --- > 1 file

Re: [yocto] [meta-raspberrypi][PATCH 0/5] Add support for 4.1 kernel with vc4 DRM/KMS driver

2015-08-10 Thread Javier Martinez Canillas
Hello Andrei, On 08/10/2015 11:34 PM, Andrei Gherzan wrote: > On Mon, Aug 10, 2015 at 10:02:03AM +0200, Javier Martinez Canillas wrote: [snip] > >>> >>> That would definitely be the preferate way but would involve some additional >>> work in tracking the patches. So, as an initial state, I a

Re: [yocto] [meta-raspberrypi][PATCH] firmware.inc: fetch from SVN instead of Git

2015-08-10 Thread Andrei Gherzan
On Mon, Aug 10, 2015 at 01:03:57AM -0700, Khem Raj wrote: > On Sun, Aug 9, 2015 at 4:57 PM, Andrei Gherzan wrote: > > Hi, > > > > On Mon, Jul 20, 2015 at 09:59:30AM -0600, Gary Thomas wrote: > >> On 2015-07-19 15:34, Andrei Gherzan wrote: > >> >Hello, > >> > > >> >-- > >> >Andrei Gherzan > >> > >

Re: [yocto] [meta-raspberrypi][PATCH 0/5] Add support for 4.1 kernel with vc4 DRM/KMS driver

2015-08-10 Thread Andrei Gherzan
Hi, On Mon, Aug 10, 2015 at 11:54:13PM +0200, Javier Martinez Canillas wrote: > Hello Andrei, > > On 08/10/2015 11:34 PM, Andrei Gherzan wrote: > > On Mon, Aug 10, 2015 at 10:02:03AM +0200, Javier Martinez Canillas wrote: > > [snip] > > > > >>> > >>> That would definitely be the preferate way

Re: [yocto] [meta-raspberrypi][PATCH 1/2] linux-raspberrypi: Update kernel to 3.18.16

2015-08-10 Thread Andreas Müller
On Mon, Aug 10, 2015 at 1:08 PM, Alex J Lennon wrote: > This requires some changes to KERNEL_DEVICETREE as the dtb > layout has changed to support overlays. This change also > makes us ready to support kernel 4.x series > > Signed-off-by: Alex J Lennon > --- > conf/machine/include/rpi-base.inc

[yocto] [meta-darwin][PATCH] README: steps to create OSX-sdk.zip

2015-08-10 Thread Juro Bystricky
osx-runtime requires the file OSX-sdk.zip. This file must be created by the user. This patch describes the typical steps to create this file using a Mac computer. Signed-off-by: Juro Bystricky --- README | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) diff --gi

Re: [yocto] [meta-selinux][PATCHv2 0/8] Label file system in build.

2015-08-10 Thread Philip Tricca
Hey Joe, On 08/08/2015 02:00 PM, Joe MacDonald wrote: > I'm sorry this has been in the merge queue for so long. Better late than never :) > I've merged it > after taking the policy updates from Shrikant and a few other small > patches that had been hanging around too. I didn't drop it on master

Re: [yocto] [meta-selinux][PATCH v1] libpam: use wildcard for version and cleanup

2015-08-10 Thread Philip Tricca
Hey Shrikant, On 07/30/2015 02:31 AM, Shrikant Bobade wrote: > This patch provides green build for core-image-selinux > (meta-selinux:master & poky:master) against libpam upgrade from 1.1.6 to > 1.2.1, > image boots fine,but I am unable to login at target. I have prepared > build for qemuarm, does

[yocto] [meta-selinux] [PATCH] audit: remove add-system-call-table-for-ARM.patch

2015-08-10 Thread Robert Yang
There isn't lib/machinetabs.h any more, there isn't data structures like "static const char machine_strings", either. This fixed a do_patch error when arm. Signed-off-by: Robert Yang --- .../audit/add-system-call-table-for-ARM.patch | 46 recipes-security/audit/audit

Re: [yocto] [meta-selinux][PATCHv2 0/8] Label file system in build.

2015-08-10 Thread Philip Tricca
On 08/10/2015 09:10 PM, Philip Tricca wrote: > On 08/08/2015 02:00 PM, Joe MacDonald wrote: >> I'm sorry this has been in the merge queue for so long. > > Better late than never :) > >> I've merged it >> after taking the policy updates from Shrikant and a few other small >> patches that had been

Re: [yocto] Header-Files of DEPEND recipe not found

2015-08-10 Thread yocto yocto
But not within CMakeLists.txt? At least this is not working, cmake is handling "=" as a normal character. I guess I have to pass a parameter within my *.bb to cmake containing the sysroot path 2015-08-10 22:36 GMT+02:00 Khem Raj : > On Mon, Aug 10, 2015 at 12:08 PM, yocto yocto > wrote: > > SET(