Re: [yocto] [PATCH] Documentation improvements for gitsm:// fetcher

2014-05-19 Thread Rifenbark, Scott M
I can't apply this patch. It goes beyond the doc files so I need to leave it to Richard to apply. Scott -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto- boun...@yoctoproject.org] On Behalf Of Rifenbark, Scott M Sent: Sunday, May 18, 2014 10:34 PM To: Chris Morgan;

Re: [yocto] [meta-mono] Git push fails. No space left

2014-05-19 Thread Alex J Lennon
On 19/05/2014 02:37, Michael Halstead wrote: Thanks for the heads up Alex! I've added 1.8TB of extra space so we should be set for awhile. Sorry that you weren't able to push. No problem here. Just guessed you would want to know :) I've also fixed the obvious style problems with the

[yocto] Help with qt-gstreamer recipe?

2014-05-19 Thread Neuer User
Hi I need qt-gstreamer in my Qt5 app (because I am having problems with the camera element). I found a yocto recipe from Andrey Telepin and tried to modify it for Qt5. It looks like this: --- LICENSE = GPLv2 LIC_FILES_CHKSUM =

[yocto] Strange certificate problem with wget

2014-05-19 Thread Neuer User
Hello I need to use wget with https support in my image. So I added wget to my packages. The problem is that it doesn't seem to find the installed certificates: # wget https://www.google.com --2014-05-19 11:20:42-- https://www.google.com/ Resolving www.google.com... 173.194.113.242,

Re: [yocto] Strange certificate problem with wget

2014-05-19 Thread Burton, Ross
On 19 May 2014 10:25, Neuer User auslands...@gmx.de wrote: I need to use wget with https support in my image. So I added wget to my packages. The problem is that it doesn't seem to find the installed certificates: By installed certificates you mean that you installed ca-certificates into the

Re: [yocto] [PATCH] Documentation improvements for gitsm:// fetcher

2014-05-19 Thread Chris Morgan
On Mon, May 19, 2014 at 1:34 AM, Rifenbark, Scott M scott.m.rifenb...@intel.com wrote: Hi, This patch is not coming across to me intact. The process I use for patches is to take the attachment from my Thunderbird account and save it as an .EML file. Then, I mail that .EML file to my Linux

Re: [yocto] [PATCH] Documentation improvements for gitsm:// fetcher

2014-05-19 Thread Richard Purdie
On Mon, 2014-05-19 at 06:42 -0400, Chris Morgan wrote: On Mon, May 19, 2014 at 1:34 AM, Rifenbark, Scott M scott.m.rifenb...@intel.com wrote: Hi, This patch is not coming across to me intact. The process I use for patches is to take the attachment from my Thunderbird account and save

Re: [yocto] git.py support for submodules

2014-05-19 Thread Richard Purdie
On Sat, 2014-05-17 at 13:19 -0700, Christopher Larson wrote: On Saturday, May 17, 2014, Chris Morgan chmor...@gmail.com wrote: On May 17, 2014 3:58 PM, Christopher Larson clar...@kergoth.com wrote: On Saturday, May 17, 2014,

Re: [yocto] Strange certificate problem with wget

2014-05-19 Thread Paul Barker
On 19 May 2014 10:35, Neuer User auslands...@gmx.de wrote: Am 19.05.2014 11:32, schrieb Burton, Ross: On 19 May 2014 10:25, Neuer User auslands...@gmx.de wrote: I need to use wget with https support in my image. So I added wget to my packages. The problem is that it doesn't seem to find the

Re: [yocto] Strange certificate problem with wget

2014-05-19 Thread Neuer User
Am 19.05.2014 12:56, schrieb Paul Barker: On 19 May 2014 10:35, Neuer User auslands...@gmx.de wrote: Am 19.05.2014 11:32, schrieb Burton, Ross: On 19 May 2014 10:25, Neuer User auslands...@gmx.de wrote: I need to use wget with https support in my image. So I added wget to my packages. The

Re: [yocto] Question / issue

2014-05-19 Thread Stefano Babic
Hi Paul, sorry for late answer - I read only now you are talking about FIT. On 09/05/2014 16:44, Bruce Ashfield wrote: My first question is, is there a better place to be making the FIT image? It depends on if everything you need to construct the FIT image is in the kernel's build

Re: [yocto] my recent change to the dylan branch of meta-darwin

2014-05-19 Thread Woodyatt, James
Richard, et al— Ping? I’m working on this, but it would help to know whether I should prepare a patch against the current (bad) head of branch or if I should prepare a patch against the previous revision? — james woodyatt james.woody...@intel.com Software Architect, New Devices Group On May

[yocto] Welcome Lynn Cyrin, OPW intern.

2014-05-19 Thread Flanagan, Elizabeth
All, I am pleased to introduce our new Gnome Foundation Outreach Program for Women Intern, Lynn Cyrin. Lynn is a computer science student and Dean's Scholar at Mills College. Her academic history includes studying Materials Science and Engineering at Drexel University and Astronautical

[yocto] Can't boot poky-tiny in qemu

2014-05-19 Thread Matt Schuckmann
I'm trying to come to grips with Yocto and poky and a minimal image so I'm trying to build boot and modify poky-tiny and having no luck booting it in qemu. I'm following instructions here https://wiki.yoctoproject.org/wiki/Poky-Tiny#Some_information_about_the_running_system but when I run the

[yocto] [PATCH 2/3] SingleBranchScheduler: pass in the properties

2014-05-19 Thread Yin Kangkai
Pass in the properties parsed from config file, otherwise the build triggered will fail because wrong properties. Signed-off-by: Yin Kangkai kangkai@intel.com --- lib/python2.7/site-packages/autobuilder/Autobuilder.py | 1 + 1 file changed, 1 insertion(+) diff --git

[yocto] [PATCH 1/3] SingleBranchScheduler: check each repo but not only the first one

2014-05-19 Thread Yin Kangkai
Without this patch, when you set a SingleBranchScheduler scheduler, code will only check against the first repo in repos list. e.g.: In buildset-config/xxx.conf, I have this: repos: [{'poky': {'repourl':'ssh://ky...@ubi.bj.intel.com:29418/poky', 'bbpriority':'1',

[yocto] [PATCH 3/3] GetDistroVersion: also support clanton distro

2014-05-19 Thread Yin Kangkai
Otherwise, step GetDistroVersion will just fail. Signed-off-by: Yin Kangkai kangkai@intel.com --- lib/python2.7/site-packages/autobuilder/buildsteps/GetDistroVersion.py | 2 ++ 1 file changed, 2 insertions(+) diff --git

Re: [yocto] [PATCH 1/3] SingleBranchScheduler: check each repo but not only the first one

2014-05-19 Thread Yin Kangkai
[up post intentionally] I was trying to setup yocto-autobuilder in my local env, and customize it to my needs (i.e. watch git/gerrit event and only build my images). It is a little bit of struggle for me to make it finally work (due to the fact I am little knowledge to both buildbot and python.)

[linux-yocto] [PATCH 1/7] meta: Add qat (QuickAssist) feature

2014-05-19 Thread Tom Zanussi
Add config items required to enable QuickAssist Technology. Note that this apparently includes disabling PREEMPT, making it incompatible with -rt. Signed-off-by: Tom Zanussi tom.zanu...@linux.intel.com --- meta/cfg/kernel-cache/features/qat/qat.cfg | 9 +

[linux-yocto] [PATCH 0/7] 3.14-rt updates

2014-05-19 Thread Tom Zanussi
This patchest fixes a few problems preventing the intel-core2-32 and intel-corei7-64 BSPs from booting with an -rt kernel: - the QuickAssist config settings from mohonpeak disabled preemption - aufs doesn't work with -rt at all - the preempt-rt kernel type overrides settings needed for live

[linux-yocto] [PATCH 4/7] meta: remove aufs from the preempt-rt ktype

2014-05-19 Thread Tom Zanussi
aufs isn't supported with -rt kernels, so disable it for the preempt-rt ktype. Signed-off-by: Tom Zanussi tom.zanu...@linux.intel.com --- meta/cfg/kernel-cache/ktypes/preempt-rt/preempt-rt.scc | 3 +++ 1 file changed, 3 insertions(+) diff --git

[linux-yocto] [PATCH 2/7] mohonpeak: Replace QAT in mohonpeak.cfg with qat feature

2014-05-19 Thread Tom Zanussi
Remove the QAT configuration from mohonpeak.cfg, as it breaks -rt for everything else, and instead have the mohonpeak standard BSPs use the new qat feature. Note that as defined, the QAT configuration is incompatible with -rt, so it isn't added back to those. Signed-off-by: Tom Zanussi

Re: [linux-yocto] [PATCH 2/7] mohonpeak: Replace QAT in mohonpeak.cfg with qat feature

2014-05-19 Thread Ong, Boon Leong
-Original Message- From: Tom Zanussi [mailto:tom.zanu...@linux.intel.com] Sent: Tuesday, May 20, 2014 5:53 AM To: dvh...@linux.intel.com; Ong, Boon Leong; Ashfield, Bruce (Wind River); linux-yocto@yoctoproject.org Cc: Tom Zanussi Subject: [PATCH 2/7] mohonpeak: Replace QAT in

Re: [linux-yocto] [PATCH 1/7] meta: Add qat (QuickAssist) feature

2014-05-19 Thread Ong, Boon Leong
-Original Message- From: Tom Zanussi [mailto:tom.zanu...@linux.intel.com] Sent: Tuesday, May 20, 2014 5:53 AM To: dvh...@linux.intel.com; Ong, Boon Leong; Ashfield, Bruce (Wind River); linux-yocto@yoctoproject.org Cc: Tom Zanussi Subject: [PATCH 1/7] meta: Add qat (QuickAssist)