Re: [yocto] linux/limits.h: No such file or directory

2016-07-11 Thread Takashi Matsuzawa
Hello, thank you for your suggestion. Yes, I was aware of the post, but I was not sure if you came up with a workaround.. In fact, my problem was gone once I physically (not by -c cleansstate, cleanall, etc.) removed SSTATE_CACHE directory. (I think bitbake fails in unclear errors if previous

Re: [yocto] [meta-raspberrypi][PATCH 4/4] sdcard_image-rpi.bbclass: Exclude DATETIME from task stamp

2016-07-11 Thread Khem Raj
On Jul 11, 2016 4:00 PM, "Jonathan Liu" wrote: > > Hi Khem, > > On 24 June 2016 at 07:34, Khem Raj wrote: > > This helps in fixing occasional error seen quite often > > > > ERROR: wpe-image-1.0-r0 do_image_rpi_sdimg: Taskhash mismatch 7ea6b505bb7a2cc5ca03552bcffa verses 3be7cdad8c4532430d9636

Re: [yocto] [meta-raspberrypi][PATCH 4/4] sdcard_image-rpi.bbclass: Exclude DATETIME from task stamp

2016-07-11 Thread Jonathan Liu
Hi Khem, On 24 June 2016 at 07:34, Khem Raj wrote: > This helps in fixing occasional error seen quite often > > ERROR: wpe-image-1.0-r0 do_image_rpi_sdimg: Taskhash mismatch > 7ea6b505bb7a2cc5ca03552bcffa verses 3be7cdad8c4532430d96368c5ca523d4 for > /a/builder/home/kraj/work/oe/meta-metrol

[yocto] [[PATCH][yocto-autobuilder] 1/2] buildbot/steps/transfer.py: Fix typo in DirectoryDownload step.

2016-07-11 Thread Aníbal Limón
DirectoryDownload step is based on UploadDirectory and i miss to upgrade the error log when the buildslave don't support downloadDirectory previously said uploadDirectory. Signed-off-by: Aníbal Limón --- .../site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/transfer.py | 2 +- 1 file chang

[yocto] [[PATCH][yocto-autobuilder] 2/2] buildsteps/RunOeSelftest.py: Set native_lsb to universal

2016-07-11 Thread Aníbal Limón
The error report is generated into AB master and currently we don't have a method to get AB worker distro, so set to universal. Signed-off-by: Aníbal Limón --- lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[yocto] SysVinit scripts not being populated in busybox-mdev package

2016-07-11 Thread Stroz, Glenn
In the busybox.inc recipe include file there are lines where a SysVinit script should be started when the mdev package is installed: INITSCRIPT_PACKAGES = "${PN}-httpd ${PN}-syslog ${PN}-udhcpd ${PN}-mdev ${PN}-hwclock" INITSCRIPT_NAME_${PN}-mdev = "mdev" INITSCRIPT_PARAMS_${PN}-mdev = "start 0

Re: [yocto] [meta-raspberrypi] u-boot doesnt boot kernel

2016-07-11 Thread Daniel.
Hi Hammad, As Paul said the u-boot need some configuration so it can boot the kernel. Usually it looks for bootcmd variable and try to run it so at last this variable need to be setted. User's usually make this one (bootcmd) call a miriad of another commands to retrieve kernel from ftp, or nand, l

[yocto] Qt base font and Qt5.7

2016-07-11 Thread idealsim
Hi i have build an image for an imx6 card with yocto Krogoth and meta Qt5 master to have qt5.7 (especially for chart). To build the image i needed to remove qtbase-font from my conf to remove an error. But now when i deploy an app on the card i have this error : QFontDatabase: Cannot find

Re: [yocto] [libmatchbox][PATCH 0/4] Add xsetting-client in tree + fixes

2016-07-11 Thread Burton, Ross
On 11 July 2016 at 11:51, Jussi Kukkonen wrote: > Add an internal copy of xsettings-client into libmatchbox: it was > never meant to be a shared library. > > Other commits avoid deprecated API use or fix problems found by > modern gcc with -Wall. > Looks good, feel free to push. Ross -- __

[yocto] [libmatchbox][PATCH 4/4] Keep an internal copy of xsettings-client

2016-07-11 Thread Jussi Kukkonen
xsettings-client code was meant to be a copy-and-paste module, not a shared library. Grab a copy from git://anongit.freedesktop.org/xdg/xdg-specs and include it in the sources. Remove the build complications: always build with xsettings. The new files are MIT (old style) licensed: add a COPYING.M

[yocto] [libmatchbox][PATCH 3/4] Remove unused pointer dereferences

2016-07-11 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen --- libmb/mbexp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libmb/mbexp.c b/libmb/mbexp.c index c6e6046..bbe11d0 100644 --- a/libmb/mbexp.c +++ b/libmb/mbexp.c @@ -1369,7 +1369,7 @@ mb_layout_get_geometry (MBLayout *layout, int *width,

[yocto] [libmatchbox][PATCH 1/4] Don't use deprecated XKeycodeToKeysym

2016-07-11 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen --- libmb/mbmenu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libmb/mbmenu.c b/libmb/mbmenu.c index d25397b..5e4106e 100644 --- a/libmb/mbmenu.c +++ b/libmb/mbmenu.c @@ -23,6 +23,8 @@ #include "config.h" #endif +#include + #include "

[yocto] [libmatchbox][PATCH 2/4] Use correct size with memset calls

2016-07-11 Thread Jussi Kukkonen
Found with -Wsizeof-pointer-memaccess. Signed-off-by: Jussi Kukkonen --- libmb/hash.c | 2 +- libmb/mbmenu.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libmb/hash.c b/libmb/hash.c index 0226c7d..a867883 100644 --- a/libmb/hash.c +++ b/libmb/hash.c @@ -75,7 +75,7 @@

[yocto] [libmatchbox][PATCH 0/4] Add xsetting-client in tree + fixes

2016-07-11 Thread Jussi Kukkonen
Add an internal copy of xsettings-client into libmatchbox: it was never meant to be a shared library. Other commits avoid deprecated API use or fix problems found by modern gcc with -Wall. Jussi The following changes since commit 9f7cf8895ae2d39c465c04cc78e918c157420269: tests: link to X11 (

Re: [yocto] Getting USB devices to work on BeagleBoard Black

2016-07-11 Thread Kevin Hao
On Mon, Jul 11, 2016 at 11:55:34AM +0530, shoaib md wrote: > I've managed to build a couple of different recipes for my BeagleBoard > (BeagleBoard Black Rev C), and also had a go at customising it. I think > I've tried core-image-minimal. Could you check if the following patch is applied in your