Re: [OE-core] [PATCH 4/7] kernel: Pull uImage generation into separate class

2014-10-26 Thread Koen Kooi
Op 22 okt. 2014, om 23:45 heeft Marek Vasut ma...@denx.de het volgende geschreven: On Wednesday, October 22, 2014 at 10:42:09 AM, Koen Kooi wrote: Op 22 okt. 2014, om 01:28 heeft Marek Vasut ma...@denx.de het volgende geschreven: On Monday, October 20, 2014 at 12:26:04 PM, Koen Kooi

Re: [OE-core] [PATCH] gcc: poison default sysroot path

2014-10-26 Thread Koen Kooi
Op 24 okt. 2014, om 16:10 heeft Richard Purdie richard.pur...@linuxfoundation.org het volgende geschreven: Various pieces of the code assume that the --sysroot option gets passed into the compiler tools. By having a sane default, we don't always spot when this occurs and this can later

[OE-core] [PATCH 1/1] bind: fix to use correct environment file in service file

2014-10-26 Thread Chen Qi
Use /etc/default/bind9 as the environment file in named.service. Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/recipes-connectivity/bind/bind/named.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/bind/bind/named.service

[OE-core] [PATCH 0/1] bind: fix to use correct environment file in service file

2014-10-26 Thread Chen Qi
The following changes since commit 4143f3b0ce0d0c52f5b0babc1bb16ac0ac9610eb: nativesdk-cmake: Adjust toolchain paths dynamically (2014-10-24 21:59:34 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/systemd-bind9

[OE-core] [PATCH] base bbclass: add support for tar.lz

2014-10-26 Thread Koen Kooi
Some GNU packages (e.g. ddrescue) switched to lzip only, so add support for it. Needs matching bitbake patch to work properly: http://lists.openembedded.org/pipermail/bitbake-devel/2014-October/005093.html Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/classes/base.bbclass | 5

[OE-core] [PATCH] package_manager: Fix BAD_RECOMMENDATIONS for opkg

2014-10-26 Thread Paul Barker
In package_manager.py, when using opkg as the packager, the command 'opkg args info pkg' is called to get information about each pkg in BAD_RECOMMENDATIONS in a format that can be written to the status file. The 'Status: ...' line is modified and all other lines are passed through. Changing the

Re: [OE-core] [PATCH] package_manager: Fix BAD_RECOMMENDATIONS for opkg

2014-10-26 Thread Paul Barker
On 26 October 2014 19:36, Paul Barker p...@paulbarker.me.uk wrote: In package_manager.py, when using opkg as the packager, the command 'opkg args info pkg' is called to get information about each pkg in BAD_RECOMMENDATIONS in a format that can be written to the status file. The 'Status: ...'

Re: [OE-core] [PATCH V3 1/1] gconf: fix multilib conflict - org.gnome.GConf.service

2014-10-26 Thread Burton, Ross
On 24 October 2014 03:26, Chong Lu chong...@windriver.com wrote: IMAGE_INSTALL = gconf lib32-gconf So multiple copies of gconf to be installed. Yeah, don't do that. Would you test installing apache and lib32-apache? Ross -- ___ Openembedded-core

Re: [OE-core] [PATCH v2] gstreamer1.0-plugins-bad: Add patch for disable pkg-check of wayland-scanner

2014-10-26 Thread Burton, Ross
On 8 October 2014 03:57, Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com wrote: +-AC_PATH_PROG([wayland_scanner], [wayland-scanner]) This check actually works fine and by removing it you're potentially breaking the build if it ever does need to invoke it, so don't remove this line. Ross

Re: [OE-core] [PATCH 4/7] kernel: Pull uImage generation into separate class

2014-10-26 Thread Marek Vasut
On Sunday, October 26, 2014 at 12:29:18 PM, Koen Kooi wrote: [...] To keep backward compatibility, could you rework this into something like: kernel.bbclass: inherit kernel-${KERNEL_IMAGETYPE} kernel-${KERNEL_IMAGETYPE}: inherit kernel-base imagetype stuff kernel-base:

Re: [OE-core] [PATCH 1/1] curl: Security Advisory - curl - CVE-2014-3613

2014-10-26 Thread Chong Lu
On 10/25/2014 06:16 AM, Burton, Ross wrote: On 24 October 2014 10:20, Chong Lu chong...@windriver.com mailto:chong...@windriver.com wrote: meta/recipes-support/curl/curl/CVE-2014-3613.patch | 269 + ERROR: Command Error: exit status: 1 Output: Applying patch

Re: [OE-core] [PATCH V2 1/1] kmod: fix debuginfo is missing in shared library

2014-10-26 Thread Chong Lu
On 10/24/2014 07:08 PM, Burton, Ross wrote: On 24 October 2014 07:25, Chong Lu chong...@windriver.com mailto:chong...@windriver.com wrote: +++ b/meta/recipes-kernel/kmod/kmod/run-ptest @@ -1,3 +1,4 @@ #!/bin/sh touch testsuite/stamp-rootfs +tar xf testmodule.tar

[OE-core] [PATCH V3 0/1] kmod: fix debuginfo is missing in shared library

2014-10-26 Thread Chong Lu
Change since V2: Delete the modules after test cases have ran. The following changes since commit ad065f94acb0bfb81e33935890a1db251d6e2979: ref-manual: Minor edits to variables. (2014-10-23 15:20:20 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH V3 1/1] kmod: fix debuginfo is missing in shared library

2014-10-26 Thread Chong Lu
INHIBIT_PACKAGE_STRIP variable will make debuginfo lose in shared library. The test cases of kmod contain kernel modules for many different architectures, strip and arch gets confused and throws errors. Pack kernel modules in test cases to avoid strip command failed. Signed-off-by: Chong Lu