[OE-core] [PATCH] image-vmdk.bbclass: Don't force syslinux timeout

2014-02-19 Thread Kyle Russell
Don't force SYSLINUX_TIMEOUT and SYSLINUX_PROMPT if overrides have been defined elsewhere for an image configuration. Signed-off-by: Kyle Russell --- meta/classes/image-vmdk.bbclass |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/image-vmdk.bbclass b

[OE-core] [meta][PATCH] bootchart2: Allocate space on heap for collector chunks

2016-09-25 Thread Kyle Russell
Nicer for embedded devices which may have smaller stack limitations. Signed-off-by: Kyle Russell --- ...llector-Allocate-space-on-heap-for-chunks.patch | 45 ++ .../bootchart2/bootchart2_0.14.8.bb| 1 + 2 files changed, 46 insertions(+) create mode 100644

[OE-core] [PATCH 1/2] pixbufcache: Ensure sysroot dependencies are satisfied

2016-10-11 Thread Kyle Russell
libraries should append to PIXBUFCACHE_SYSROOT_DEPS with their runtime dependencies. Signed-off-by: Kyle Russell --- meta/classes/pixbufcache.bbclass | 14 ++ 1 file changed, 14 insertions(+) diff --git a/meta/classes/pixbufcache.bbclass b/meta/classes/pixbufcache.bbclass index

[OE-core] [PATCH 2/2] librsvg: Add missing pixbufcache dependencies

2016-10-11 Thread Kyle Russell
such file or directory g_module_open() failed for libpixbufloader-svg.so: libXdmcp.so.6: cannot open shared object file: No such file or directory Signed-off-by: Kyle Russell --- meta/recipes-gnome/librsvg/librsvg_2.40.16.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

Re: [OE-core] [PATCH 2/2] librsvg: Add missing pixbufcache dependencies

2016-10-11 Thread Kyle Russell
lures, but we still see lingering failures for pixman and libXdmcp on occasion. If PIXBUFCACHE_SYSROOT_DEPS is supposed to be satisfied another way, I'll be glad to reevaluate. On Tue, Oct 11, 2016 at 10:57 AM, Burton, Ross wrote: > > On 11 October 2016 at 15:17, Kyle Russell wrot

Re: [OE-core] [PATCH 1/2] pixbufcache: Ensure sysroot dependencies are satisfied

2016-10-11 Thread Kyle Russell
be satisfied another way? On Tue, Oct 11, 2016 at 2:29 PM, Martin Jansa wrote: > On Tue, Oct 11, 2016 at 10:17:16AM -0400, Kyle Russell wrote: > > Reverts part of b411085fefc8582d24c172db5f6610705eb44c2f > > > > Makes sure gdk-pixbuf-native populates the sysroot during set

Re: [OE-core] [PATCH 2/2] librsvg: Add missing pixbufcache dependencies

2016-10-14 Thread Kyle Russell
mean the file from tmp/log/cooker//? If I can get it, how would you prefer me send that to you? On Thu, Oct 13, 2016 at 9:09 AM, Burton, Ross wrote: > > On 11 October 2016 at 17:44, Kyle Russell wrote: > >> I suspect this list may still not be entirely complete, because

Re: [OE-core] [PATCH 2/2] librsvg: Add missing pixbufcache dependencies

2016-11-10 Thread Kyle Russell
or me to look for in the log? On Fri, Oct 14, 2016 at 5:55 AM, Kyle Russell wrote: > Actually, we just hit another failure mode running with these two > patches. Again, we're currently running on the jethro branch. > > g_module_open() failed for /poky/build/tmp/sysroots/x86_

Re: [OE-core] [PATCH] mklibs-native: two fixes

2016-05-11 Thread Kyle Russell
What was the intent of the last hunk in fix_cross_compile.patch? It essentially undoes the following upstream mklibs change, but it doesn't seem related to whether or not dpkg is used. http://bazaar.launchpad.net/~ubuntu-installer/mklibs/master/revision/101 https://bugs.debian.org/cgi-bin/bugrepo

Re: [OE-core] [PATCH] mklibs-native: two fixes

2016-06-02 Thread Kyle Russell
encounter in our multilib setup containing /lib and /lib64 symlinks to the linker. On Sun, May 15, 2016 at 11:02 PM, Yuanjie Huang wrote: > Hi Kyle, > > The fix_cross_compile.patch is related when we pass the sysroot or libdir > to mklibs, in such case it is wrong to call dpkg-a

[OE-core] [PATCH] cmake.bbclass: Set CMAKE_CROSSCOMPILING correctly

2017-04-18 Thread Kyle Russell
If CMAKE_SYSTEM_NAME is defined, CMake assumes we're cross-compiling, which is not necessarily the case. --- meta/classes/cmake.bbclass | 4 1 file changed, 4 insertions(+) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 9e74599..2dbaa8c 100644 --- a/meta/classes/c

[OE-core] [PATCH] cmake.bbclass: Set CMAKE_CROSSCOMPILING correctly

2017-04-18 Thread Kyle Russell
If CMAKE_SYSTEM_NAME is defined, CMake assumes we're cross-compiling, which is not necessarily the case. Signed-off-by: Kyle Russell --- meta/classes/cmake.bbclass | 4 1 file changed, 4 insertions(+) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 9e

Re: [OE-core] [PATCH] cmake.bbclass: Set CMAKE_CROSSCOMPILING correctly

2017-04-18 Thread Kyle Russell
Thank you. Do I need to submit an amended patch to the mailing list, or will your fixup get merged in from your staging branch pending no problems? On Tue, Apr 18, 2017 at 3:17 PM, Burton, Ross wrote: > > On 18 April 2017 at 19:53, Khem Raj wrote: > >> dont use == here that will make it bash s

[OE-core] [meta][PATCH] python-native: Compute prefix based on staging area

2016-08-01 Thread Kyle Russell
for jethro, and whether or not it has already been addressed in newer versions of the python-native recipe. Kyle Russell (1): python-native: Compute prefix based on staging area ...g.py-prefix-should-be-inside-staging-area.patch | 32 ++ .../python/python-native

[OE-core] [meta][PATCH] python-native: Compute prefix based on staging area

2016-08-01 Thread Kyle Russell
ous patch does not impact setuptools. Signed-off-by: Kyle Russell --- ...g.py-prefix-should-be-inside-staging-area.patch | 32 ++ .../python/python-native_2.7.11.bb | 1 + 2 files changed, 33 insertions(+) create mode 100644 meta/recipes-devtools/python/

[OE-core] [meta][PATCH] python-3.5-manifest: Add some missing RDEPENDS

2016-08-03 Thread Kyle Russell
ctype's util.py needs subprocess lang's inspect.py needs importlib.machinery math's random.py needs crypt's hashlib subprocess imports threading Signed-off-by: Kyle Russell --- meta/recipes-devtools/python/python-3.5-manifest.inc | 8 scripts/contrib/python/gene

[OE-core] [PATCH] libxml-namespacesupport-perl: extend nativesdk

2019-02-05 Thread Kyle Russell
Signed-off-by: Kyle Russell --- meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb b/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb

[OE-core] [PATCH 1/2] libxml-sax-base-perl: extend nativesdk

2019-02-05 Thread Kyle Russell
Signed-off-by: Kyle Russell --- meta/recipes-extended/perl/libxml-sax-base-perl_1.09.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/perl/libxml-sax-base-perl_1.09.bb b/meta/recipes-extended/perl/libxml-sax-base-perl_1.09.bb index b3e01e9ace

[OE-core] [PATCH 2/2] libxml-sax-perl: extend nativesdk

2019-02-05 Thread Kyle Russell
Signed-off-by: Kyle Russell --- meta/recipes-extended/perl/libxml-sax-perl_1.00.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/perl/libxml-sax-perl_1.00.bb b/meta/recipes-extended/perl/libxml-sax-perl_1.00.bb index 141830efe8..eccd0ad6b4 100644