[yocto] [PATCH 1/4] qemuimagetest: basic function to check bash exists

2012-09-06 Thread Veerabrahmam vr
one test case to check bash command availability on qemu target. Signed-off-by: veerabrahmam --- scripts/qemuimage-tests/systemusage/bash | 53 ++ scripts/qemuimage-tests/tools/bash.sh| 17 + 2 files changed, 70 insertions(+), 0 deletions(-) create

[yocto] [PATCH 2/4] qemuimagetest: add basic function to check enough disk space

2012-09-06 Thread Veerabrahmam vr
one test case to check disk space availability. Signed-off-by: veerabrahmam --- scripts/qemuimage-tests/systemusage/df | 54 scripts/qemuimage-tests/tools/df.sh| 25 +++ 2 files changed, 79 insertions(+), 0 deletions(-) create mode 100755 scr

[yocto] [PATCH 3/4] qemuimagetest: add basic function to check syslogd

2012-09-06 Thread Veerabrahmam vr
one test case to check syslogd is executing on target. Signed-off-by: veerabrahmam --- scripts/qemuimage-tests/systemusage/syslog | 54 scripts/qemuimage-tests/tools/syslog.sh| 17 + 2 files changed, 71 insertions(+), 0 deletions(-) create mode 10075

[yocto] [PATCH 4/4] qemuimagetest: modifying the scenario file as per new test cases

2012-09-06 Thread Veerabrahmam vr
modified scenario files. Signed-off-by: veerabrahmam --- .../scenario/qemuarm/core-image-sato |3 +++ .../scenario/qemuarm/core-image-sato-sdk |3 +++ .../scenario/qemumips/core-image-sato |3 +++ .../scenario/qemumips/core-image-sato-sdk

Re: [yocto] yocto ref manual: confusion between BB_ENV_WHITELIST and BB_ENV_EXTRAWHITE

2012-09-06 Thread Paul Eggleton
On Saturday 10 March 2012 08:59:02 Robert P. J. Day wrote: > from section B.5 of yocto ref manual: > > Tell BitBake to load what you want from the environment into the data > store. You can do so through the BB_ENV_WHITELIST variable. For > example, assume you want to prevent the build system fr

[yocto] [RFC 1/6] documentation/adt-manual: Moved stylesheet parameters to customization file

2012-09-06 Thread mail
From: Timo Mueller Standard stylesheet parameters were moved to the docbook customization file tying them to the docbook stylesheet used. Removing these parameters simplifies the Makefile. Furthermore supporting new output formats can now be achieved by creating a new customization file containi

[yocto] [RFC 0/6][yocto-docs] Add eclipse help generation to build system.

2012-09-06 Thread mail
From: Timo Mueller Hi, before my vacation I've submitted a patch to the eclipse-poky project integrating the documentation into the eclipse IDE. To enable the integration into eclipse I've manually generated eclipse help from the documentation using the eclipse stylesheet provided by docbook. I

[yocto] [RFC 2/6] documentation/adt-manual/adt-manual-eclipse-customization.xsl: Added stylesheet for eclipse help

2012-09-06 Thread mail
From: Timo Mueller This stylesheet uses the eclipse stylesheets of docbook to create eclipse help from this documentation. In addition to simple html files these stylesheets will also create xml files which are needed to integrate the documentation into eclipse (e.g. toc.xml). --- .../adt-manual

[yocto] [RFC 3/6] documentation/Makefile: Added eclipse target for generating eclipse help

2012-09-06 Thread mail
From: Timo Mueller This target will generate eclipse help for the adt-manual using the adt-manual-eclipse-customization.xsl stylesheet. The output will be generated to a separate directory which can be used for integrating the documentation into eclipse. --- documentation/Makefile | 20 ++

[yocto] [RFC 4/6] documentation/template/titlepage.templates.xml: Remove title from pdf template

2012-09-06 Thread mail
From: Timo Mueller The title of a pdf document is part of the image used on the title page. Thus the title defined (e.g. bookinfo.title) in a document should never be used when creating title pages for pdf documents. As other output formats may use the title information to create metadata the tit

[yocto] [RFC 6/6] documentation/Makefile: Added eclipse target to adt-manual documentation

2012-09-06 Thread mail
From: Timo Mueller Eclipse help documents are now created when calling the 'make all' target on the adt-manual. Resulting files are archived into the tarball as well. When calling 'make clean' artefacts of the eclipse documentation build are deleted. --- documentation/Makefile |9 +

[yocto] [RFC 5/6] documentation/adt-manual/adt-manual.xml: Added title to bookinfo

2012-09-06 Thread mail
From: Timo Mueller The title of the document used to create metadata for output formats such as eclipse help. --- documentation/adt-manual/adt-manual.xml |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/documentation/adt-manual/adt-manual.xml b/documentation/adt-manu

[yocto] opengl / libgl / libgles

2012-09-06 Thread Andrei Gherzan
Hello, In DISTRO_FEATURES we have opengl. That is pretty vague and generally we don't want to have mesa on machines where there is no libgl but only gles + egl. For example if we want to compile something that adds a DEPENDS based on DISTRO_FEATURE opengl, this dependency will be added even if the

Re: [yocto] The dependency packages

2012-09-06 Thread Paul Eggleton
On Thursday 23 August 2012 18:55:56 Liu wrote: >I'm watching the dependency graphs generated by "bitbake -g -u depexp > busybox", and I found the most dependncy packages where there are invoked. > But still several ones left I can not find where or which file to invoke > them. >1)

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Paul Eggleton
On Thursday 16 August 2012 00:30:15 Elvis Dowson wrote: > Hi, > I followed these steps to setup and configure icecc and yocto, for > performing a distributed build between two Ubuntu 12.04 64-bit machines, > with one machine configured as the scheduler and daemon, and the other with > only th

Re: [yocto] opengl / libgl / libgles

2012-09-06 Thread Tomas Frydrych
On 06/09/12 11:00, Andrei Gherzan wrote: > Hello, > > In DISTRO_FEATURES we have opengl. That is pretty vague and generally we > don't want to have mesa on machines where there is no libgl but only gles + > egl. For example if we want to compile something that adds a DEPENDS based > on DISTRO_FEAT

Re: [yocto] a question about multilib

2012-09-06 Thread Paul Eggleton
On Wednesday 08 August 2012 05:59:19 Yes Yanus wrote: > I have a question about multilib. I have a layer which is Independent of > meta. this layer include some bb files and some of them are same with bb > files in meta. for example, ncurses_5.7.bb in my layer and ncurses_5.9.bb > in meta. but whe

[yocto] beagleboard: change to xserver-xorg, not -lite

2012-09-06 Thread Ross Burton
Coming up is a patch to change the meta-yocto-bsp beagleboard machine to use xorg-xserver instead of xorg-xserver-lite. The -lite variant was intended to be GLX/DRI-free for systems which don't support GLX but the GLX module is packaged separately so it's simple enough to just not install it. Yi

[yocto] [PATCH] beagleboard: change to xserver-xorg, not -lite

2012-09-06 Thread Ross Burton
The difference is less than 16kb, and for that the extra maintenance of two recipies really isn't worth it. Signed-off-by: Ross Burton --- meta-yocto-bsp/conf/machine/beagleboard.conf |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-yocto-bsp/conf/machine/beagleboa

Re: [yocto] opengl / libgl / libgles

2012-09-06 Thread Burton, Ross
(CCing oe-core, discussion should happen there really) On 6 September 2012 11:00, Andrei Gherzan wrote: > In DISTRO_FEATURES we have opengl. That is pretty vague and generally we > don't want to have mesa on machines where there is no libgl but only gles + > egl. For example if we want to compile

[yocto] [meta-tlk][PATCH] README: add info explaining meta-tlk layer purpose

2012-09-06 Thread Paul Eggleton
Signed-off-by: Paul Eggleton --- meta-tlk/README | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/meta-tlk/README b/meta-tlk/README index 5ff4d3b..07cbd76 100644 --- a/meta-tlk/README +++ b/meta-tlk/README @@ -1,6 +1,9 @@ -meta-autobuilder -=== +meta-t

[yocto] BeagleBone U-boot

2012-09-06 Thread Raul Rosetto Munoz
Hello, I have de mux.h and pinmux.h file for a beaglebone. I want yo know what file the uboot use to configurate de pinmux for beaglebone. I saw that for particular machine this file have a particular name. SOme one can help me to configure de beaglebone mux? Thanks For all Help. -- *Raul R

Re: [yocto] how to add a new environment in poky

2012-09-06 Thread Autif Khan
On Tue, Sep 4, 2012 at 11:15 PM, Wangdawei wrote: > Hi > > I need to add a new environment that LD_LIBRARY_PATH when I use my > own external toolchain . > > I add 1 line in external-toolchain.inc “LD_LIBRARY_PATH =. > "${EXTERNAL_TOOLCHAIN}/i586-target-linux-gnu/lib:"”,but there

Re: [yocto] [meta-baryon] [PATCH 1/2] proftpd: update package to 1.3.4b

2012-09-06 Thread Paul Eggleton
On Monday 06 August 2012 14:05:15 Kevin Strasser wrote: > The contrib directory now contains its own Makefile which is > used during installation. It was required to pass in the DESTDIR > variable. > > Signed-off-by: Kevin Strasser > --- > recipes-extended/proftpd/files/contrib.patch | 25

Re: [yocto] developing with devshell and effect of the bitbake.conf file

2012-09-06 Thread Paul Eggleton
On Thursday 14 June 2012 15:46:51 Rifenbark, Scott M wrote: > I want to throw this out for discussion. I recently was looking at a > section in the YP Reference manual > (http://www.yoctoproject.org/docs/current/poky-ref-manual/poky-ref-manual.h > tml#platdev-appdev-devshell) where it talks about

Re: [yocto] yocto ref manual: confusion between BB_ENV_WHITELIST and BB_ENV_EXTRAWHITE

2012-09-06 Thread Scott Rifenbark
I changed the variable from BB_ENV_WHITELIST in the description to BB_ENV_EXTRAWHITE to make sense with the given example. You can see the change at http://www.yoctoproject.org/docs/1.3/poky-ref-manual/poky-ref-manual.html#ref-bitbake-runtask. Scott On 9/6/2012 1:41 AM, Paul Eggleton wrote:

Re: [yocto] [RFC 0/6][yocto-docs] Add eclipse help generation to build system.

2012-09-06 Thread Rifenbark, Scott M
Hi Timo, Thanks for the patches here. I need to be sure that these patches are based on the most recent documentation files found in the yocto-docs/master branch, which is at http://git.yoctoproject.org/cgit/cgit.cgi/yocto-docs/log/. Can you confirm this for me? Thanks, Scott -Origina

Re: [yocto] [RFC 0/6][yocto-docs] Add eclipse help generation to build system.

2012-09-06 Thread Timo Müller
Hi Scott, Rifenbark, Scott M wrote, On 06.09.2012 16:50: Hi Timo, Thanks for the patches here. I need to be sure that these patches are based on the most recent documentation files found in the yocto-docs/master branch, which is at http://git.yoctoproject.org/cgit/cgit.cgi/yocto-docs/log/.

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Elvis Dowson
Hi, On Sep 4, 2012, at 6:25 AM, Trevor Woerner wrote: > I was playing around with the meta-xilinx layer and tried to build > "core-image-minimal" for the spartan6 without success. I was wondering > if anyone has tried this lately and/or if anyone has any tips to > suggest? Can you please

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Elvis Dowson
Hi Paul, On Sep 6, 2012, at 2:17 PM, Paul Eggleton wrote: > Elvis, did you have any further luck with this? Unfortunately no. I've got two machines, both with quad-core intel i7 processors, but I just couldn't get icecc to work with yocto. I end up regularly perform fresh builds at least 5 to

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Paul Eggleton
On Thursday 06 September 2012 19:23:53 Elvis Dowson wrote: > Unfortunately no. I've got two machines, both with quad-core intel i7 > processors, but I just couldn't get icecc to work with yocto. I end up > regularly perform fresh builds at least 5 to 6 times a day, and it takes me > 2 hours to buil

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Gary Thomas
On 2012-09-06 09:29, Paul Eggleton wrote: On Thursday 06 September 2012 19:23:53 Elvis Dowson wrote: Unfortunately no. I've got two machines, both with quad-core intel i7 processors, but I just couldn't get icecc to work with yocto. I end up regularly perform fresh builds at least 5 to 6 times a

Re: [yocto] [meta-tlk][PATCH] README: add info explaining meta-tlk layer purpose

2012-09-06 Thread Tom Zanussi
On Thu, 2012-09-06 at 14:11 +0100, Paul Eggleton wrote: > Signed-off-by: Paul Eggleton Pulled into meta-intel/master, thanks. Tom > --- > meta-tlk/README | 11 +++ > 1 file changed, 7 insertions(+), 4 deletions(-) > > diff --git a/meta-tlk/README b/meta-tlk/README > index 5ff4d3b..0

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Paul Eggleton
On Thursday 06 September 2012 09:33:26 Gary Thomas wrote: > On 2012-09-06 09:29, Paul Eggleton wrote: > > On Thursday 06 September 2012 19:23:53 Elvis Dowson wrote: > >> Unfortunately no. I've got two machines, both with quad-core intel i7 > >> processors, but I just couldn't get icecc to work with

[yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Chris Conlon
Hi, As per discussions with a few of the Yocto members, we have put together a Yocto Project recipe for the CyaSSL embedded SSL library. I have attached the recipe here for review and comments. Thanks, Chris Conlon www.yassl.com ch...@yassl.com Skype: chris_conlon_07 +1 406 209 0601 cyassl

[yocto] Where is PREFERRED_VERSION_linux-yocto_qemux86 used?

2012-09-06 Thread James Macon
Inside of poky.conf there is a variable PREFERRED_VERSION_linux-yocto_qemux86 ?= "3.0%" I assume linux-yocto is the package name and qemux86 is the machine name. I can't find where any references PREFERRED_VERSION_linux-yocto_qemux86 are in the build. It is probably the result of multiple app

Re: [yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Kamble, Nitin A
And here is bit of information about CyaSSL from their website. http://www.yassl.com/yaSSL/Products-cyassl.html The CyaSSL embedded SSL library is a lightweight SSL library written in ANSI C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and featur

Re: [yocto] Procedure to setup icecc for performing a distributed build

2012-09-06 Thread Elvis Dowson
Hi Gary, On Sep 6, 2012, at 7:31 PM, Gary Thomas wrote: > On 2012-09-06 09:23, Elvis Dowson wrote: >> >> Unfortunately no. I've got two machines, both with quad-core intel i7 >> processors, but I just couldn't >> get icecc to work with yocto. I end up regularly perform fresh builds at >> least

[yocto] [PATCH 0/1] [meta-intel] Crystal Forest BSP Created.

2012-09-06 Thread kishore . k . bodke
From: Kishore Bodke This is the Initial Checkin for the new Crystal Forest BSP. This BSP has two versions of platform. 1. Stargo Platform is based on Intel Sandy Bridge Gladden Processor,plus the Cave Creek chipset. 2. Shumway Platform is based on two Intel Sandy Bridge (SNB-EP ES2 Grade and SN

[yocto] [PATCH 1/1] [meta-intel] meta-crystalforest: Crystal Forest BSP Created.

2012-09-06 Thread kishore . k . bodke
From: Kishore Bodke Initial checkin for the new Crystal Forest BSP. This BSP is based on Sandybridge CPU and Cave Creek Chipset. Signed-off-by: Kishore Bodke --- meta-crystalforest/COPYING.MIT | 17 +++ meta-crystalforest/README | 139 +++

Re: [yocto] Where is PREFERRED_VERSION_linux-yocto_qemux86 used?

2012-09-06 Thread Chris Tapp
On 6 Sep 2012, at 17:29, James Macon wrote: > Inside of poky.conf there is a variable PREFERRED_VERSION_linux-yocto_qemux86 > ?= "3.0%" > > I assume linux-yocto is the package name and qemux86 is the machine name. > > I can't find where any references PREFERRED_VERSION_linux-yocto_qemux86 a

[yocto] ERROR: Nothing RPROVIDES 'libsegfault'

2012-09-06 Thread Evade Flow
quot; MACHINE = "vexpressa9" DISTRO= "poky-ivi-systemd" DISTRO_VERSION= "E-0.2+snapshot-20120906" TUNE_FEATURES = "armv7a vfp neon cortexa9" TARGET_FPU= "vfp-neon" meta meta-yocto= "master:0f55a5868457300a3defc7fa

Re: [yocto] ERROR: Nothing RPROVIDES 'libsegfault'

2012-09-06 Thread Florin Sarbu
ached, 1 parsed). 1159 targets, 39 skipped, 0 masked, 0 errors. Build Configuration: BB_VERSION= "1.15.3" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "vexpressa9" DISTRO= "poky-ivi-systemd&

Re: [yocto] ERROR: Nothing RPROVIDES 'libsegfault'

2012-09-06 Thread Evade Flow
;> Parsing of 858 .bb files complete (857 cached, 1 parsed). 1159 >> targets, 39 skipped, 0 masked, 0 errors. >> >> Build Configuration: >> BB_VERSION= "1.15.3" >> TARGET_ARCH = "arm" >> TARGET_OS = "linu

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Trevor Woerner
Hi Elvis, Thanks so much for taking a look at my email! I've read through lots of this mailing list's history and noticed all your meta-xilinx work in the past and was hoping I could pique your interest :-) On Thu, Sep 6, 2012 at 11:19 AM, Elvis Dowson wrote: > Can you please list which version

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Philip Balister
On 09/06/2012 04:11 PM, Trevor Woerner wrote: Hi Elvis, Thanks so much for taking a look at my email! I've read through lots of this mailing list's history and noticed all your meta-xilinx work in the past and was hoping I could pique your interest :-) On Thu, Sep 6, 2012 at 11:19 AM, Elvis Dow

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Trevor Woerner
Hi Philip, On Thu, Sep 6, 2012 at 5:06 PM, Philip Balister wrote: > Speaking of zynq, I have a simple BSP here for the zc702 board: > https://github.com/balister/meta-zynq Thanks. I found your layer from the layer index page: http://www.openembedded.org/wiki/LayerIndex although I haven't tried

Re: [yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Chris Conlon
Adding a direct link to the CyaSSL recipe file for review: www.yassl.com/files/yocto/cyassl_2.3.0.bb Best Regards, Chris On Sep 6, 2012, at 10:32 AM, Kamble, Nitin A wrote: > And here is bit of information about CyaSSL from their website. > http://www.yassl.com/yaSSL/Products-cyassl.html > >

Re: [yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Saul Wold
On 09/06/2012 02:59 PM, Chris Conlon wrote: Adding a direct link to the CyaSSL recipe file for review: www.yassl.com/files/yocto/cyassl_2.3.0.bb Chris, On initial inspection of this recipe it looks OK, what package/libraries does it provide?

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Bruce Ashfield
On 12-09-06 5:06 PM, Philip Balister wrote: On 09/06/2012 04:11 PM, Trevor Woerner wrote: Hi Elvis, Thanks so much for taking a look at my email! I've read through lots of this mailing list's history and noticed all your meta-xilinx work in the past and was hoping I could pique your interest :-

Re: [yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Chris Conlon
Hi Saul, On Sep 6, 2012, at 4:14 PM, Saul Wold wrote: > On 09/06/2012 02:59 PM, Chris Conlon wrote: >> Adding a direct link to the CyaSSL recipe file for review: >> >> www.yassl.com/files/yocto/cyassl_2.3.0.bb >> >> > Chris, > > On initial ins

Re: [yocto] CyaSSL Yocto Recipe

2012-09-06 Thread Richard Purdie
On Thu, 2012-09-06 at 16:38 -0600, Chris Conlon wrote: > Hi Saul, > > On Sep 6, 2012, at 4:14 PM, Saul Wold wrote: > > > On 09/06/2012 02:59 PM, Chris Conlon wrote: > >> Adding a direct link to the CyaSSL recipe file for review: > >> > >> www.yassl.com/files/yocto/cyassl_2.3.0.bb > >>

[yocto] [PATCH 0/1] Fix X issue on crownbay

2012-09-06 Thread nitin . a . kamble
From: Nitin A Kamble The following changes since commit 66b516f3d3a287eecbf8804b2221bfc27e36db63: README: add info explaining meta-tlk layer purpose (2012-09-06 10:36:02 -0500) are available in the git repository at: git://git.yoctoproject.org/meta-intel-contrib nitin/work http://git.yoct

[yocto] [PATCH 1/1] emgd-driver-bin: Fix package naming issue

2012-09-06 Thread nitin . a . kamble
From: Nitin A Kamble emgd-driver-bin is generating rpm package with name libegl1. This name clashes with a package of mesa-dri recipe. This name clash blocks installation of emgd user land binaries in the image. And due to missing emgd user land components X fails start on BSPs like crownbay. Fi

Re: [yocto] any success with spartan6-lx9mb?

2012-09-06 Thread Elvis Dowson
Hi, On Sep 6, 2012, at 7:19 PM, Elvis Dowson wrote: >> >> issues: >> >> The first problem I encountered was trying to build gcc-cross-initial: >> This target does not support --with-float. >> > > If you look at the tune file, it says TARGET_FPU = "soft", which means > software floating poin

Re: [yocto] ERROR: Nothing RPROVIDES 'libsegfault'

2012-09-06 Thread Florin Sarbu
entries from dependency cache. Parsing recipes...done. Parsing of 858 .bb files complete (857 cached, 1 parsed). 1159 targets, 39 skipped, 0 masked, 0 errors. Build Configuration: BB_VERSION= "1.15.3" TARGET_ARCH = "arm" TARGET_OS = "linux-