Re: [yocto] TUNE_PKGARCH for Microblaze

2013-03-19 Thread Khem Raj
On Mar 19, 2013, at 9:08 PM, Sipke Vriend wrote: > Hi all, > > We are seeking some feedback regarding common practices for defining > TUNE_PKGARCH within Yocto. > usually its dictated by architecture, ABI and other processor features. the current tune files have good ways to express the r

Re: [yocto] Hob and bitbake problem!

2013-03-19 Thread Rudolf Streif
Hi Florin, You will need to look in the log file of the compile task for Qt4 to find out what's going on: see /home/user/poky-danny-8.0/ build/tmp/work/core2-poky-linux/qt4-x11-free-4.8.1-r47. 1/temp/log.do_compile.28027 In the log file you will see the output of qmake and the compiler. :rjs ___

[yocto] Hob and bitbake problem!

2013-03-19 Thread Florin Cristian Dan
Hello, I was trying to make a new image with Hob, a core-image-sato-sdk with the meta-intel layerso, i've added the path for the layer in and changed the machine name to "emenlow", so i kicked the build image proccesafter some time, this happend: Hob cannot build your image Package qt4-

[yocto] TUNE_PKGARCH for Microblaze

2013-03-19 Thread Sipke Vriend
Hi all, We are seeking some feedback regarding common practices for defining TUNE_PKGARCH within Yocto. We need to define a unique TUNE_PKGARCH for the possible configuration of Microblaze architecture. Our proposal is short unique string for each HW feature which is enabled in Microblaze

Re: [yocto] Building uio-pci-generic into core-image-minimal

2013-03-19 Thread David Mulder
> From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] > Sent: Thursday, February 21, 2013 11:53 AM > I've now simply cherry-picked the two patches that came before this plus my > patch from master on top of the 1.3 release tag, and tested the result; > patches are attached. Hi, Paul. Just

Re: [yocto] [meta-meson][PATCH] layer.conf: avoid unnecessary early expansion with :=

2013-03-19 Thread kevin . strasser
> From: Christopher Larson > > bitbake handles immediate expansions of LAYERDIR for us automatically. > > Signed-off-by: Christopher Larson > --- > conf/layer.conf | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/conf/layer.conf b/conf/layer.conf > index 8bd75d8..f4

Re: [yocto] Can't find guile-2.0

2013-03-19 Thread Marc Ferland
"Paul D. DeRocco" writes: >> From: Burton, Ross >> >> On 12 March 2013 18:20, Paul D. DeRocco >> wrote: >> > It says "attempted 145 tasks of which 145 didn't need to be >> > rerun". So it thinks it's already there. >> >> Indeed. Something is breaking - you'll have to mail the whole >> conf

Re: [yocto] [linux-yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
Thank you Bruce, More documentations and scripts for testing and analysis the data will follow. Regards, Insop On Tue, Mar 19, 2013 at 11:41 AM, Bruce Ashfield wrote: > On 13-03-19 07:14 AM, Insop Song wrote: >> >> - run_rt-app.py runs rt-app on the target machine and collects the >>output

Re: [yocto] [linux-yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Bruce Ashfield
On 13-03-19 07:14 AM, Insop Song wrote: - run_rt-app.py runs rt-app on the target machine and collects the output log to host - how to run: $ fab -f run_rt-app.py run_app Note: requires fabric (python program) on the host Signed-off-by: Insop Song --- docs/00-INDEX |4 +-- d

Re: [yocto] [meta-qt3][PATCH] layer.conf: avoid unnecessary early expansion with :=

2013-03-19 Thread Paul Eggleton
On Monday 18 March 2013 19:33:30 Christopher Larson wrote: > From: Christopher Larson > > bitbake handles immediate expansions of LAYERDIR for us automatically. > > Signed-off-by: Christopher Larson > --- > conf/layer.conf | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff

[yocto] [PATCH 7/7] plugins/sdk.ide: Extracted error message to YoctoSDKMessages

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Improved the i18n ability. --- .../org/yocto/sdk/ide/YoctoSDKMessages.properties |1 + .../NewYoctoAutotoolsProjectPostProcess.java |8 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/Yocto

[yocto] [PATCH 6/7] plugins/sdk.ide: Improved usage of strings in class

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Extracted string constants. Added missing NON-NLS-1 declarations. --- .../NewYoctoAutotoolsProjectPostProcess.java | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/wizard/NewYoctoAutotoolsPr

[yocto] [PATCH 5/7] plugins/sdk.ide: Renamed the NewYoctoProjectPostProcess

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Renamed the NewYoctoProjectPostProcess to NewYoctoAutotoolsProjectPostProcess as it is actually relevant for Autotools-based projects. Added a check for the apropriate project nature in the the "process" method of NewYoctoAutotoolsProjectPostProcess. --- plugins/org.yocto.sdk.

[yocto] [PATCH 4/7] plugins/sdk.ide: Switch to YoctoSDKAutotoolsProjectNature

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov The YoctoSDKProjectNature remains the basic nature for all Yocto projects in the IDE. The projects using Autotools (all templates) get the YoctoSDKProjectNature and additionally the YoctoSDKAutotoolsProjectNature. The process NewYoctoCProjectTemplate is adapted accordingly. ---

[yocto] [PATCH 3/7] plugins/sdk.ide: Added a check method for the global target profie

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Added an own method (copied code) in YoctoSDKChecker that checks the validity of the globally selected profile. This method will be used in the next patch and will replace duplicated code. --- .../src/org/yocto/sdk/ide/YoctoSDKChecker.java | 13 + 1 file chan

[yocto] [PATCH 1/7] plugins/sdk.ide: Prepared templates for autotools nature

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Added an extra variable to the templates and the creating process. They are now prepared for a new autotools nature. --- plugins/org.yocto.sdk.ide/plugin.xml |4 .../sdk/ide/wizard/NewYoctoCProjectTemplate.java |3 +++ .../projecttemplates/EmptyCPP

[yocto] [PATCH 2/7] plugins/sdk.ide: Added a new YoctoSDKAutotoolsProjectNature

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov This nature is intended for Yocto projects that use Autotools as a build system. It requires the YoctoSDKProjectNature and will be used by the existing templates. --- .../OSGI-INF/l10n/bundle.properties|1 + plugins/org.yocto.sdk.ide/plugin.xml

[yocto] [eclipse-poky][PATCH 0/7] Introducing a YoctoSDKAutotoolsProjectNature

2013-03-19 Thread Atanas Gegov
From: Atanas Gegov Hi, this patch series does a refactoring in the project natures. It does not add new functionality. In detail, this means the following: Initially, the org.yocto.sdk.ide plugin defined 2 natures: 1/ YoctoSDKProjectNature (every template project has this nature, strongly coupl

[yocto] Minutes: Yocto Project Technical Team Meeting - Tuesday, March 19, 2013 8:00 AM-9:00 AM (UTC-08:00) Pacific Time (US & Canada).

2013-03-19 Thread Saul Wold
Attendees: Saul, MichaelH, MarkH, JeffP, Beth, Richard, KevinS, TomZ, DaveST, JessicaZ, ScottR, Nitin, Corneliu, RossB, PaulE, AlexD, SeanH Notes: * Opens collection - 5 min (Song) * Yocto Project 1.3.1 status - 10 min (Ross) - 1.3.1 has a couple of bugs from QA, but nothing critical - ma

Re: [yocto] Yocto Java support.

2013-03-19 Thread Paul Eggleton
On Tuesday 19 March 2013 17:09:32 Florin Cristian Dan wrote: > Hello, thank you very much for your answer, i will folow your instructions > but i have few more misunderstandings, like...after i do all that steps to > enable the java layer, and burn a new image, how i can develop a java app, > what

Re: [yocto] Yocto Java support.

2013-03-19 Thread Paul Eggleton
On Tuesday 19 March 2013 09:58:43 Florin Cristian Dan wrote: > Ok, so in the last days, i've managest to bake my own sato-emenlow image, > and runed it on my machine wich is a PEB2739 (Intel Atom Z510 based).I'm > intrested now in developing some industrial applications, like different > types of m

Re: [yocto] [meta-xilinx][PATCH] layer.conf: avoid unnecessary early expansion with :=

2013-03-19 Thread Elvis Dowson
applied http://git.yoctoproject.org/cgit/cgit.cgi/meta-xilinx/commit/?id=bbe2cb495fdbfc31eea422021548c0c95401c11a On Mar 19, 2013, at 6:13 AM, Christopher Larson wrote: > From: Christopher Larson > > bitbake handles immediate expansions of LAYERDIR for us automatically. > > Signed-off-by:

Re: [yocto] ti-xdctools fails with yocto 1.3 on ubuntu 64bit

2013-03-19 Thread Paul Eggleton
On Tuesday 19 March 2013 14:49:30 Jürgen Messerer wrote: > I just tried to build an image for the beagleboard with Ti DSP support. > Unfortunately it failed with the message below. > On a 32bit system it worked but on the Ubuntu 12.10 64bit it failed with the > message below. > > Is this beacause

Re: [yocto] perf build breaks in poky master branch

2013-03-19 Thread Maxin B. John
Hi Richard, On Tue, Mar 19, 2013 at 01:27:51PM +, Richard Purdie wrote: > On Tue, 2013-03-19 at 14:06 +0100, Maxin B. John wrote: > > Hi, > >?? > > Perf build fails while trying to build core-image-minimal for qemux86,?? > > $ git clone git://git.yoctoproject.org/poky > > $ cd poky > >

Re: [yocto] perf build breaks in poky master branch

2013-03-19 Thread Tom Zanussi
On Tue, 2013-03-19 at 14:06 +0100, Maxin B. John wrote: > Hi, > > Perf build fails while trying to build core-image-minimal for qemux86, Hi, Richard has just pushed a fix for a thinko in the patch, please pull and try again. Tom > $ git clone git://git.yoctoproject.org/poky > $ cd poky > $ s

[yocto] ti-xdctools fails with yocto 1.3 on ubuntu 64bit

2013-03-19 Thread Jürgen Messerer
Hi everyone. I just tried to build an image for the beagleboard with Ti DSP support. Unfortunately it failed with the message below. On a 32bit system it worked but on the Ubuntu 12.10 64bit it failed with the message below. Is this beacause of the missing ia32-libs? If yes can some one tell me

Re: [yocto] perf build breaks in poky master branch

2013-03-19 Thread Richard Purdie
On Tue, 2013-03-19 at 14:06 +0100, Maxin B. John wrote: > Hi, > > Perf build fails while trying to build core-image-minimal for qemux86, > $ git clone git://git.yoctoproject.org/poky > $ cd poky > $ source oe-init-build-env > $ bitbake core-image-minimal Sorry about this, I merged a patch which

[yocto] perf build breaks in poky master branch

2013-03-19 Thread Maxin B. John
Hi, Perf build fails while trying to build core-image-minimal for qemux86, $ git clone git://git.yoctoproject.org/poky $ cd poky $ source oe-init-build-env $ bitbake core-image-minimal Pseudo is not present but is required, building this first before the main build Loading cache: 100% |##

[yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
- run_rt-app.py runs rt-app on the target machine and collects the output log to host - how to run: $ fab -f run_rt-app.py run_app Note: requires fabric (python program) on the host Signed-off-by: Insop Song --- docs/00-INDEX |4 +-- docs/00-README|6 ++-- scripts/REA

[yocto] [meta-realtime][PATCH 0/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
create a script directory and add a script to run test program and collect data - test scripts will help to run and collect the data, automate the test and re-producible by others - run_rt-app.py runs rt-app on the target machine and collects the output log to host

[yocto] Weekly Test Report for Yocto 1.4 201303133 Build

2013-03-19 Thread Stoicescu, CorneliuX
Hello, Here is the weekly test report for Yocto 1.4: https://wiki.yoctoproject.org/wiki/Weekly_Test_Report_for_Yocto_1.4_201303133_Build If you have any questions or concerns, please contact us by replying to this email. Regards, Stoicescu Cornel Romania Yocto QA __

Re: [yocto] [meta-baryon] [PATCH 0/5] Updates and fixes

2013-03-19 Thread Paul Eggleton
Hi Kevin, On Monday 18 March 2013 18:05:21 Kevin Strasser wrote: > Cc: Paul Eggleton > > The following changes since commit 566cb211cee8a9870257a4ac2fc706990a70b9d2: > > nfs-utils: update bbappend version to 1.2.7 (2013-02-27 15:24:30 +) > > are available in the git repository at: > >

Re: [yocto] [meta-baryon][PATCH] layer.conf: avoid unnecessary early expansion with :=

2013-03-19 Thread Paul Eggleton
On Monday 18 March 2013 18:13:45 Christopher Larson wrote: > From: Christopher Larson > > bitbake handles immediate expansions of LAYERDIR for us automatically. > > Signed-off-by: Christopher Larson > --- > conf/layer.conf | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff

Re: [yocto] remove /usr/share/terminfo

2013-03-19 Thread Hans Beckérus
On Mon, Mar 18, 2013 at 1:13 PM, Hans Beckérus wrote: > This is a continuation of the thread handling removal of /boot/uImage and > terminfo database. The /boot/uImage is solved but I am still having issues > with trying to remove /usr/share/terminfo database. I thought it would be > as easy as ju

[yocto] Hob custom image build error

2013-03-19 Thread Andreas Enbacka
Hello, Whenever I build a custom image in Hob (using Create your own image), I get the following error output once the image build stage is completed: Traceback (most recent call last): File "/home/user/poky/bitbake/lib/bb/ui/crumbs/builder.py", line 1096, in handler_build_succeeded_cb

[yocto] Yocto Java support.

2013-03-19 Thread Florin Cristian Dan
> Hello, > Ok, so in the last days, i've managest to bake my own sato-emenlow image, > and runed it on my machine wich is a PEB2739 (Intel Atom Z510 based).I'm > intrested now in developing some industrial applications, like different > types of masurement gauges. Now i wonder if yocto project has

[yocto] (no subject)

2013-03-19 Thread Florin Cristian Dan
Hello, Ok, so in the last days, i've managest to bake my own sato-emenlow image, and runed it on my machine wich is a PEB2739 (Intel Atom Z510 based).I'm intrested now in developing some industrial applications, like different types of masurement gauges. Now i wonder if yocto project has suport fo