[yocto] unsubscribe

2017-01-19 Thread Brad Litterell
unsubscribe -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] Peripheral hardware support

2015-09-10 Thread Brad Litterell
I'd like to include a RFID reader in a Yocto-based project. What is the best way to find devices that have driver support already or that provide open-source drivers suitable for inclusion? Is there a hardware support list for stuff like that somewhere? Thanks, Brad --

[yocto] How to exclude QT Debug libraries from image

2014-02-08 Thread Brad Litterell
I have a package bar that uses qt4-embedded (inherit qt4e). When I include the dbg package for my stuff (bar-dbg) in the image, I also get several hundred MB of QT related debug files that I'm not interested in. All I want to do is run GDB on my code, I don't care to debug into the QT code.

Re: [yocto] Setting PV dynamically in a recipe

2013-12-20 Thread Brad Litterell
in the sstate? (I'd assume not). Is there a meta-list somewhere of what goes in the state hash? ___ From: Martin Jansa [martin.ja...@gmail.com] Sent: Friday, December 20, 2013 1:34 AM To: Brad Litterell Cc: Paul Eggleton; yocto@yoctoproject.org Subject: Re

Re: [yocto] Setting PV dynamically in a recipe

2013-12-20 Thread Brad Litterell
. From: Martin Jansa [martin.ja...@gmail.com] Sent: Friday, December 20, 2013 2:01 AM To: Brad Litterell Cc: Paul Eggleton; yocto@yoctoproject.org Subject: Re: [yocto] Setting PV dynamically in a recipe On Fri, Dec 20, 2013 at 09:39:13AM +, Brad Litterell wrote: I'm using it in a task

Re: [yocto] Setting PV dynamically in a recipe

2013-12-19 Thread Brad Litterell
recipes? Thanks, Brad From: Martin Jansa [martin.ja...@gmail.com] Sent: Wednesday, December 18, 2013 1:36 AM To: Brad Litterell Cc: Paul Eggleton; yocto@yoctoproject.org Subject: Re: [yocto] Setting PV dynamically in a recipe On Wed, Dec 18, 2013 at 01:29

[yocto] Setting PV dynamically in a recipe

2013-12-17 Thread Brad Litterell
Hi, I have a few recipes in my image that represent my own custom code. I would like to generate PV dynamically from my source code, but since the recipe is parsed before the code is extracted from the tarball, that's not easy to do. The Poky reference manual implies this is possible: PV is

Re: [yocto] Setting PV dynamically in a recipe

2013-12-17 Thread Brad Litterell
Martin's subsequent reply is the secret to use PKGV. I didn't know about that variable. Cheers, Brad From: zhenhua@freescale.com [zhenhua@freescale.com] Sent: Tuesday, December 17, 2013 1:41 AM To: Brad Litterell Cc: yocto@yoctoproject.org

Re: [yocto] Question about automatic debug package generation

2013-09-27 Thread Brad Litterell
automatic debug package generation On Fri, Sep 27, 2013 at 12:00 AM, Brad Litterell b...@evidence.commailto:b...@evidence.com wrote: My recipe builds and ships an executable in /foo/bin/fooapp FILES_${PN} += /foo/bin/* WARNING: QA Issue: foo: Files/directories were installed but not shipped /foo

[yocto] Best way to reuse install scripts across multiple recipes?

2013-09-26 Thread Brad Litterell
I'm finding that I use a pattern like this in a number of recipes to install all the files that exist in a particular folder, generally scripts or data files: # copy scripts pushd ${S}/files/bin # note that failure in the exec is not always captured here, so this needs to be

[yocto] Question about automatic debug package generation

2013-09-26 Thread Brad Litterell
My recipe builds and ships an executable in /foo/bin/fooapp FILES_${PN} += /foo/bin/* WARNING: QA Issue: foo: Files/directories were installed but not shipped /foo/bin/.debug /foo/bin/.debug/fooapp This file doesn't appear in the image, but is in the package folder:

Re: [yocto] Bitbake on live (uncommitted) code

2013-09-17 Thread Brad Litterell
From: Paul Eggleton [paul.eggle...@linux.intel.com] Sent: Friday, September 13, 2013 2:55 AM To: Brad Litterell Cc: Chris Larson; yocto@yoctoproject.org Subject: Re: [yocto] Bitbake on live (uncommitted) code On Thursday 12 September 2013 17:23:53 Chris Larson wrote: On Thu

[yocto] QMake externalsrc incompatible?

2013-09-17 Thread Brad Litterell
I have a number of QT components that have qmake style .pro files. In my recipe I inherit both externalsrc qmake2. I'm using qmake2 based on the quicky sample recipe since I don't need X11 or the other GUI libraries. In the bitbake work folder, the generated run.do_configure script resembles

[yocto] Identify Target for a given binary

2013-09-16 Thread Brad Litterell
I'm trying to rebuild uImage into my deploy folder (minimally) and so I tried: bitbake linux-am335x-psp -c clean bitbake linux-am335x-psp This works great for most of my recipes, but for the kernel something odd is happening. I keep getting a uImage with an old date in my deploy folder so it

[yocto] Bitbake on live (uncommitted) code

2013-09-12 Thread Brad Litterell
Hi, I've grown to really appreciate bitbake for compiling code from a myriad of sources, however, what is the recommended course for source I am currently doing live development on? My code base lives in a couple of git repos that do NOT map one-to-one with recipes and I don't really want to

[yocto] How to customize a file coming from another recipe?

2013-09-11 Thread Brad Litterell
I'm building w/the Arago distribution which contains lighttpd for a web server. I include this in my image as follows: IMAGE_INSTALL = packagegroup-core-boot \ ... lighttpd lighttpd-module-cgi lighttpd-module-compress lighttpd-module-expire \ ... This installs a default configuration file for

[yocto] How to customize a file coming from another recipe?

2013-09-11 Thread Brad Litterell
I'm building w/the Arago distribution which contains lighttpd for a web server. I include this in my image as follows: IMAGE_INSTALL = packagegroup-core-boot \ ... lighttpd lighttpd-module-cgi lighttpd-module-compress lighttpd-module-expire \ ... This installs a default configuration file for

Re: [yocto] What are _virtual providers? and other Suffixes?

2013-08-21 Thread Brad Litterell
Paul, thanks so much! On Aug 21, 2013, at 7:26 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: Hi Brad, On Tuesday 20 August 2013 23:42:36 Brad Litterell wrote: Thanks - that makes it clearer. But now I have one other question to ask: if virtual/xyz is added to overrides when

Re: [yocto] What are _virtual providers? and other Suffixes?

2013-08-20 Thread Brad Litterell
? Do I have it right? Thanks, Brad On Aug 20, 2013, at 3:27 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: Hi Brad, On Monday 19 August 2013 22:51:04 Brad Litterell wrote: I searched the Yocto Mega Manual, but am still somewhat mystified by the suffix formatting of various variable

Re: [yocto] What are _virtual providers? and other Suffixes?

2013-08-20 Thread Brad Litterell
values in overrides, whereas car is last, but less specific. Thanks sorry if I'm missing something simple. Brad On Aug 20, 2013, at 4:33 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Tuesday 20 August 2013 23:16:56 Brad Litterell wrote: Thanks for taking the time to explain, very

[yocto] What are _virtual providers? and other Suffixes?

2013-08-19 Thread Brad Litterell
I searched the Yocto Mega Manual, but am still somewhat mystified by the suffix formatting of various variable - especially virtual ones like this: PREFERRED_PROVIDER_virtual/gettext = gettext PREFERRED_PROVIDER_virtual/kernel_am335x-evm = linux-ti-staging

[yocto] Is there a recipe class that simply installs files to the target?

2013-08-13 Thread Brad Litterell
I have some scripts I'd like to copy to the target to a simple folder, e.g. /lib/foo Ideally I'd like to just create a simple recipe something like this: SRC_URI = file://lib/foo/foo.shfile:///lib/foo/foo.sh inherit install_only Is there a class like this? It seems like most recipes of

Re: [yocto] Is there a recipe class that simply installs files to the target?

2013-08-13 Thread Brad Litterell
Ok, thanks - mainly wanted to make sure I was following a best practice of sorts. On Aug 13, 2013, at 5:39 PM, Khem Raj raj.k...@gmail.commailto:raj.k...@gmail.com wrote: On Aug 13, 2013, at 5:15 PM, Brad Litterell br...@taser.commailto:br...@taser.com wrote: I have some scripts I'd like