Re: [yocto] Selecting a specific tuning in an application recipe?

2016-02-12 Thread Stroz, Glenn
Thank you – this worked. Got caught up on the idea of multilib being for libraries only. Using it on binaries worked perfectly. -Glenn From: Khem Raj [mailto:raj.k...@gmail.com] Sent: Thursday, February 11, 2016 9:47 PM To: Stroz, Glenn Cc: yocto@yoctoproject.org Subject: Re: [yocto] Selecting a

Re: [yocto] Yocto/Poky with external linaro toolchain

2016-02-12 Thread Christopher Larson
On Fri, Feb 12, 2016 at 2:47 AM Thomas Kaufmann wrote: > Hi Christopher > > > > thanks for this hint, this prevented a lot of packages from being built. > > However I still face an additional issue. in the last step of > do_populate_sdk, when the sdk is actually supposed to be put together. > > I

Re: [yocto] native tool is not installed before it is used

2016-02-12 Thread Sridhar Pitchai
Thanks. that works. but i am confused :) in the original recipe, i was doing do_autogen "after" configure, assuming do_configure will install all the needed dependencies and i can use those native tools after that. but with your solution (do_configure_prepend, which works), it gives the impre

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Fred Ollinger
My apologies. From: Burton, Ross Sent: Friday, February 12, 2016 9:18 AM To: Fred Ollinger Cc: Nick Leverton; yocto@yoctoproject.org Subject: Re: [yocto] Dropping Debian 7 as supported? On 12 February 2016 at 17:14, Fred Ollinger mailto:fred.ollin...@seescan.co

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 17:14, Fred Ollinger wrote: > So far, I have zero problems, and it would be nice to not see a scary > message telling me to change distros if my distro actually works great. > You must have missed the bit where I said that Debian 8 was being supported, I just wanted to dro

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Fred Ollinger
I run debian right now and it works great. $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description:Debian GNU/Linux 8.3 (jessie) Release:8.3 Codename: jessie I prefer debian over ubuntu: 1. Simpler footprint so it feels more customizable out of the box

[yocto] Yocto Project Status WW07

2016-02-12 Thread Jolley, Stephen K
Current Dev Position: YP 2.1 M3 Next Deadline: YP 2.1 M2 Target release date is February 12, 2016 (Will slip a few weeks.) SWAT team rotation: Juro -> Anibal https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: * We merged a change to python function variable

[yocto] Changing provider/version on target sysroot only

2016-02-12 Thread Jean-René David
Hello, I'm trying to reproduce an existing linux image using yocto. It's a rather old image. I'm fine using the latest stable version of yocto but I need the packages on the target sysroot to match the versions I have in the old image. How do I specifiy a provider/version for a package on the t

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Nick Leverton
On Thursday 11 Feb 2016 14:32:50 Burton, Ross wrote: > On 11 February 2016 at 14:21, Nick Leverton wrote: > > Possibly a little early - Debian 7 will be going onto LTS security support > > for > > two years, starting some time this month. Quoting from > > https://wiki.debian.org/LTS > > Ah yes,

Re: [yocto] How to create do_populate_sysroot_append task

2016-02-12 Thread Vivek Per
I got the solution for the above issue , we can create a custom has given below in the recipe # addtask copy_files_sysroot after do_populate_sysroot before do_package do_copy_files_sysroot() { --- } # I hope this solut

Re: [yocto] native tool is not installed before it is used

2016-02-12 Thread Burton, Ross
On 12 February 2016 at 06:10, Sridhar Pitchai wrote: > I have a recipe, where It need protobuf-c-compiler (natvily) to auto > generate files before it can be compiled. i have added protobuf-c-native in > the DEPENDS list. but the compilation is failling at do_autogen, compiling > the proto-c is n

Re: [yocto] Eclipse IDE plugin failure

2016-02-12 Thread Teodor Madan
You should follow steps from http://www.yoctoproject.org/docs/2.0/dev-manual/dev-manual.html#zip-file-method When following steps use “mars/yocto-2.0” branch instead of “luna/yocto-2.0”. You should apply patch with “git am” after doing git checkout at step 3. i.e. patch should be committed in lo

Re: [yocto] Eclipse IDE plugin failure

2016-02-12 Thread Marius
Thanks Teo, I will give it a go. You should follow steps from http://www.yoctoproject.org/docs/2.0/dev-manual/dev-manual.html#zip-file-method When following steps use “mars/yocto-2.0” branch instead of “luna/yocto-2.0”. You should apply patch with “git am” after doing git checkout at ste

Re: [yocto] Yocto/Poky with external linaro toolchain

2016-02-12 Thread Thomas Kaufmann
Hi Christopher thanks for this hint, this prevented a lot of packages from being built. However I still face an additional issue. in the last step of do_populate_sdk, when the sdk is actually supposed to be put together. I get this output: Collected errors: * satisfy_dependencies_for: Cannot sat

[yocto] Best practice in debugging target software

2016-02-12 Thread Pascal Bach
Hello everybody I'm currently trying to figure out the easiest way to debug an executable on a target. What I ended up is the following approach: 1. Enable Debugfs generation using: `IMAGE_GEN_DEBUGFS = "1"` 2. Switch debug split style to: `PACKAGE_DEBUG_SPLIT_STYLE = "debug-file-directory"` A