[yocto] bbappend a "required" bb file

2015-09-25 Thread Allen Curtis
Hello, I am working with a BSP that has multiple image recipes. foo-hwbringup-image.bb foo-qt5demo-image.bb foo-qt5demo-image.bb contains "require foo-hwbringup-image.bb" However if I create foo-hwbringup-image.bbappend, it gets ignored. What are the rules with appending included recipes?

Re: [yocto] [meta-raspberrypi] du giving non-integer result?

2015-09-25 Thread Daniel.
Why not printf? [geckos@csi24 ~]$ echo 1.0 | awk '{ printf("%d\n", $1); }' 1 Cheers, - dhs 2015-09-25 11:12 GMT-03:00 Dave Wolaver : > Michael Fainstein writes: > > > > > I saw such behavior in 'expr' when I upgraded bash 3.1 - it started >

[yocto] Yocto Project Status WW39

2015-09-25 Thread Jolley, Stephen K
Current Dev Position: YP 2.0 Final Next Deadline: 2.0 Cut off: Sept. 28, 2015 noon GMT SWAT team rotation: Paul -> Ross https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: * 'Random' build failures are continuing to cause issues, we're continuing to try and

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Christopher Larson
On Thu, Sep 24, 2015 at 4:18 PM, Allen Curtis wrote: > I am working with a BSP that has multiple image recipes. > > foo-hwbringup-image.bb > foo-qt5demo-image.bb > > foo-qt5demo-image.bb contains "require foo-hwbringup-image.bb" > > However if I create

[yocto] CONFIG_ENV_IS_IN_UBI not working nicely with CONFIG_SPI_FLASH_MTD

2015-09-25 Thread Edward Wingate
I have been using u-boot with CONFIG_SPI_FLASH_MTD. This has allowed me to use MTD/UBI/UBIFS with SPI flash. I now want to use CONFIG_ENV_IS_IN_UBI, but after enabling this, u-boot can't read the environment on start-up: === U-Boot 2015.07 (Sep 24 2015 - 17:10:41 -0700) Model: Zynq Zed

Re: [yocto] Webkit2gtk opengl issue

2015-09-25 Thread Trevor Woerner
On 09/23/15 07:53, Mark O'Donovan wrote: > I am working on an am335x based project, with a webkitgtk > program on the screen, displaying a simple webpage. > > I want to use a standard yocto kernel, which I believe > means I must do without the SGX hardware acceleration > until an open-source

[yocto] GDB with Eclipse *almost* working...

2015-09-25 Thread Bryan Evenson
All, I almost have a full working setup with GDB in Eclipse for debugging remotely on my target hardware, but it's not quite there. Here's what I've done and where I'm at so far: 1. I have a custom image that I build, plus a few userspace applications. I use bitbake at the command line to

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Allen Curtis
> I am working with a BSP that has multiple image recipes. > > foo-hwbringup-image.bb > foo-qt5demo-image.bb > > foo-qt5demo-image.bb contains "require foo-hwbringup-image.bb" > > However if I create foo-hwbringup-image.bbappend, it gets ignored. > > What are the rules with appending included

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Gary Thomas
On 2015-09-25 09:38, Christopher Larson wrote: On Thu, Sep 24, 2015 at 4:18 PM, Allen Curtis > wrote: I am working with a BSP that has multiple image recipes. foo-hwbringup-image.bb

Re: [yocto] GDB with Eclipse *almost* working...

2015-09-25 Thread Bryan Evenson
All, > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto- > boun...@yoctoproject.org] On Behalf Of Bryan Evenson > Sent: Friday, September 25, 2015 12:17 PM > To: yocto@yoctoproject.org > Subject: [yocto] GDB with Eclipse *almost* working... > > All, > > I almost

Re: [yocto] CONFIG_ENV_IS_IN_UBI not working nicely with CONFIG_SPI_FLASH_MTD

2015-09-25 Thread Edward Wingate
I'm sorry, I posted this to the wrong list. Meant to post to u-boot list. On Fri, Sep 25, 2015 at 10:12 AM, Edward Wingate wrote: > I have been using u-boot with CONFIG_SPI_FLASH_MTD. This has allowed > me to use MTD/UBI/UBIFS with SPI flash. I now want to use >

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Christopher Larson
On Fri, Sep 25, 2015 at 10:15 AM, Allen Curtis < allen.cur...@curtisembedded.com> wrote: > I am working with a BSP that has multiple image recipes. >> >> foo-hwbringup-image.bb >> foo-qt5demo-image.bb >> >> foo-qt5demo-image.bb contains "require foo-hwbringup-image.bb" >> >> However if I create

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Allen Curtis
> > > On Fri, Sep 25, 2015 at 10:15 AM, Allen Curtis > wrote: >> I am working with a BSP that has multiple image recipes. >> >> foo-hwbringup-image.bb >> foo-qt5demo-image.bb >> >> foo-qt5demo-image.bb contains "require foo-hwbringup-image.bb" >> >> However

Re: [yocto] bbappend a "required" bb file

2015-09-25 Thread Christopher Larson
On Fri, Sep 25, 2015 at 11:52 AM, Allen Curtis < allen.cur...@curtisembedded.com> wrote: > On Fri, Sep 25, 2015 at 10:15 AM, Allen Curtis < > allen.cur...@curtisembedded.com> wrote: > >> I am working with a BSP that has multiple image recipes. >>> >>> foo-hwbringup-image.bb >>>

[yocto] Overriding bootimg.bbclass behavior

2015-09-25 Thread Paul D. DeRocco
I've been trying to build an image that boots from a USB flash drive that has no persistence, and I've found that the .iso image serves this purpose reasonably well, if processed by isohybrid (part of the syslinux package). It appears that bootimg.bbclass runs isohybrid on the .iso anyway, but in

[yocto] How can i install busybox "mount" command instead of util-linux "mount" command

2015-09-25 Thread Vivek Per
Hi all, Can any one can please tell me how can i install busybox "mount" command instead of util-linux "mount" . By default util-linux "mount" and "umount" commnad is installing . But rest of the commands are installing from busybox like ls,cat and so on. In the final image log file

Re: [yocto] [meta-raspberrypi] du giving non-integer result?

2015-09-25 Thread Dave Wolaver
Michael Fainstein writes: > > I saw such behavior in 'expr' when I upgraded bash 3.1 - it started printing floats instead of integers. > You can solve it using awk's OFMT: awk '{OFMT="%.0f";print $1}' > > Michael > This worked for me, but it needed one small