Re: [yocto] Need clarification on some terms

2013-06-13 Thread Khem Raj
On Jun 12, 2013, at 12:51 PM, Paul D. DeRocco pdero...@ix.netcom.com wrote: Okay, so now there are two stages to each cross-compilation, so there's gcc-cross-initial producing gcc-cross, and also gcc-crosssdk-initial producing gcc-crosssdk. But is the difference between those two pairs that

Re: [yocto] No crosscompiler in Toolchain

2013-06-13 Thread DAMARLA Satya Swaroop
Hi, Any updates on this issue why there is no cross compiler in the toolchain we build... I think this is pretty important unfortunately I am not able to find the cause.. Help is deeply appreciated.. Greets, Satya On Wed, Jun 12, 2013 at 7:12 AM, DAMARLA Satya Swaroop

Re: [yocto] Need clarification on some terms

2013-06-13 Thread Paul D. DeRocco
From: Khem Raj snip Hope that helps Yes, it does. That's an e-mail that will not be deleted. Thanks. -- Ciao, Paul D. DeRocco Paulmailto:pdero...@ix.netcom.com ___ yocto mailing list yocto@yoctoproject.org

Re: [yocto] Yet another LIC_FILES_CHKSUM question

2013-06-13 Thread Hans Beckérus
On Wed, Jun 12, 2013 at 10:38 PM, Flanagan, Elizabeth elizabeth.flana...@intel.com wrote: On Wed, Jun 12, 2013 at 1:06 PM, Hans Beckerus hans.becke...@gmail.com wrote: On 2013-06-12 7:55, Flanagan, Elizabeth wrote: On Wed, Jun 12, 2013 at 6:05 AM, Hans Beckérus hans.becke...@gmail.com

[yocto] recipe using waf installation location

2013-06-13 Thread Katu Txakur
Hi all, I'm creating a recipe for jack2_1.9.9.5.bb. The tarball uses waf to configure, compile and install. It configures and compiles correctly, but in the installation part I get: WARNING: QA Issue: jack2: Files/directories were installed but not shipped /usr/local /usr/local/include

Re: [yocto] recipe using waf installation location

2013-06-13 Thread Burton, Ross
On 13 June 2013 09:55, Katu Txakur katutxaku...@gmail.com wrote: do_configure() { ./waf configure --alsa --debug --clients=128 } I've never used waf, but I expect at this point you need to tell waf what the prefix is. With autoconf this would be --prefix=${prefix}, have a look at the waf

[yocto] [Announcement] meta-cedartrail release for danny-8.0.1 (yocto-1.3.1)

2013-06-13 Thread Haw, Foo Chien
All, We are pleased to announce the release of the meta-cedartrail for danny-8.0.1. This release contains the fix for build error of cedartrail-nopvr configuration. -- Downloads -- Name : cedartrail md5sum : 3e5dbfd6f1d2d99bf90ae1f3e8c9ceba download :

[yocto] Custom recipe kernel 2.6.32 and depmodwrapper

2013-06-13 Thread Javi Roman
Hi! I've found a possible issue with the depmodwrapper (in image.bbclass - do_rootfs) and the old kernel tree 2.6.32. The final rootfs image is not properly populated with the necessary kernel module files for the module-init-tools utility: /lib/modules/kernel-version/ modules.alias

[yocto] [PATCH] Clarified language for the rtc machine feature option

2013-06-13 Thread Bryan Evenson
From: Bryan Evenson beven...@melinkcorp.com The language in the manual on how to disable the rtc machine feature was a little confusing upon first reading. Reworded this section to clarify the author's original intent. Signed-off-by: Bryan Evenson beven...@melinkcorp.com ---

[yocto] [PATCH 5/7] plugins/sdk.ide: Add command to switch the target profile

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de The command can be used in a radio group to switch the target profile of a selected project. Radio items should call this command handing over the name of the target profile as the command's parameter. Signed-off-by: Timo Mueller

[yocto] [PATCH 4/7] plugins/sdk.ide: Remove project context from method names

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de Through the context of the ProjectPreferenceUtil class we can infer that all methods act on project preferences. Having this context information duplicated in the method name is not needed anymore and can be removed to get a cleaner API.

[yocto] [PATCH 1/7] plugins/sdk.ide: Use an internationalized dialog title

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de --- plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoUISetting.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

[yocto] [PATCH 2/7] plugins/sdk.ide: Extract project specific util methods

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de Project specific util methods are moved to a separate util class. This way the general util class will get more concise and other project specific methods can be move to this new util class later. Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de

[yocto] [PATCH 6/7] plugins/sdk.ide: Add profile switch menu to the toolbar

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de If a project with a yocto nature is selected, the toolbar will show a target profile menu which allows the user to switch the used target profile of the project. The content of this menu is dynamically created using the list of globally defined target

[yocto] [PATCH 0/7][eclipse-poky] Add target profile quick switch

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de Hi, if a user wants to change the used target profile of a project he currently has to open the project preferences. This can be tedious if he has to switch the profile often. This is a small addition which allows the user to quickly switch the used

[yocto] [PATCH 3/7] plugins/sdk.ide: Move project specific util methods

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de Move project specific methods to the new util class to allow public usage of theses methods. Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de --- .../preferences/YoctoSDKProjectPropertyPage.java | 121 ++---

[yocto] [PATCH 7/7] plugins/sdk.ide: Add profile switch menu to the project menu

2013-06-13 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de If a project with a yocto nature is selected, the project menu will show a target profile menu which allows the user to switch the used target profile of the project. Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de ---

[yocto] [Announcement] meta-cedartrail release for danny-8.0.1 (yocto-1.3.1)

2013-06-13 Thread Haw, Foo Chien
All, We are pleased to announce the release of the meta-cedartrail for danny-8.0.1. This release contains the fix for build error of cedartrail-nopvr configuration. -- Downloads -- Name : cedartrail md5sum : 3e5dbfd6f1d2d99bf90ae1f3e8c9ceba download :

[yocto] [PATCH] Adapt OutputProcessor to retrieve reader from shell

2013-06-13 Thread Ioana Grigoropol
- adapt code to use IHostShell interface modifyied locally in order to retrieve the same underlying error and output stream Signed-off-by: Ioana Grigoropol ioanax.grigoro...@intel.com --- .../org/yocto/remote/utils/OutputProcessor.java| 10 ++ 1 file changed, 2 insertions(+), 8

[yocto] [Upstream org.eclipse.tm] Add getReader method in IHostShell

2013-06-13 Thread Ioana Grigoropol
- added method in IHostShell to be implemented in TerminalHostShell - this method is already implemented in LocalHostShell upstream Signed-off-by: Ioana Grigoropol ioanax.grigoro...@intel.com --- .../services/dstore/shells/DStoreHostShell.java|7 +++

[yocto] Recompile the recipe everytime

2013-06-13 Thread Rohit2 Jindal
Gentle reminder!!! Hi , Please help me out I am stuck in some issue, actually I want my recipe to do compilation everytime on every run of Bitbake linux-yocto ie can I remove stamping or sstate-cache that it allows me to run compilation everytime on every run of bitbake linux-yocto. I

[yocto] Minutes: Yocto Project 1.5 M1 release readiness meeting

2013-06-13 Thread Liu, Song
Attendees: Saul, Paul, AlexG, ScottR, Jessica, Richard, Denys, Tom, Dave, Beth, Song Minutes: * All high features completed. Webhob has delays, the team is looking into this figuring out how to get it back on track. * No high bugs against M1. Do have routerstation pro BSP issue, Bruce and

Re: [yocto] recipe using waf installation location

2013-06-13 Thread Katu Txakur
Thanks a lot Ross, you are absolutely right. Just that the --prefix in waf it's done in the configure so I now have do_configure() { ./waf configure --prefix=${prefix} --debug --alsa --clients=128 } and it's working. I still get the same warning for /usr/lib/.debug/* files. I guess that the

[yocto] Yocto 1.4: Bad behavior between rm_work and packaging causing failures?

2013-06-13 Thread Jerrod Peach
All, Since upgrading to Yocto 1.4, several people at our organization have noticed a couple of weird build failures related to rm_work and packaging. Here are the two failure scenarios: 1) A user builds package, but bitbake only re-runs the do_pkg_write_rpm task without having run any other

Re: [yocto] yocto with meta-ti

2013-06-13 Thread Denys Dmytriyenko
On Tue, Jun 04, 2013 at 08:58:27AM -0700, mich...@cubic.org wrote: Hi, As a quick hack you can mask out recipes-misc by adding the following line to your conf/local.conf : BBMASK = meta-ti/recipes-misc It seem to mask out everything in meta-ti/recipes-misc. This was a suggestion I

Re: [yocto] yocto with meta-ti

2013-06-13 Thread Denys Dmytriyenko
On Wed, Jun 05, 2013 at 08:05:52AM +0200, Nicolas Dechesne wrote: On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota akki.sah...@gmail.com wrote: * BBMASK ?= .*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/ #BBMASK = meta-ti/recipes-misc meta-oe/recipes-graphics #BBMASK =

[yocto] Building perl with perl-modules

2013-06-13 Thread Kurt Stevens
Hello, I am using the dylan version of poky, and including perl. This builds fine with perl selected in hob, but if I also select the perl-modules item, I get the error message 'nothing rprovides ncurses-libncurses' and the build fails. Thanks, Kurt Stevens

[yocto] Where do image names come from?

2013-06-13 Thread Paul D. DeRocco
Where does the base name of the image files in build/tmp/deploy/images come from? More to the point, if I create my own image recipe in my own layer, what control do I have over the name of the resulting image files? I'd like to be able to create more than one variant, and not have to remember

Re: [yocto] Where do image names come from?

2013-06-13 Thread Khem Raj
On Thu, Jun 13, 2013 at 4:04 PM, Paul D. DeRocco pdero...@ix.netcom.com wrote: Where does the base name of the image files in build/tmp/deploy/images come from? More to the point, if I create my own image recipe in my own layer, what control do I have over the name of the resulting image files?

Re: [yocto] recipe using waf installation location

2013-06-13 Thread Khem Raj
On Thu, Jun 13, 2013 at 1:55 AM, Katu Txakur katutxaku...@gmail.com wrote: I'm creating a recipe for jack2_1.9.9.5.bb. The tarball uses waf to configure, compile and install. It configures and compiles correctly, but in the installation part I get: There is existing recipe in classic OE that

Re: [yocto] [PATCH] dlt-daemon: Fix multiple issues with service files.

2013-06-13 Thread Khem Raj
On Tue, Jun 11, 2013 at 5:00 AM, Noor, Ahsan noor_ah...@mentor.com wrote: +do_install_append() { +# Remove User=genivi option from systemd service files, as we want this to go to default setting +sed -i '/User/d' ${D}/${systemd_unitdir}/system/*.service + +# Install the required

Re: [yocto] [PATCH 1/3] [meta-ivi] portmap: Use systemd service type forking instead of oneshot

2013-06-13 Thread Khem Raj
On Tue, Jun 11, 2013 at 8:30 AM, Shakeel, Muhammad muhammad_shak...@mentor.com wrote: From: Muhammad Shakeel muhammad_shak...@mentor.com portmap is a resident program and we want to start it in background. With service type 'forking' systemd knows that the executable is a daemon. Although in

Re: [yocto] How to get mkfs.ext4 in rootfs package

2013-06-13 Thread Khem Raj
On Tue, Jun 11, 2013 at 10:51 AM, Ben Warren ben.war...@spidercloud.com wrote: I'm using a custom image based on (copy/pasted from) 'kvm_image_minimal', and have added 'e2fsprogs' to the IMAGE_INSTALL string in the image descriptor file. you need to add e2fsprogs-mke2fs

Re: [yocto] gcc enable-languages

2013-06-13 Thread Dat Tran
Anyone know of any clues that will help us? Thanks. Edward Vidal vidal.develone@... writes: Dat Tran dtran11 at gmail.com wrote Hello, I want to add support for FORTRAN in my image. On target gcc -v shows --enable-languages=c,c++ This needs to

Re: [linux-yocto] [PATCH 00/70] New standard/lsi branch - linux-yocto_3.4

2013-06-13 Thread Paul Butler
On Tue, Jun 11, 2013 at 05:48:04PM -0500, Paul Butler wrote: On Tue, Jun 11, 2013 at 02:46:31PM -0400, Bruce Ashfield wrote: On 13-06-10 09:45 PM, Paul Butler wrote: Creating a new branch in linux-yocto_3.4 for tracking LSI BSP changes. Branched from standard/base at commit