Re: [yocto] Luajit Compile Error

2014-12-11 Thread Neil.Wu
Hello everyone, I want to add some command in do_rootfs() task, so I add the information in core-image-minimal.bb like following : . . do_rootfs_append() { . . . } . . But ,it always appears the error as this : ERROR: ExpansionError during parsing

[yocto] add files to dirctory in packages-split

2014-12-11 Thread Neil.Wu
Hi all, I want to add some files to the specified directory what in packages-split. How to do it ? Thank you Neil -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] add files to dirctory in packages-split

2014-12-11 Thread Khem Raj
On Dec 11, 2014, at 1:35 AM, neil...@emerson.com wrote: Hi all, I want to add some files to the specified directory what in packages-split. How to do it ? FILES_name-of-package += “/path/to/file Thank you Neil -- ___ yocto

Re: [yocto] [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot

2014-12-11 Thread Maciek Borzecki
On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote: On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote: U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with current machien config will not be directly useable. Update machine config to produce

Re: [yocto] [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot

2014-12-11 Thread Bruce Ashfield
On 12/11/2014 07:05 AM, Maciek Borzecki wrote: On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote: On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote: U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with current machien config will not be directly

Re: [yocto] [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot

2014-12-11 Thread Maciek Borzecki
On czw, 2014-12-11 at 07:14 -0500, Bruce Ashfield wrote: On 12/11/2014 07:05 AM, Maciek Borzecki wrote: On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote: On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote: U-boot 2014.07 in Poky expects a zImage kernel image, thus a

[yocto] [meta-yocto-bsp][PATCH] README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE

2014-12-11 Thread Maciej Borzecki
U-boot 2014.07 defaults to using a gzip compressed kernel image (zImage). A proper change upading KERNEL_IMAGETYPE has already been introduced to beaglebone machine config. This patch updates manual steps to creating a SD card image with proper kernel image name. Signed-off-by: Maciej Borzecki

[yocto] building OpenCV with Qt

2014-12-11 Thread Adriaan Verheij
Hello All, I am trying to build a Linux image for Gumstix (based on gumstix-consol-image) with openCV using Qt. The problem is that findQt4.cmake identifies sysroots/x86_64-linux/usr/bin/qmake2 as the Qt4 source, which causes the wrong .h files to be included, which causes the compiler to

[yocto] [yocto-autobuilder][GIT PULL] autobuilder: Build history modifications

2014-12-11 Thread Bryan Evenson
Below is a pull request for some fixes in enabling build history in the autobuilder. I'm using a pull request this time as one line in the second commit is long enough that it might get truncated in e-mail. The first commit was needed in my testing to enable build history. Before this commit,

Re: [yocto] parallel build of multiple machine/os?

2014-12-11 Thread Mark Hatle
On 12/11/14, 12:55 AM, Mike Looijmans wrote: On 12/10/2014 08:00 PM, Khem Raj wrote: On Dec 10, 2014, at 10:52 AM, Koehler, Yannick (HP Networking) yannick.koeh...@hp.com wrote: Can Yocto build for example in a single bitbake call an image for x86, ppc, arm, others? Or is the call to

[yocto] How to properly add new qemu target + testimage support?

2014-12-11 Thread Robert Berger
Hi, I hacked together a qemu target which supports vexpress-a9. In order to get core-image-minimal -c testimage to work as well I had to cook meta/lib/oeqa/utils/qemurunner.py scripts/runqemu scripts/runqemu-internal This does not seem to be a generic way to do such a thing. What's the

[yocto] How to properly add new qemu target + testimage support?

2014-12-11 Thread gmane
Hi, I hacked together a qemu target which supports vexpress-a9. In order to get core-image-minimal -c testimage to work as well I had to cook meta/lib/oeqa/utils/qemurunner.py scripts/runqemu scripts/runqemu-internal This does not seem to be a generic way to do such a thing. What's the

[yocto] [Yocto Autobuilder][PATCH 1/2] Autobuilder: fix SingleBranchScheduler to look at any repo

2014-12-11 Thread californialsullivan
From: California Sullivan california.l.sulli...@intel.com Previously, it could only look at the repo at the zero index, which was usually poky. If the scheduler's 'repository' field did not match this, the scheduler would immediately exit without being added. This change makes it looks through

[yocto] [Yocto Autobuilder][PATCH 2/2] Autobuilder: add GitPoller ChangeSource for SingleBranchScheduler

2014-12-11 Thread californialsullivan
From: California Sullivan california.l.sulli...@intel.com Previously, PBChangeSource was the only option for changesources. PBChangeSource was not always suitable since the remote repository had to be able to run custom hooks, which isn't always available. This commit adds GitPoller as an option.

Re: [yocto] add files to dirctory in packages-split

2014-12-11 Thread Neil.Wu
Hi Raj, Thank you very much for your reply. I have try to do like you say. I’m compiling the glib-2.0, need to add the link file of one library to glib-2.0 package. So I add the command like following : FILES_${PN} += “${libdir}/libgio-2.0.so” But , it can’t success. Do you know whether need

Re: [yocto] add files to dirctory in packages-split

2014-12-11 Thread Khem Raj
On Dec 11, 2014, at 5:59 PM, neil...@emerson.com wrote: Hi Raj, Thank you very much for your reply. I have try to do like you say. I’m compiling the glib-2.0, need to add the link file of one library to glib-2.0 package. So I add the command like following : FILES_${PN} +=

[yocto] [meta-cgl][PATCH 0/2] pacemaker: upgrade to 1.1.4

2014-12-11 Thread Li xin
patch-1/2 is pacemaker's new depends. patch-2/2 is upgrade pacemaker to 1.1.4. Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com Li xin (2): heartbeat: add new recipe pacemaker: upgrade to version 1.1.4 .../Makefile.am-not-chgrp-in-cross-compile.patch | 41 ++

[yocto] [meta-cgl][PATCH 1/2] heartbeat: add new recipe

2014-12-11 Thread Li xin
Messaging and membership subsystem for High-Availability Linux. Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com --- .../Makefile.am-not-chgrp-in-cross-compile.patch | 41 ++ .../configure.in-Error-and-warning-fix.patch | 157 +

[yocto] [meta-cgl][PATCH 2/2] pacemaker: upgrade to version 1.1.4

2014-12-11 Thread Li xin
Signed-off-by: Li Xin lixin.f...@cn.fujitsu.com --- .../pacemaker/files/kill-stack-protector.patch | 12 -- .../pacemaker-remove-ptest-functionality.patch | 29 - .../recipes-cgl/pacemaker/files/volatiles | 5 - .../pacemaker-1.0.9.1/fix-header-defs-lookup.patch | 16 ---

Re: [yocto] parallel build of multiple machine/os?

2014-12-11 Thread Mike Looijmans
On 12/11/2014 08:42 PM, Mark Hatle wrote: On 12/11/14, 12:55 AM, Mike Looijmans wrote: On 12/10/2014 08:00 PM, Khem Raj wrote: On Dec 10, 2014, at 10:52 AM, Koehler, Yannick (HP Networking) yannick.koeh...@hp.com wrote: Can Yocto build for example in a single bitbake call an image for x86,

Re: [yocto] prelink mklibs problem

2014-12-11 Thread Qiang Yu
Hi Mark, I have used the 81bab23a4661fdaaa859325d6d3603811ecf1849 version prelink to build my image. Prelink run smoothly without output like before, the image is also modified, so the prelink works. My application also run correctly. But how can I make sure the prelink take effect when I start

Re: [yocto] add files to dirctory in packages-split

2014-12-11 Thread Neil.Wu
Hello Raj, Thank you for your help. The problem have solved. Neil From: Khem Raj [mailto:raj.k...@gmail.com] Sent: Friday, December 12, 2014 10:48 AM To: Wu, Neil [CLIMATE/RS/CN] Cc: yocto@yoctoproject.org Subject: Re: [yocto] add files to dirctory in packages-split On Dec 11, 2014, at 5:59 PM,