Re: [yocto] [PATCH][yocto-autobuilder] nightly-world-lsb: blacklist qwt

2016-01-28 Thread Burton, Ross
On 28 January 2016 at 17:25, Martin Jansa wrote: > Why not set INSANE_SKIP to make it more specific? > Because I prefer to be harsh instead of silencing errors. Ross -- ___ yocto mailing list yocto@yoctoproject.org

Re: [yocto] Build appliance, qemux86-64, core-image-full-cmdline and ssh

2016-01-28 Thread Nathan Sowatskey
Hi The trick was to go back to the beginning and start with a clean build appliance. Though I had selected the options below, I had tried other options first, and those seemed to be sticking, even after I changed the recipe. Now on to how to get DHCP to work … Apologies Nathan > On 28 Jan

Re: [yocto] Migrate, or not Migrate, that's the question!!!

2016-01-28 Thread Bryan Evenson
Diego, In my opinion, I think in the long term it would be easier to make a clean break. Start with a recent branch, like Jethro, get a minimal image to build for your hardware and then add your own layer with your proprietary recipes. I think that will be a lot easier than trying to get

Re: [yocto] [PATCH][yocto-autobuilder] nightly-world-lsb: blacklist qwt

2016-01-28 Thread Martin Jansa
On Thu, Jan 28, 2016 at 05:07:35PM +, Ross Burton wrote: > qwt (from meta-qt4) doesn't build without errors but gets pulled into world > poky-lsb builds. Until this is fixed, blacklist it. Why not set INSANE_SKIP to make it more specific? > Signed-off-by: Ross Burton

[yocto] [PATCH][yocto-autobuilder] nightly-world-lsb: blacklist qwt

2016-01-28 Thread Ross Burton
qwt (from meta-qt4) doesn't build without errors but gets pulled into world poky-lsb builds. Until this is fixed, blacklist it. Signed-off-by: Ross Burton --- buildset-config.controller/nightly-world-lsb.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[yocto] bitbake git fetcher aborts during do_unpack with UnicodeDecodeError

2016-01-28 Thread Klauer, Daniel
Hello, we're using Yocto (jethro) with some custom recipes that retrieve source code from Git and use AUTOREV, for example: SRC_URI = "git://url/project.git;protocol=ssh" SRCREV = "${AUTOREV}" Building the image with bitbake works on one machine, but fails on another with an error like this

[yocto] Qt5 on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Nathan Sowatskey
Hi I am using the Yocto Build Appliance to build an image using a profile of qemux86-64, and recipe of core-image-full-cmdline. The application I need to run on that image has a dependency on Qt5 libs. It seems that only Qt4 libs are available in the packages on the build appliance. Can

Re: [yocto] Qt5 on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Khem Raj
On Jan 28, 2016 1:24 PM, "Nathan Sowatskey" wrote: > > Hi > > I am using the Yocto Build Appliance to build an image using a profile of qemux86-64, and recipe of core-image-full-cmdline. > > The application I need to run on that image has a dependency on Qt5 libs. > > It seems

Re: [yocto] Image size

2016-01-28 Thread Zielinski, Dave
> On Sat, Jan 23, 2016 at 6:12 AM, Max Sht wrote: > > Hi. > > > > Thank you in advance for your support. > > I'm using Yocto project Linux for the iMX6 CPU and imx6ulevk board. > > > > I think that I have a problem with image size. I've seen the basic > > image for that board

[yocto] sftp-server on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Nathan Sowatskey
Hi I am using the Yocto Build Appliance to build an image using a profile of qemux86-64, and recipe of core-image-full-cmdline. I can, using a redirect, ssh to the VM when running on OSX. I also want to use sftp to copy files to the image. The sftp server is configured in the ssh_config file

Re: [linux-yocto] Plymouth support in yocto

2016-01-28 Thread Burton, Ross
On 28 January 2016 at 18:01, Bryan wrote: >Can we integrate plymouth package in yocto so that we can properly > display splash screen on different resolution monitors. > > http://layers.openembedded.org/layerindex/recipe/39966/ Ross --

Re: [yocto] Diagnosing mishandled dependencies

2016-01-28 Thread Khem Raj
> On Jan 28, 2016, at 8:26 AM, Gary Thomas wrote: > > I have an image recipe which depends on another package/recipe. > When I change one of the files included by that recipe (a script > that gets packaged and is mentioned in SRC_URI), I expect it to > be rebuilt and in turn

Re: [yocto] do_compile fails in Jethro

2016-01-28 Thread Alexandre Freire da Silva Osorio
Khem, Yes, your suggestion solves the problem, I justo don't know why this was not needed in Fido. Thanks for your help! But now I'm facing a new error: > bitbake core-image-lsb ERROR: Function failed: do_rootfs ERROR: Unable to install packages. Computing transaction...warning: Can't

[yocto] Diagnosing mishandled dependencies

2016-01-28 Thread Gary Thomas
I have an image recipe which depends on another package/recipe. When I change one of the files included by that recipe (a script that gets packaged and is mentioned in SRC_URI), I expect it to be rebuilt and in turn the image be rebuilt (I invoke 'bitbake IMAGE') Most of the time, this works

Re: [yocto] do_compile fails in Jethro

2016-01-28 Thread Alexandre Freire da Silva Osorio
Just clarifying , talloc recipe is presente in openembedded (r. 2.1.1) and bitbake talloc returns with no error. -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Alexandre Freire da Silva Osorio Sent: quinta-feira, 28 de

Re: [yocto] extracting SDK for supporting both 32 and 64 bit applications

2016-01-28 Thread Zhenhua Luo
Hi Michael, If you mean the standalone toolchain on host, the 32b and 64b build should be done by different toolchain, you need to install both 32b and 64b toolchain. If you mean the rootfs on target board, you can select a 64b target and add 32b package in corresponding rootfs bb file, e.g.

[linux-yocto] Plymouth support in yocto

2016-01-28 Thread Bryan
Hi, Can we integrate plymouth package in yocto so that we can properly display splash screen on different resolution monitors. Thanks in advance Bryan -- ___ linux-yocto mailing list linux-yocto@yoctoproject.org

Re: [yocto] Qt5 on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Nathan Sowatskey
Many thanks. I just need to figure out how to get the layers onto the Build Appliance now … Regards Nathan > On 28 Jan 2016, at 19:30, Khem Raj wrote: > > > On Jan 28, 2016 1:24 PM, "Nathan Sowatskey" wrote: > > > > Hi > > > > I am using the Yocto

Re: [yocto] sftp-server on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Khem Raj
Look at build of openssh directory there must be a ipk with sftp name. Add that name to IMAGE_INSTALL On Jan 28, 2016 12:52 PM, "Nathan Sowatskey" wrote: > Hi > > I am using the Yocto Build Appliance to build an image using a profile of > qemux86-64, and recipe of

[linux-yocto] dual monitor supprt

2016-01-28 Thread Bryan
Hi, i want pslash during boot with dual monitors. both monitors have different resolution. how can i display psplash properly on both monitors thanks in advance. Brian On Dec 18, 2015 1:10 PM, "Bryan" wrote: -- Forwarded message -- From: "Bryan"

Re: [yocto] Qt5 on qemux86-64 core-image-full-cmdline

2016-01-28 Thread Khem Raj
Clone the repo and add the location to BBLAYERS in conf/bblayers.conf On Jan 28, 2016 1:33 PM, "Nathan Sowatskey" wrote: > Many thanks. I just need to figure out how to get the layers onto the > Build Appliance now … > > Regards > > Nathan > > > On 28 Jan 2016, at 19:30, Khem

Re: [yocto] Syslog Related testcases are failed in yocto LTP

2016-01-28 Thread Yuki Machida
Hi Raghavendra Kakarla, I have the syslog-ng flavour of syslogd. If it exists /sbin/syslogd, it remove this. # rm -rf /sbin/syslogd Then, Please excecute ./runltp. # ./runltp -s syslog LTP will test the syslog(2) by using the syslog-ng. Please refer to the source code below for more

[yocto] Build appliance, qemux86-64, core-image-full-cmdline and ssh

2016-01-28 Thread Nathan Sowatskey
Hi I am using the Yocto Build Appliance to build a image using a profile of qemux86-64, and recipe of core-image-full-cmdline. I then sftp the image to my OSX environment and run it as shown below. That works fine, and I can log in as root. I want to use ssh to connect to the image, but ssh

Re: [yocto] [meta-qt4][PATCH 1/3] qwt: Add recipe.

2016-01-28 Thread Alexander Kanavin
On 01/19/2016 07:24 PM, Philip Balister wrote: * Copied from meta-openembedded/jethro. * Used by GNU Radio. ERROR: QA Issue: File '/usr/lib/libqwtmathml.so.6.0.1' from qwt was already stripped, this will prevent future debugging! [already-stripped] ERROR: QA Issue: File