Re: [yocto] gtk-play issues

2015-05-14 Thread Burton, Ross
On 14 May 2015 at 15:14, Gary Thomas g...@mlbassoc.com wrote: I'm trying to build on the latest Ubuntu (15.04/x86_64), but have run into a block in ./configure: No package 'gstreamer-video-1.0' found. No package 'gstreamer-pbutils-1.0' found. Does anyone know what package(s) I need to

[yocto] gtk-play issues

2015-05-14 Thread Gary Thomas
I'm having issues with the new media player (gtk-play and gst-play) on my i.MX6 based systems. In order to try and track the problems, I'm trying to build these programs outside of Yocto (so I can hopefully see *how* they are meant to work). Once I can build test on something other than my

Re: [yocto] gtk-play issues

2015-05-14 Thread Burton, Ross
On 14 May 2015 at 15:29, Gary Thomas g...@mlbassoc.com wrote: As I figured. Is there a way to get the pipeline out of gtk-play so I know how it's launching the bits? Read the source, but it really is just the playbin:

Re: [yocto] gtk-play issues

2015-05-14 Thread Gary Thomas
On 2015-05-14 08:22, Burton, Ross wrote: On 14 May 2015 at 15:14, Gary Thomas g...@mlbassoc.com mailto:g...@mlbassoc.com wrote: I'm trying to build on the latest Ubuntu (15.04/x86_64), but have run into a block in ./configure: No package 'gstreamer-video-1.0' found. No

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Smith, Virgil
Change IMAGE_INSTALL += “canlogger” to IMAGE_INSTALL_append = “ canlogger” or possibly better EXTRA_IMAGE_INSTALL_append = “ canlogger” if you're putting this in local.conf, i'm pretty sure the preferred syntax is just: EXTRA_IMAGE_INSTALL = canlogger Yes, I think rday is

Re: [yocto] Using smart within an SDK

2015-05-14 Thread Ash Charles
On Wed, May 13, 2015 at 7:26 PM, ChenQi qi.c...@windriver.com wrote: For the nativesdk part, we can use smart/rpm to manage packages. A long time ago, I tried this out and succeeded. However, for the target part, we cannot do the same thing as the rpm database for the target part is not usable

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Paul Eggleton
On Thursday 14 May 2015 16:34:56 Smith, Virgil wrote: Change IMAGE_INSTALL += “canlogger” to IMAGE_INSTALL_append = “ canlogger” or possibly better EXTRA_IMAGE_INSTALL_append = “ canlogger” if you're putting this in local.conf, i'm pretty sure the preferred syntax

Re: [yocto] gtk-play issues

2015-05-14 Thread Burton, Ross
On 14 May 2015 at 16:27, Gary Thomas g...@mlbassoc.com wrote: Interesting - the version in OE-core is 84 revisions behind the master/HEAD. Should I bother debugging what's in OE-core or see what's up with the latest code? Try updating to the latest commit (and send the patch...). If you

Re: [yocto] gtk-play issues

2015-05-14 Thread Burton, Ross
On 14 May 2015 at 17:29, Gary Thomas g...@mlbassoc.com wrote: BTW, neither gtk-play nor gst-play seem to work correctly with an out-of-the-box qemu that I just built (from master at the time of fido release - rev 515a8b790e08a48aaf64a6b7237e2b39390e35f6) I'm not much of an x86 user - how

Re: [yocto] gtk-play issues

2015-05-14 Thread Gary Thomas
On 2015-05-14 08:39, Burton, Ross wrote: On 14 May 2015 at 15:29, Gary Thomas g...@mlbassoc.com mailto:g...@mlbassoc.com wrote: As I figured. Is there a way to get the pipeline out of gtk-play so I know how it's launching the bits? Read the source, but it really is just the

[yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Oliver
Hello I have the below's simple recipe(starting a script in sysV runlevel 2), but when I add it to the image with IMAGE_INSTALL += canloggerin my local.conf, most of the contents of /etc gets removed/overwritten making the system unbootable. Does someone sees something wrong? #

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Smith, Virgil
This seems to bite a lot of people (myself included). Change IMAGE_INSTALL += “canlogger” to IMAGE_INSTALL_append = “ canlogger” or possibly better EXTRA_IMAGE_INSTALL_append = “ canlogger” += is evaluated immediately during parsing just like = and therefore behaves just like = if the variable

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Gary Thomas
On 2015-05-14 09:27, Oliver wrote: Hello I have the below's simple recipe(starting a script in sysV runlevel 2), but when I add it to the image with IMAGE_INSTALL += canlogger in my local.conf, most of the contents of /etc gets removed/overwritten making the system unbootable. What image

Re: [yocto] gtk-play issues

2015-05-14 Thread Gary Thomas
On 2015-05-14 09:29, Burton, Ross wrote: On 14 May 2015 at 16:27, Gary Thomas g...@mlbassoc.com mailto:g...@mlbassoc.com wrote: Interesting - the version in OE-core is 84 revisions behind the master/HEAD. Should I bother debugging what's in OE-core or see what's up with the latest

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Robert P. J. Day
On Thu, 14 May 2015, Smith, Virgil wrote: This seems to bite a lot of people (myself included). Change IMAGE_INSTALL += “canlogger” to IMAGE_INSTALL_append = “ canlogger” or possibly better EXTRA_IMAGE_INSTALL_append = “ canlogger” if you're putting this in local.conf, i'm pretty

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Robert P. J. Day
On Thu, 14 May 2015, Paul Eggleton wrote: On Thursday 14 May 2015 16:34:56 Smith, Virgil wrote: Change IMAGE_INSTALL += “canlogger” to IMAGE_INSTALL_append = “ canlogger” or possibly better EXTRA_IMAGE_INSTALL_append = “ canlogger” if you're putting this in

Re: [yocto] gtk-play issues

2015-05-14 Thread Gary Thomas
On 2015-05-14 10:31, Burton, Ross wrote: On 14 May 2015 at 17:29, Gary Thomas g...@mlbassoc.com mailto:g...@mlbassoc.com wrote: BTW, neither gtk-play nor gst-play seem to work correctly with an out-of-the-box qemu that I just built (from master at the time of fido release - rev

Re: [yocto] gtk-play issues

2015-05-14 Thread Burton, Ross
On 14 May 2015 at 20:40, Gary Thomas g...@mlbassoc.com wrote: Interesting - gst-play/gtk-play works correctly on this target. Now I have to figure out why it doesn't work on the other systems I tested. Should I submit bugs against the QEMU targets as they get it even more wrong than the

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Oliver
What image are you building? it is a Freescale iMX6 target, the image name is exactly a fsl-image-qt5 with a playground layer You should probably use this line instead CORE_IMAGE_EXTRA_INSTALL = canlogger There is CORE_IMAGE_EXTRA_INSTALL though which you can add to with += (since

Re: [yocto] recipe removing (some)contents of /etc

2015-05-14 Thread Gary Thomas
On 2015-05-14 15:36, Oliver wrote: What image are you building? it is a Freescale iMX6 target, the image name is exactly a fsl-image-qt5 with a playground layer You should probably use this line instead CORE_IMAGE_EXTRA_INSTALL = canlogger There is CORE_IMAGE_EXTRA_INSTALL though

Re: [linux-yocto] Portwell nano-6060 Board - yocto image?

2015-05-14 Thread Saul Wold
On 05/13/2015 10:34 PM, Gerard Bucas wrote: We are having some problems building a yocto image for the Portwell nano-6060 board (Intel Atom E3845) - specifically getting Ethernet working (uses : Intel I210IT controller). We keep on getting a kernel panic when we add the Intel IGB driver (yocto

Re: [yocto] gtk-play issues

2015-05-14 Thread Nikolay Dimitrov
Hi Gary, On 05/14/2015 10:40 PM, Gary Thomas wrote: On 2015-05-14 10:31, Burton, Ross wrote: On 14 May 2015 at 17:29, Gary Thomas g...@mlbassoc.com mailto:g...@mlbassoc.com wrote: BTW, neither gtk-play nor gst-play seem to work correctly with an out-of-the-box qemu that I just built

Re: [yocto] [meta-ti] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-05-14 Thread Brian Hutchinson
On May 14, 2015 6:08 PM, Denys Dmytriyenko de...@denix.org wrote: On Tue, May 12, 2015 at 11:35:20AM -0400, Bruce Ashfield wrote: On 2015-05-12 10:20 AM, Brian Hutchinson wrote: On Mon, May 11, 2015 at 3:06 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 2015-05-11 02:10 PM,

Re: [yocto] [meta-ti] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-05-14 Thread Denys Dmytriyenko
On Tue, May 12, 2015 at 11:35:20AM -0400, Bruce Ashfield wrote: On 2015-05-12 10:20 AM, Brian Hutchinson wrote: On Mon, May 11, 2015 at 3:06 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 2015-05-11 02:10 PM, Brian Hutchinson wrote: On Thu, Apr 30, 2015 at 10:06 AM, Bruce

[yocto] Release Candidate Build for yocto-1.6.3.rc4 now available.

2015-05-14 Thread Poky Build User
A release candidate build for yocto-1.6.3.rc4 is now available at: http://autobuilder.yoctoproject.org/pub/releases/yocto-1.6.3.rc4 Please begin QA on this build as soon as possible. Build hash information: meta-intel : 52d0939a303084e6b90219e5b31b8248173e0c0d meta-fsl-arm :

Re: [yocto] Using smart within an SDK

2015-05-14 Thread ChenQi
On 05/15/2015 02:21 AM, Ash Charles wrote: On Wed, May 13, 2015 at 7:26 PM, ChenQi qi.c...@windriver.com wrote: For the nativesdk part, we can use smart/rpm to manage packages. A long time ago, I tried this out and succeeded. However, for the target part, we cannot do the same thing as the rpm