Re: [OE-core] Terminating matchbox window manager leads to DRM lockups

2016-09-27 Thread Shrikant Bobade
Hi, @ping, Please advise further pointers if any. similar thread for this issue & more details @ https://lists.yoctoproject.org/pipermail/meta-freescale/2016-September/019237.html Thanks Shrikant On Thu, Sep 22, 2016 at 2:41 PM, Shrikant Bobade wrote: > Hi, > > @Ping >

Re: [OE-core] Terminating matchbox window manager leads to DRM lockups

2016-09-22 Thread Shrikant Bobade
Hi, @Ping Please advise further pointers if any. Thanks Shrikant On Thu, Aug 25, 2016 at 8:13 PM, srikanth krishnakar wrote: > Hello All, > > I am building latest yocto with core-image-sato and noticed that matchbox > session or its relative apps are using kernel context and eventually these

[OE-core] [PATCH] autogen-native: inherit pkgconfig to fix a build failure

2014-08-25 Thread Shrikant Bobade
From: Shrikant Bobade This patch is to inherit pkgconfig to fix a build failure. Signed-off-by: Christopher Larson Signed-off-by: Shrikant Bobade --- .../autogen/autogen-native_5.18.3.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCH] autoconf: add rdep on perl-module-data-dumper

2014-08-13 Thread Shrikant Bobade
From: Shrikant Bobade This patch adds rdepends on perl-module-data-dumper for autoconf. Signed-off-by: Christopher Larson Signed-off-by: Shrikant Bobade --- meta/recipes-devtools/autoconf/autoconf.inc |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/autoconf

[OE-core] [PATCH] gnupg: Added PACKAGECONFIG[curl]

2014-08-11 Thread Shrikant Bobade
From: Shrikant Bobade gnupg can be built with or without curl. This should be explicitly defined to avoid race between curl and gnupg. Signed-off-by: Mikhail Durnev Signed-off-by: Shrikant Bobade --- meta/recipes-support/gnupg/gnupg_1.4.7.bb |3 +++ 1 file changed, 3 insertions(+) diff

[OE-core] [PATCH] pigz: Add dependency on zlib-native for pigz-native

2014-08-07 Thread Shrikant Bobade
From: Shrikant Bobade When pigz-native and zlib-native are coming from sstate the setscenes might not necessarily run in the expected order. The problem happens when setscene for pigz-native runs before setscene for zlib-native. To fix the issue do_populate_sysroot_setscene[depends] should be

[OE-core] [PATCH] gdk-pixbuf-native: add setscene dep on jpeg-native

2014-08-07 Thread Shrikant Bobade
From: Shrikant Bobade Without this, we can get setscene postinst failure due to libjpeg being unavailable. Signed-off-by: Christopher Larson Signed-off-by: Shrikant Bobade --- meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.30.8.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta

Re: [OE-core] [PATCH] dnsmasq: fix parallel make failure

2014-08-04 Thread Shrikant Bobade
Thanks Richard, Pushing it to oe-devel list.. Thanks Shrikant On Mon, Aug 4, 2014 at 2:24 PM, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Fri, 2014-08-01 at 19:16 +0530, Shrikant Bobade wrote: > > From: Shrikant Bobade > > > > The dnsmasq ta

[OE-core] [PATCH] dnsmasq: fix parallel make failure

2014-08-01 Thread Shrikant Bobade
From: Shrikant Bobade The dnsmasq target depends on .configured and $(objs). .configured does an rm -f *.o. Yet the only thing telling make to build the .configured target before the $(objs) target was the order of the dependencies of the dnsmasq target. We can't rely on that order when do