[yocto] [meta-raspberrypi][PATCH 0/1] gstreamer1.0-plugins-bad: Build eglglessink for Raspberry Pi

2014-06-09 Thread Alex J Lennon
Please see following patch for details Alex J Lennon (1): gstreamer1.0-plugins-bad: Build eglglessink for Raspberry Pi recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.3.bbappend | 1 + 1 file changed, 1 insertion(+) create mode 100644 recipes-multimedia/gstreamer/gstreamer1.0-plugi

[yocto] [meta-raspberrypi][PATCH 1/1] gstreamer1.0-plugins-bad: Build eglglessink for Raspberry Pi

2014-06-09 Thread Alex J Lennon
The eglglessink needs to be built to target the Raspberry Pi or it will seg-fault in use. Autoconf attempts to detect whether to build for RPi but there are some include files needed, the search path to which must be specified. ref: https://github.com/raspberrypi/firmware/issues/34 ref: https:

Re: [yocto] [PATCH] add license file: DMTF

2014-06-09 Thread Martin Jansa
On Mon, Jun 09, 2014 at 12:31:34PM +0800, Yao Xinpan wrote: > hi all > I want to add software which associates with DMTF into rootfs. > There is WARNING as follows when build: > "WARNING: cim-schema: No generic license file exists for: DMTF in any > provider" > > Could add license DMTF into yocto

[yocto] Conditional Configuration Fragments

2014-06-09 Thread Pierre Yves MORDRET
Hello, I really don't know whether this is feasible or not, but I'm trying to build a yocto image (custom image) with conditional configuration fragments. Today I have 2 image type: one for deployment purpose and another for debug purpose. Debug images is only a superset of deployment image with

Re: [yocto] [PATCH 3/3] PublishArtifacts: add md5sums artifact

2014-06-09 Thread Lynn Cyrin
It would. I'll incorporate it when I resend the patch. Lynn Cyrin (http://lynncyrin.me) -Sent from Mobile On Jun 6, 2014 2:06 PM, "Jate S" wrote: > I just grabbed the current master. > > I changed my local conf definition so it would do the MakeImageMD5s. > It creates them inside of the build di

Re: [yocto] Conditional Configuration Fragments

2014-06-09 Thread Bruce Ashfield
On 14-06-09 11:26 AM, Pierre Yves MORDRET wrote: Hello, I really don’t know whether this is feasible or not, but I’m trying to build a yocto image (custom image) with conditional configuration fragments. Today I have 2 image type: one for deployment purpose and another for debug purpose. Debug

[yocto] [Yocto] How to add the same recipe twice?

2014-06-09 Thread Kevyn-Alexandre Paré
Hi, Here what I want to do: - Have 2 different psplash in my image. Here what I have done: - Copy and rename the psplash recipe to psplash-desktop and modify couple of things. Here the warning I'm having: WARNING: The recipe psplash-desktop is trying to install files into a shared area when tho

Re: [yocto] Conditional Configuration Fragments

2014-06-09 Thread Paul Eggleton
On Monday 09 June 2014 12:41:36 Bruce Ashfield wrote: > On 14-06-09 11:26 AM, Pierre Yves MORDRET wrote: > > Hello, > > > > I really don’t know whether this is feasible or not, but I’m trying to > > build a yocto image (custom image) with conditional configuration > > fragments. > > > > Today I h

[yocto] [PATCH 1/3] buildset-config.master/*: change call to MD5 creation

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 The code for MD5 creation is being moved from MakeImageMD5s to PublishArtifacts['md5sums']. This commit changes every file in buildset-config.master that had a call to MakeImageMD5s. Signed-off-by: Lynn 'Cyrin' Conway --- buildset-config.master/build-appliance.conf |4 +

[yocto] [PATCH 2/3] MakeImageMD5s: delete file

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 The functionality of MakeImageMDs is being moved into PublishArtifacts. Since MakeImageMD5s is no longer needed, this commit deletes it. Signed-off-by: Lynn 'Cyrin' Conway --- .../autobuilder/buildsteps/MakeImageMD5s.py| 42 1 file changed, 42 del

[yocto] [PATCH 3/3] PublishArtifacts: add md5sums artifact

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 Added a md5sums artifact into PublishArtifacts Also changed md5sums to generate in the temp/deploy/images directory Signed-off-by: Lynn 'Cyrin' Conway --- .../autobuilder/buildsteps/PublishArtifacts.py |4 1 file changed, 4 insertions(+) diff --git a/lib/python2

[yocto] [PATCH 1/3] buildset-config.master/*: change call to MD5 creation

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 The code for MD5 creation is being moved from MakeImageMD5s to PublishArtifacts['md5sums']. This commit changes every file in buildset-config.master that had a call to MakeImageMD5s. Signed-off-by: Lynn 'Cyrin' Conway --- buildset-config.master/build-appliance.conf |4 +

[yocto] [PATCH 2/3] MakeImageMD5s: delete file

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 The functionality of MakeImageMDs is being moved into PublishArtifacts. Since MakeImageMD5s is no longer needed, this commit deletes it. Signed-off-by: Lynn 'Cyrin' Conway --- .../autobuilder/buildsteps/MakeImageMD5s.py| 42 1 file changed, 42 del

[yocto] [PATCH 3/3] PublishArtifacts: add md5sums artifact

2014-06-09 Thread Lynn 'Cyrin' Conway
REF: Bug ID 6354 Added a md5sums artifact into PublishArtifacts Also changed md5sums to generate in the temp/deploy/images directory - (for real this time!!!) Signed-off-by: Lynn 'Cyrin' Conway --- .../autobuilder/buildsteps/PublishArtifacts.py |4 1 file changed, 4 insertions(+)

Re: [yocto] [PATCH 3/3] PublishArtifacts: add md5sums artifact

2014-06-09 Thread Flanagan, Elizabeth
On Mon, Jun 9, 2014 at 11:51 AM, Lynn 'Cyrin' Conway wrote: > REF: Bug ID 6354 > > Added a md5sums artifact into PublishArtifacts > > Also changed md5sums to generate in the > temp/deploy/images directory - (for real this time!!!) > > Signed-off-by: Lynn 'Cyrin' Conway > --- > .../autobuilder/bu

[yocto] How do I create a recipe for laying down post-build config files?

2014-06-09 Thread Jim Rafert
I'm trying to gather all my post-build tweaks into a recipe that will be built as part of an upper-level layer, so that they are installed after the meta layer is processed. Many of these could be accomplished as part of .bbappend files for the recipes that originally supply the config files, b

[yocto] Why use Yocto?

2014-06-09 Thread Marlon Smith
Hi everyone, I'm developing a product that will run on a custom i.MX6 board and I'm trying to decide whether to use Yocto or Ubuntu (there's a version of Ubuntu packaged for the Wandboard that will run on our board). The board will run our own custom app, and we'll modify the Linux kernel to supp

Re: [yocto] Why use Yocto?

2014-06-09 Thread Philip Balister
On 06/09/2014 03:52 PM, Marlon Smith wrote: > Hi everyone, > > I'm developing a product that will run on a custom i.MX6 board and I'm > trying to decide whether to use Yocto or Ubuntu (there's a version of > Ubuntu packaged for the Wandboard that will run on our board). The > board will run our o

[yocto] Agenda: Yocto Project Technical Team Meeting - Tuesday, June 10, 2014 8:00 AM US Pacific Time

2014-06-09 Thread Jolley, Stephen K
Agenda: * Opens collection - 5 min (Stephen) * Yocto 1.7 status - 5 min (Stephen/team) https://wiki.yoctoproject.org/wiki/Yocto_Project_v1.7_Status https://wiki.yoctoproject.org/wiki/Yocto_1.7_Schedule https://wiki.yoctoproject.org/wiki/Yocto_1.7_Features * SWAT team rotation: Nitin -> Beth

Re: [yocto] [PATCH] add license file: DMTF

2014-06-09 Thread ya...@cn.fujitsu.com
> On Mon, Jun 09, 2014 at 12:31:34PM +0800, Yao Xinpan wrote: > > hi all > > I want to add software which associates with DMTF into rootfs. > > There is WARNING as follows when build: > > "WARNING: cim-schema: No generic license file exists for: DMTF in any > provider" > > > > Could add license D