[OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread b40527
From: Zongchun Yu zongchun...@freescale.com When use command bitbake -c populate_sdk target-rootfs to generate toolchain. a race issue may occur. in this case need to add binutils-cross to depends. Signed-off-by: Zongchun Yu zongchun...@freescale.com ---

Re: [OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread Khem Raj
On Mar 31, 2014, at 11:12 PM, b40...@freescale.com b40...@freescale.com wrote: From: Zongchun Yu zongchun...@freescale.com When use command bitbake -c populate_sdk target-rootfs to generate toolchain. a race issue may occur. in this case need to add binutils-cross to depends. can you

Re: [OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread Zongchun YU
can you explain the race a bit here. Sorry to confuse you. Sometimes libtool have been built but the binutils-cross have't been built yet. It is required by libtool. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Khem Raj
On Mar 31, 2014, at 12:50 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: i dont believe you tested all layer combinations I've tested everything I can, as has the autobuilder. I can't offer any more than this. at this point. 3.10 being LTS I would assume its a better

Re: [OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread Khem Raj
On Mar 31, 2014, at 11:37 PM, Zongchun YU b40...@freescale.com wrote: Sorry to confuse you. Sometimes libtool have been built but the binutils-cross have't been built yet. It is required by libtool. OK is it cross, native or target recipe which has the problem ? wouldnt it need to also

[OE-core] [PATCH] libsdl: PACKAGECONFIG conversion

2014-04-01 Thread Andre McCurdy
General cleanup + make it easier for distros / machines which support OpenGL ES only to prevent attempts to build against libgl. Signed-off-by: Andre McCurdy armccu...@gmail.com --- meta/recipes-graphics/libsdl/libsdl_1.2.15.bb | 30 ++- 1 file changed, 20 insertions(+),

Re: [OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread Zongchun YU
OK is it cross, native or target recipe which has the problem ? wouldnt it need to also depend on gcc-cross ? Only cross recipe has the problem. There is no need to gcc-cross. -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH 1/4] libarchive: fix CVE-2013-0211

2014-04-01 Thread Hongxu Jia
On 04/01/2014 01:30 PM, Khem Raj wrote: On Fri, Mar 28, 2014 at 2:43 AM, Hongxu Jia hongxu@windriver.com wrote: ++ const size_t max_write = INT_MAX; I think INT_MAX is a mismatch here size_t may not be defined 'unsigned int' on all kind of architectures. How about test the size of

Re: [OE-core] [RFC PATCH] Make ppce300c3 tune hard-float by default

2014-04-01 Thread Mats Kärrman
Hi Khem, Thanks for your feedback! On Tuesday, April 01, 2014 7:37 AM, Khem Raj wrote: On Fri, Mar 28, 2014 at 9:43 AM, Mats Kärrman mats.karr...@tritech.se wrote: +# glibc configure options to make use of 603e specific sqrt/sqrtf routines +GLIBC_EXTRA_OECONF +=

Re: [OE-core] State of bitbake world, Failed tasks 2014-03-29

2014-04-01 Thread Andreas Müller
On Sat, Mar 29, 2014 at 11:54 PM, Martin Jansa martin.ja...@gmail.com wrote: http://www.openembedded.org/wiki/Bitbake_World_Status == Failed tasks 2014-03-29 == === common (23) === * meta-openembedded/meta-gnome/recipes-gnome/devilspie/devilspie2_0.24.bb, do_compile *

[OE-core] [PATCH 0/3] miscellaneous patches

2014-04-01 Thread Kai Kang
The following changes since commit dee07bee84361eb58cdc0e267b22d71155b89b65: beaglebone: fix typo in the U-Boot config name (2014-03-31 23:04:36 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib kangkai/misc

[OE-core] [PATCH 1/3] xorg: Fix for CVE-2013-6424

2014-04-01 Thread Kai Kang
Integer underflow in the xTrapezoidValid macro in render/picture.h in X.Org allows context-dependent attackers to cause a denial of service (crash) via a negative bottom value. http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-6424 Signed-off-by: Baogen Shang baogen.sh...@windriver.com

[OE-core] [PATCH 3/3] util-linux-native: Remove SYS_setns system call in linux kernel 2.6.x

2014-04-01 Thread Kai Kang
From: yanjun.zhu yanjun@windriver.com __NR_setns is not defined in linux kernel 2.6.x. To linux kernel 3.0, this variable is defined. It has been shown that no native tools use this syscall, so it is safe to make this substitution Signed-off-by: yanjun.zhu yanjun@windriver.com

[OE-core] [PATCH 2/3] cmake: follow ptest output format

2014-04-01 Thread Kai Kang
From: Li Wang li.w...@windriver.com ptest output format is incorrect, according to yocto Development Manual (http://www.yoctoproject.org/docs/latest/dev-manual/dev-manual.html#testing-packages-with-ptest) The test generates output in the format used by Automake: result: testname where the result

[OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Mike Crowe
cmake detects the presence of curses automatically during configure so cmake-native must also depend on ncurses-native to stop it being removed from the sysroot during the build. Signed-off-by: Mike Crowe m...@mcrowe.com --- meta/recipes-devtools/cmake/cmake-native_2.8.12.2.bb | 2 +- 1 file

Re: [OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 10:16 +0100, Mike Crowe wrote: cmake detects the presence of curses automatically during configure so cmake-native must also depend on ncurses-native to stop it being removed from the sysroot during the build. Signed-off-by: Mike Crowe m...@mcrowe.com ---

[OE-core] [PATCH] qemux86-64: re-enable paravirt guest, bring it in sync with qemux86

2014-04-01 Thread Stefan Stanacar
Seems wrong that qemux86 has this enabled and qemux86-64 doesn't. Also this will allow people to use kvm with -cpu=host. Right now, runqemu qemux86-64 kvm uses -cpu=kvm64 because without this feature you can't use cpu=host on newer host kernels (= 3.8). This basically reverts poky

[OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Florin Sarbu
Currently connman can only RDEPEND on bluez4. This patch adds support for having bluez5 in PACKAGECONFIG and get connman RDEPEND on bluez5 if desired. Signed-off-by: Florin Sarbu florin.sa...@windriver.com --- meta/recipes-connectivity/connman/connman.inc | 4 +++- 1 file changed, 3

[OE-core] [PATCH] image/image-prelink/image-mklibs/sanity: Drop pointless EXPORT_FUNCTIONS

2014-04-01 Thread Richard Purdie
I'm sick of seeing people adding to EXPORT_FUNCTIONS in these classes when they clearly have no idea what it does. Worse, these uses of it are all broken, the naming is incorrect and they do nothing. Lets remove them and try and preserve any remaining part of my sanity. Signed-off-by: Richard

Re: [OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Mike Crowe
On Tuesday 01 April 2014 at 10:31:59 +0100, Richard Purdie wrote: On Tue, 2014-04-01 at 10:16 +0100, Mike Crowe wrote: cmake detects the presence of curses automatically during configure so cmake-native must also depend on ncurses-native to stop it being removed from the sysroot during the

Re: [OE-core] [PATCH] Fix some bash errors

2014-04-01 Thread Kang Kai
On 2014?04?01? 09:59, Kai Kang wrote: Fix some errors for bash 3.2.48 by take patches from bash 4.3. Yong Zhang (1): bash-3.2.48: fix error path of getc_with_restart .../bash-fix-error-path-of-getc_with_restart.patch | 41 ++

Re: [OE-core] [PATCH 3/3] util-linux-native: Remove SYS_setns system call in linux kernel 2.6.x

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 17:09 +0800, Kai Kang wrote: From: yanjun.zhu yanjun@windriver.com __NR_setns is not defined in linux kernel 2.6.x. To linux kernel 3.0, this variable is defined. It has been shown that no native tools use this syscall, so it is safe to make this substitution

[OE-core] [PATCH] libpcap.inc: Add PACKAGECONFIG support for bluez

2014-04-01 Thread Florin Sarbu
This patch adds support for having bluez5 in PACKAGECONFIG and get libpcap DEPEND on bluez5. Signed-off-by: Florin Sarbu florin.sa...@windriver.com --- meta/recipes-connectivity/libpcap/libpcap.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] OE monthy today (?)

2014-04-01 Thread Paul Eggleton
On Tuesday 01 April 2014 01:18:47 Denys Dmytriyenko wrote: On Tue, Apr 01, 2014 at 12:52:52AM -0400, Trevor Woerner wrote: On 04/01/14 00:34, Denys Dmytriyenko wrote: On Tue, Apr 01, 2014 at 12:04:16AM -0400, Trevor Woerner wrote: ...in roughly 12 hours from now? ? I'm

Re: [OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 11:11 +0100, Mike Crowe wrote: On Tuesday 01 April 2014 at 10:31:59 +0100, Richard Purdie wrote: On Tue, 2014-04-01 at 10:16 +0100, Mike Crowe wrote: cmake detects the presence of curses automatically during configure so cmake-native must also depend on

Re: [OE-core] [PATCH] libpcap.inc: Add PACKAGECONFIG support for bluez

2014-04-01 Thread Martin Jansa
On Tue, Apr 01, 2014 at 01:16:40PM +0300, Florin Sarbu wrote: This patch adds support for having bluez5 in PACKAGECONFIG and get libpcap DEPEND on bluez5. Signed-off-by: Florin Sarbu florin.sa...@windriver.com --- meta/recipes-connectivity/libpcap/libpcap.inc | 5 +++-- 1 file changed, 3

Re: [OE-core] [RFC PATCH] Make ppce300c3 tune hard-float by default

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 07:54 +, Mats Kärrman wrote: Hi Khem, Thanks for your feedback! On Tuesday, April 01, 2014 7:37 AM, Khem Raj wrote: On Fri, Mar 28, 2014 at 9:43 AM, Mats Kärrman mats.karr...@tritech.se wrote: +# glibc configure options to make use of 603e specific

[OE-core] Public TSC / OE Workgroup meeting today

2014-04-01 Thread Paul Eggleton
Hi all, There will be a public OpenEmbedded TSC/workgroup IRC meeting today. If you're interested in discussing long-term technical efforts around the OpenEmbedded project please join us on irc.freenode.net in channel #oe at 16:00 GMT (9am PDT, 11am CDT, 12 EDT, 18:00 CEST, 17:00 BST).

Re: [OE-core] [PATCH 2/3] cmake: follow ptest output format

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 17:09 +0800, Kai Kang wrote: From: Li Wang li.w...@windriver.com ptest output format is incorrect, according to yocto Development Manual (http://www.yoctoproject.org/docs/latest/dev-manual/dev-manual.html#testing-packages-with-ptest) The test generates output in the

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 13:09 +0300, Florin Sarbu wrote: Currently connman can only RDEPEND on bluez4. This patch adds support for having bluez5 in PACKAGECONFIG and get connman RDEPEND on bluez5 if desired. Signed-off-by: Florin Sarbu florin.sa...@windriver.com ---

Re: [OE-core] [PATCH] libtool: Add depends on binutils-cross

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 14:12 +0800, b40...@freescale.com wrote: From: Zongchun Yu zongchun...@freescale.com When use command bitbake -c populate_sdk target-rootfs to generate toolchain. a race issue may occur. in this case need to add binutils-cross to depends. Signed-off-by: Zongchun Yu

Re: [OE-core] [PATCH] libsdl: PACKAGECONFIG conversion

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 00:10 -0700, Andre McCurdy wrote: General cleanup + make it easier for distros / machines which support OpenGL ES only to prevent attempts to build against libgl. Signed-off-by: Andre McCurdy armccu...@gmail.com --- meta/recipes-graphics/libsdl/libsdl_1.2.15.bb | 30

Re: [OE-core] Quality of meta-oe metadata

2014-04-01 Thread Richard Purdie
On Sun, 2014-03-30 at 02:33 -0400, Trevor Woerner wrote: Hello Martin, Excellent, excellent post! On 03/29/14 21:31, Martin Jansa wrote: 2) There are a lot of changes and component upgrades in oe-core which sometimes aren't very straight-forward to adapt to and issues stay in

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Iorga, Cristian
Hi all, I would also say that is an important change, with some possible unforeseen consequences. The YP is in the stabilization phase for 1.6 release. In my opinion, the support for and change to BlueZ (overall) should be postponed to 1.7. Also, this not the proper solution, because, in the

Re: [OE-core] [PATCH 1/1] util-linux-native: fix qsort_r for CentOS 5.10

2014-04-01 Thread Paul Barker
On 1 April 2014 02:34, Robert Yang liezhi.y...@windriver.com wrote: On 04/01/2014 05:22 AM, Paul Barker wrote: On 26 March 2014 07:01, Robert Yang liezhi.y...@windriver.com wrote: The qsort_r() was added to glibc in version 2.8, so there is no qsort_r() on the host like CentOS 5.x, use

Re: [OE-core] [RFC PATCH] Make ppce300c3 tune hard-float by default

2014-04-01 Thread Mats Kärrman
Hi Richard, On Tuesday, April 01, 2014 12:48 PM, Richard Purdie wrote: On Tue, 2014-04-01 at 07:54 +, Mats Kärrman wrote: Hi Khem, Thanks for your feedback! On Tuesday, April 01, 2014 7:37 AM, Khem Raj wrote: On Fri, Mar 28, 2014 at 9:43 AM, Mats Kärrman mats.karr...@tritech.se

Re: [OE-core] [RFC PATCH] Make ppce300c3 tune hard-float by default

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 11:44 +, Mats Kärrman wrote: Hi Richard, On Tuesday, April 01, 2014 12:48 PM, Richard Purdie wrote: On Tue, 2014-04-01 at 07:54 +, Mats Kärrman wrote: Hi Khem, Thanks for your feedback! On Tuesday, April 01, 2014 7:37 AM, Khem Raj wrote: On Fri, Mar

Re: [OE-core] [PATCH] kernel-arch: Always use ld.bfd to link the kernel

2014-04-01 Thread Phil Blundell
On Fri, 2014-03-28 at 13:28 -0400, Denys Dmytriyenko wrote: KERNEL_CC = ${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_KERNEL_ARCH} -KERNEL_LD = ${CCACHE}${HOST_PREFIX}ld ${HOST_LD_KERNEL_ARCH} +KERNEL_LD = ${CCACHE}${HOST_PREFIX}ld.bfd ${HOST_LD_KERNEL_ARCH} KERNEL_AR = ${CCACHE}${HOST_PREFIX}ar

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Florin Sarbu
Please see inline. On 04/01/2014 02:23 PM, Iorga, Cristian wrote: Hi all, I would also say that is an important change, with some possible unforeseen consequences. The YP is in the stabilization phase for 1.6 release. In my opinion, the support for and change to BlueZ (overall) should be

Re: [OE-core] [dora][PATCH] opkg-utils: Update to latest git master

2014-04-01 Thread Paul Barker
On 1 April 2014 01:58, Denys Dmytriyenko de...@denix.org wrote: From: Denys Dmytriyenko de...@ti.com The latest commit in opkg-utils allows packages created by opkg-build to be read by dpkg-deb again. (Based on OE-Core master rev: 219944af2700ce9dbc425fac384cd32b0a802123, but all of the

Re: [OE-core] [PATCH 1/1] util-linux-native: fix qsort_r for CentOS 5.10

2014-04-01 Thread Phil Blundell
On Tue, 2014-04-01 at 12:41 +0100, Paul Barker wrote: The more I look at it the more I don't like this patch. It's probably a very rarely used code path but it could blow up if it's called. C provides no guarantees that calling a 3-argument function with only 2 arguments will work. Depending

Re: [OE-core] [PATCH 1/1] util-linux-native: fix qsort_r for CentOS 5.10

2014-04-01 Thread Paul Barker
On 1 April 2014 13:31, Phil Blundell p...@pbcl.net wrote: On Tue, 2014-04-01 at 12:41 +0100, Paul Barker wrote: The more I look at it the more I don't like this patch. It's probably a very rarely used code path but it could blow up if it's called. C provides no guarantees that calling a

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Bruce Ashfield
On 14-04-01 02:42 AM, Khem Raj wrote: On Mar 31, 2014, at 12:50 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: i dont believe you tested all layer combinations I've tested everything I can, as has the autobuilder. I can't offer any more than this. at this point. 3.10 being LTS

Re: [OE-core] [PATCH] libpcap.inc: Add PACKAGECONFIG support for bluez

2014-04-01 Thread Florin Sarbu
On 04/01/2014 01:47 PM, Martin Jansa wrote: On Tue, Apr 01, 2014 at 01:16:40PM +0300, Florin Sarbu wrote: This patch adds support for having bluez5 in PACKAGECONFIG and get libpcap DEPEND on bluez5. Signed-off-by: Florin Sarbu florin.sa...@windriver.com ---

Re: [OE-core] [dora][PATCH] opkg-utils: Update to latest git master

2014-04-01 Thread Paul Barker
On 1 April 2014 13:29, Paul Barker p...@paulbarker.me.uk wrote: On 1 April 2014 01:58, Denys Dmytriyenko de...@denix.org wrote: From: Denys Dmytriyenko de...@ti.com The latest commit in opkg-utils allows packages created by opkg-build to be read by dpkg-deb again. (Based on OE-Core master

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Iorga, Cristian
Hmm, I am quite sure that connman is ready for BlueZ4 for some time. I am not sure about libpcap, to be honest, did not investigate that. Can you please provide some facts related to your statements? Regards, Cristian -Original Message- From: Florin Sarbu

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Iorga, Cristian
Hello, I meant, of course, BlueZ5, connman is ready for BlueZ5. -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Iorga, Cristian Sent: Tuesday, April 1, 2014 4:23 PM To: Sarbu, Florin-Ionut

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Florin Sarbu
On 04/01/2014 04:27 PM, Iorga, Cristian wrote: Hello, I meant, of course, BlueZ5, connman is ready for BlueZ5. -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Iorga, Cristian Sent:

Re: [OE-core] [PATCH 1/1] util-linux-native: fix qsort_r for CentOS 5.10

2014-04-01 Thread Robert Yang
On 04/01/2014 08:34 PM, Paul Barker wrote: On 1 April 2014 13:31, Phil Blundell p...@pbcl.net wrote: On Tue, 2014-04-01 at 12:41 +0100, Paul Barker wrote: The more I look at it the more I don't like this patch. It's probably a very rarely used code path but it could blow up if it's called. C

[OE-core] Status Update

2014-04-01 Thread Richard Purdie
Executive Summary = 3.14 kernel is in and we have green builds. Managed to make a dent in the defect tracking metrics but work remains. Trending well for the release, need to keep up the bug fixing. 1.6 Release Status === The 3.14 kernel was released, we were able to

[OE-core] [PATCH] image.bbclass: make x11-base a valid image feature

2014-04-01 Thread Andreas Müller
make commit 049f89155b1e80875aad6e53b21808b827c06915 Author: Chen Qi qi.c...@windriver.com Date: Fri Dec 20 10:45:52 2013 +0800 image.bbclass: add ability to set systemd default target Add ability to set the default target for systemd images. The default target for system is

Re: [OE-core] [PATCH] connman.inc: Add PACKAGECONFIG support for bluez5

2014-04-01 Thread Burton, Ross
On 1 April 2014 14:41, Florin Sarbu florin.sa...@windriver.com wrote: Well, as far as I see it, these 2 packages (connman and libpcap) are aware only of bluez4 at the moment. ConnMan supports both, and libpcap uses the libbluetooth API so that should link fine against either as that API didn't

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Martin Jansa
On Tue, Apr 01, 2014 at 08:54:42AM -0400, Bruce Ashfield wrote: On 14-04-01 02:42 AM, Khem Raj wrote: On Mar 31, 2014, at 12:50 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: i dont believe you tested all layer combinations I've tested everything I can, as has the

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Bruce Ashfield
On 14-04-01 10:50 AM, Martin Jansa wrote: On Tue, Apr 01, 2014 at 08:54:42AM -0400, Bruce Ashfield wrote: On 14-04-01 02:42 AM, Khem Raj wrote: On Mar 31, 2014, at 12:50 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: i dont believe you tested all layer combinations I've tested

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 10:52 -0400, Bruce Ashfield wrote: On 14-04-01 10:50 AM, Martin Jansa wrote: On Tue, Apr 01, 2014 at 08:54:42AM -0400, Bruce Ashfield wrote: On 14-04-01 02:42 AM, Khem Raj wrote: On Mar 31, 2014, at 12:50 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote:

Re: [OE-core] [PATCH 1/4] libarchive: fix CVE-2013-0211

2014-04-01 Thread Khem Raj
On Tue, Apr 1, 2014 at 12:40 AM, Hongxu Jia hongxu@windriver.com wrote: On 04/01/2014 01:30 PM, Khem Raj wrote: On Fri, Mar 28, 2014 at 2:43 AM, Hongxu Jia hongxu@windriver.com wrote: ++ const size_t max_write = INT_MAX; I think INT_MAX is a mismatch here size_t may not be

Re: [OE-core] [PATCH 4/5] libc-headers: set TC default to 3.14

2014-04-01 Thread Bruce Ashfield
On 14-04-01 10:54 AM, Richard Purdie wrote: On Tue, 2014-04-01 at 10:52 -0400, Bruce Ashfield wrote: On 14-04-01 10:50 AM, Martin Jansa wrote: On Tue, Apr 01, 2014 at 08:54:42AM -0400, Bruce Ashfield wrote: On 14-04-01 02:42 AM, Khem Raj wrote: On Mar 31, 2014, at 12:50 PM, Bruce Ashfield

[OE-core] [PATCH] alsa-tools: Fix build without x11

2014-04-01 Thread Otavio Salvador
There is no way to disable the x11 without mangling the source code so instead using a patch we now used a 'sed' in do_configure so it is easier to maintain and extend. The patch had some new tools missing which were triggering build failures in O.S. Systems' builder as: ,[ Build error in a

[OE-core] [PATCH 1/2] eglibc_2.19: Make ppc e300c3 benefit from 603e sqrt optimizations

2014-04-01 Thread Mats Kärrman
Tested on PowerPC MPC5125. Signed-off-by: Mats Karrman mats.karr...@tritech.se --- meta/recipes-core/eglibc/eglibc-2.19/glibc.fix_sqrt2.patch |7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/recipes-core/eglibc/eglibc-2.19/glibc.fix_sqrt2.patch

[OE-core] [PATCH 2/2] Make ppce300c3 tune hard-float by default

2014-04-01 Thread Mats Kärrman
The tuning file for PowerPC e300c3 is soft-float. In OE-classic it was hard- float and it should be as the c3 has an fpu. I have modified the tuning file to include both a hard-float version (using the existing ppce300c3 name) and an optional soft-float version (called ppce300c3-nf). The

[OE-core] [PATCH 2/2] gdk-pixbuf: pass GDK_PIXBUF_FATAL_LOADER where relevant

2014-04-01 Thread Ross Burton
Pass GDK_PIXBUF_FATAL_LOADER to the sstate postinst and intercept so that any problems are flagged as errors instead of being silently ignored. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/classes/pixbufcache.bbclass|2 +-

[OE-core] [PATCH 1/2] gdk-pixbuf: add an option so that loader errors are fatal

2014-04-01 Thread Ross Burton
So that gdk-pixbuf-query-loader failures can be identified as such (and executed later, or run on the target) add a magic environment variable return loader failures from main(). Signed-off-by: Ross Burton ross.bur...@intel.com --- .../gdk-pixbuf/gdk-pixbuf/fatal-loader.patch | 79

Re: [OE-core] [PATCH] alsa-tools: Fix build without x11

2014-04-01 Thread Otavio Salvador
Hello, On Tue, Apr 1, 2014 at 1:18 PM, Otavio Salvador ota...@ossystems.com.br wrote: There is no way to disable the x11 without mangling the source code so instead using a patch we now used a 'sed' in do_configure so it is easier to maintain and extend. The patch had some new tools missing

[OE-core] [PATCH v2] alsa-tools: Fix build without x11

2014-04-01 Thread Otavio Salvador
The patch had some new tool (hdajackretask) missing which were triggering build failures in O.S. Systems' builder as: ,[ Build error in a clean tmp, without x11 ] | checking for GTK3... no | configure: error: Package requirements (gtk+-3.0) were not met: | | No package 'gtk+-3.0' found | |

[OE-core] [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains

2014-04-01 Thread Otavio Salvador
This is similar to the contains but matches any of values. This is useful to match for example several DISTRO_FEATURES which ought to include a PACKAGECONFIG option. For example: PACKAGECONFIG ??= ${@base_any_contains('DISTRO_FEATURES', 'x11 wayland', 'gtk+', '', d)} Signed-off-by: Otavio

[OE-core] [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland

2014-04-01 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- This patch depends on the alsa-tools one I sent some minutes ago meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb

Re: [OE-core] Quality of meta-oe metadata

2014-04-01 Thread Mark Hatle
On 3/29/14, 8:31 PM, Martin Jansa wrote: Hi, sorry for longer e-mail, this is one of topic I would like to discuss on OEDAM (http://openembedded.org/wiki/OEDAM), but having some feedback and thoughts in advance will be very useful. As people can notice from my State of bitbake world e-mails or

[OE-core] OE/TSC monthly IRC meeting notes - Apr 1 2014

2014-04-01 Thread Trevor Woerner
Here are my notes from today's monthly OE/TSC meeting which takes place the first Tuesday of every month on freenode's #oe channel. attendees: bluelightning, Jefro, RP, denix, tlwoerner, fray, nerdboy, kergoth topic #1: upcoming release - schedule:

Re: [OE-core] Quality of meta-oe metadata

2014-04-01 Thread Martin Jansa
On Tue, Apr 01, 2014 at 12:12:58PM -0500, Mark Hatle wrote: On 3/29/14, 8:31 PM, Martin Jansa wrote: Hi, sorry for longer e-mail, this is one of topic I would like to discuss on OEDAM (http://openembedded.org/wiki/OEDAM), but having some feedback and thoughts in advance will be very useful.

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Phil Blundell
On Wed, 2014-02-26 at 11:11 +, Matthieu CRAPET wrote: Setting IMAGE_DEVICE_TABLE or IMAGE_DEVICE_TABLES to empty string in an image recipe works (makedevs is not called) Should be we drop USE_DEVFS variable (meta/classes/image.bbclass) or (re)add check in meta/lib/oe/rootfs.py?

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Phil Blundell
On Tue, 2014-04-01 at 18:44 +0100, Phil Blundell wrote: On Wed, 2014-02-26 at 11:11 +, Matthieu CRAPET wrote: Setting IMAGE_DEVICE_TABLE or IMAGE_DEVICE_TABLES to empty string in an image recipe works (makedevs is not called) Should be we drop USE_DEVFS variable

Re: [OE-core] Quality of meta-oe metadata

2014-04-01 Thread Mark Hatle
On 4/1/14, 12:40 PM, Martin Jansa wrote: On Tue, Apr 01, 2014 at 12:12:58PM -0500, Mark Hatle wrote: On 3/29/14, 8:31 PM, Martin Jansa wrote: Hi, sorry for longer e-mail, this is one of topic I would like to discuss on OEDAM (http://openembedded.org/wiki/OEDAM), but having some feedback and

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 18:48 +0100, Phil Blundell wrote: Also note that the default for USE_DEVFS was (and is) 1, so the lack of this check is actually causing a difference in the default behaviour. If there's no appetite for reinstating the USE_DEVFS mechanism per se then it seems like it

Re: [OE-core] [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote: This is similar to the contains but matches any of values. This is useful to match for example several DISTRO_FEATURES which ought to include a PACKAGECONFIG option. For example: PACKAGECONFIG ??=

Re: [OE-core] OE/TSC monthly IRC meeting notes - Apr 1 2014

2014-04-01 Thread Jack Mitchell
On 01/04/2014 18:33, Trevor Woerner wrote: Here are my notes from today's monthly OE/TSC meeting which takes place the first Tuesday of every month on freenode's #oe channel. attendees: bluelightning, Jefro, RP, denix, tlwoerner, fray, nerdboy, kergoth topic #1: upcoming release - schedule:

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Mark Hatle
On 4/1/14, 12:51 PM, Richard Purdie wrote: On Tue, 2014-04-01 at 18:48 +0100, Phil Blundell wrote: Also note that the default for USE_DEVFS was (and is) 1, so the lack of this check is actually causing a difference in the default behaviour. If there's no appetite for reinstating the USE_DEVFS

Re: [OE-core] [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains

2014-04-01 Thread Otavio Salvador
On Tue, Apr 1, 2014 at 2:53 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote: This is similar to the contains but matches any of values. This is useful to match for example several DISTRO_FEATURES which ought to include a

Re: [OE-core] [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland

2014-04-01 Thread Denys Dmytriyenko
On Tue, Apr 01, 2014 at 02:08:00PM -0300, Otavio Salvador wrote: Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- This patch depends on the alsa-tools one I sent some minutes ago meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [OE-core] [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland

2014-04-01 Thread Otavio Salvador
On Tue, Apr 1, 2014 at 3:50 PM, Denys Dmytriyenko de...@denix.org wrote: On Tue, Apr 01, 2014 at 02:08:00PM -0300, Otavio Salvador wrote: Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- This patch depends on the alsa-tools one I sent some minutes ago

Re: [OE-core] [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 15:38 -0300, Otavio Salvador wrote: On Tue, Apr 1, 2014 at 2:53 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote: This is similar to the contains but matches any of values. This is useful to match

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Richard Purdie
On Tue, 2014-04-01 at 13:01 -0500, Mark Hatle wrote: On 4/1/14, 12:51 PM, Richard Purdie wrote: On Tue, 2014-04-01 at 18:48 +0100, Phil Blundell wrote: Also note that the default for USE_DEVFS was (and is) 1, so the lack of this check is actually causing a difference in the default

[OE-core] [PATCH] Globally replace oe.utils.contains to bb.utils.contains

2014-04-01 Thread Otavio Salvador
BitBake has the exact same code as oe.utils.contains so there's no reason to duplicate it. We now rely on the bb.utils.contains code for metadata. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/libc-package.bbclass| 6 +++---

[OE-core] opkg-0.2.2 release

2014-04-01 Thread Paul Barker
Hi all, I've just released opkg-0.2.2 with the following bugfixes (issue numbers refer to the opkg issue list): - Fix '--force-reinstall' flag so that it acts as an upgrade rather than removing possibly critical packages before reinstall (issue 71) - Symlinks are now correctly removed during

Re: [OE-core] image.bbclass: USE_DEVFS is now useless

2014-04-01 Thread Phil Blundell
On Tue, 2014-04-01 at 18:51 +0100, Richard Purdie wrote: On Tue, 2014-04-01 at 18:48 +0100, Phil Blundell wrote: Also note that the default for USE_DEVFS was (and is) 1, so the lack of this check is actually causing a difference in the default behaviour. If there's no appetite for

Re: [OE-core] [PATCH 2/3] cmake: follow ptest output format

2014-04-01 Thread Otavio Salvador
Hello, On Tue, Apr 1, 2014 at 7:49 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Tue, 2014-04-01 at 17:09 +0800, Kai Kang wrote: From: Li Wang li.w...@windriver.com ptest output format is incorrect, according to yocto Development Manual

Re: [OE-core] [PATCH 2/3] cmake: follow ptest output format

2014-04-01 Thread Kang Kai
On 2014?04?02? 06:33, Otavio Salvador wrote: Hello, On Tue, Apr 1, 2014 at 7:49 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Tue, 2014-04-01 at 17:09 +0800, Kai Kang wrote: From: Li Wang li.w...@windriver.com ptest output format is incorrect, according to yocto Development

Re: [OE-core] [PATCH] libsdl: PACKAGECONFIG conversion

2014-04-01 Thread Andre McCurdy
On 04/01/2014 03:54 AM, Richard Purdie wrote: On Tue, 2014-04-01 at 00:10 -0700, Andre McCurdy wrote: General cleanup + make it easier for distros / machines which support OpenGL ES only to prevent attempts to build against libgl. Signed-off-by: Andre McCurdy armccu...@gmail.com ---

Re: [OE-core] [PATCH] nss: avoid to use the hardcode kernel version

2014-04-01 Thread Kang Kai
On 2014年03月31日 22:20, Kai Kang wrote: From: Roy Li rongqing...@windriver.com When native package is built, use the uname to return the kernel version. When target is built, read kernel version from ${STAGING_KERNEL_DIR}/kernel-abiversion to avoid to use the hardcode kernel version.

[OE-core] [PATCH 1/3] dbus: backport fix for bus activation under systemd session

2014-04-01 Thread Jonathan Liu
Signed-off-by: Jonathan Liu net...@gmail.com --- meta/recipes-core/dbus/dbus.inc| 1 + ...orrect-address-when-using-address-systemd.patch | 193 + 2 files changed, 194 insertions(+) create mode 100644

[OE-core] [PATCH 3/3] systemd: backport patch to avoid assertion failures

2014-04-01 Thread Jonathan Liu
Signed-off-by: Jonathan Liu net...@gmail.com --- ...t-use-assert_return-to-check-for-disconne.patch | 513 + meta/recipes-core/systemd/systemd_211.bb | 1 + 2 files changed, 514 insertions(+) create mode 100644

Re: [OE-core] [PATCH 1/4] libarchive: fix CVE-2013-0211

2014-04-01 Thread Hongxu Jia
On 04/01/2014 10:57 PM, Khem Raj wrote: How about test the size of size_t and assigned the related MAX value: const size_t max_write = (sizeof(size_t) = sizeof(int))?INT_MAX:(sizeof(size_t) == sizeof(short))?SHRT_MAX:CHAR_MAX; you could use something like (size_t)-1 to denote SIZE_MAX

Re: [OE-core] [PATCH] nss: avoid to use the hardcode kernel version

2014-04-01 Thread Khem Raj
On Tuesday, April 1, 2014, Kang Kai kai.k...@windriver.com wrote: On 2014年03月31日 22:20, Kai Kang wrote: From: Roy Li rongqing...@windriver.com When native package is built, use the uname to return the kernel version. When target is built, read kernel version from

Re: [OE-core] [PATCH] qemux86-64: re-enable paravirt guest, bring it in sync with qemux86

2014-04-01 Thread Khem Raj
On Tue, Apr 1, 2014 at 3:00 AM, Stefan Stanacar stefanx.stana...@intel.com wrote: Seems wrong that qemux86 has this enabled and qemux86-64 doesn't. Also this will allow people to use kvm with -cpu=host. Right now, runqemu qemux86-64 kvm uses -cpu=kvm64 because without this feature you can't

Re: [OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Khem Raj
On Tue, Apr 1, 2014 at 2:31 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: What does an ncurses enabled cmake give us that is desirable? bells and whistles - curses GUI frontend :) which I would assume we don't use as much if someone does please speak up --

Re: [OE-core] [PATCH] cmake-native: Depend on ncurses-native too

2014-04-01 Thread Khem Raj
On Tue, Apr 1, 2014 at 3:11 AM, Mike Crowe m...@mcrowe.com wrote: It seems to be possible to disable building the CursesDialog component to remove the need for ncurses but I couldn't immediately see how to do that for a bootstrap build. The non-native cmake recipe depends on ncurses even