Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Khem Raj
On Wed, Jun 22, 2011 at 10:47 PM, Martin Jansa martin.ja...@gmail.com wrote: On Wed, Jun 22, 2011 at 04:22:31PM -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-06-22 at 15:31 -0700, Khem Raj wrote: On Wed, Jun 22,

Re: [OE-core] [PATCH] kernel.bbclass: Stage System.map with KERNEL_VERSION suffix

2011-06-23 Thread Koen Kooi
Op 23 jun 2011, om 01:48 heeft Tom Rini het volgende geschreven: Without this, images will fail now that kernel-abiversion is back. Signed-off-by: Tom Rini tom_r...@mentor.com Acked-by: Koen Kooi k...@dominion.thruhere.net --- meta/classes/kernel.bbclass |1 + 1 files changed, 1

[OE-core] [PATCH 1/1] meta-qt3: Resolve the compilation error when building an lsb image for qemuarm

2011-06-23 Thread Xiaofeng Yan
From: Xiaofeng Yan xiaofeng@windriver.com The difference for the variable TARGET_OS and BUILD_OS caused compilation error. I submit this patch to fix this problem. Signed-off-by: Xiaofeng Yan xiaofeng@windriver.com --- recipes-qt3/qt3/qt-x11-free-native_3.3.5.bb |2 +- 1 files

Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Khem Raj
On Wed, Jun 22, 2011 at 11:07 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Jun 22, 2011 at 10:47 PM, Martin Jansa martin.ja...@gmail.com wrote: On Wed, Jun 22, 2011 at 04:22:31PM -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote:

Re: [OE-core] [PATCH V2 0/2] Change gcc 4.6 recipes to use svn in SRC_URI

2011-06-23 Thread Khem Raj
On Wed, Jun 22, 2011 at 9:08 AM, Koen Kooi k...@dominion.thruhere.net wrote: Op 22 jun 2011, om 18:00 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-21 at 18:43 -0700, Khem Raj wrote: changes since V1 Separate out non gcc changes to a different pull request Patches are not

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-23 Thread Phil Blundell
On Thu, 2011-06-23 at 12:08 +0800, Xu, Dongxiao wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Phil Blundell Sent: Wednesday, June 22, 2011 7:45 PM To: Patches and

Re: [OE-core] [PATCH V2 0/2] Change gcc 4.6 recipes to use svn in SRC_URI

2011-06-23 Thread Richard Purdie
On Thu, 2011-06-23 at 01:40 -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 9:08 AM, Koen Kooi k...@dominion.thruhere.net wrote: Op 22 jun 2011, om 18:00 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-21 at 18:43 -0700, Khem Raj wrote: changes since V1 Separate out non

[OE-core] [PATCH 0/1] Removing hard coded libdir for libc locale generating

2011-06-23 Thread Lianhao Lu
The patch replaces the hard coded libdir in package_do_split_gconvs() in libc-package.bbclass to meet the requirement of multilib. The following changes since commit b04ee632eb06650dde3e3ee8c4788a45cae0aa5e: Richard Purdie (1): multilib: First pass from RP are available in the git

[OE-core] [PATCH 1/1] libc-package.bbclass: Replace hard coded libdir.

2011-06-23 Thread Lianhao Lu
Replace the hard coded libdir for locale generating to meet the multilib requirement. Signed-off-by: Lianhao Lu lianhao...@intel.com --- meta/classes/libc-package.bbclass |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/meta/classes/libc-package.bbclass

Re: [OE-core] [PATCH 00/40] Various Recipe Fixes (v3)

2011-06-23 Thread Richard Purdie
On Wed, 2011-06-22 at 14:53 -0500, Mark Hatle wrote: V3 includes fixes to issues noticed by Phil Blundell --- version 2 below --- V2 only includes a change to patch 13, to resolve the issues mentioned by Koen. --- original comments below --- While working on the permissions and umask

[OE-core] [PATCH 3/4] classes/conf: Drop MULTIMACH_ARCH variable, it adds unused complexity and serves no useful purpose

2011-06-23 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- meta/classes/base.bbclass |8 +--- meta/classes/cross-canadian.bbclass | 14 +++--- meta/classes/sstate.bbclass |4 ++-- meta/conf/bitbake.conf |9 ++--- 4 files

[OE-core] [PATCH 4/4] base/glib-2.0: Simplify USE_NLS handling for glib-2.0

2011-06-23 Thread Richard Purdie
Currently the only way to get anything to build is to set USE_NLS=yes for glib-2.0. We might as well do this in the recipe by default for now and simpllify the code. The magic handling of USE_NLS_recipename is also removed since this can be done in the form USE_NLS_pn-recipename using overrides

[OE-core] [PATCH 1/4] base.bbclass: Drop old style SRCDATE handling, we have pn- overrides now

2011-06-23 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- meta/classes/base.bbclass |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 119b052..4681489 100644 --- a/meta/classes/base.bbclass +++

[OE-core] [PATCH 2/4] base.bbclass: Since we require python 2.6 which always contains hashlib we can drop this fallback code

2011-06-23 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- meta/classes/base.bbclass | 10 -- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 4681489..f390f08 100644 --- a/meta/classes/base.bbclass

Re: [OE-core] [PATCH 1/1] libc-package.bbclass: Replace hard coded libdir.

2011-06-23 Thread Richard Purdie
On Thu, 2011-06-23 at 19:33 +0800, Lianhao Lu wrote: Replace the hard coded libdir for locale generating to meet the multilib requirement. Signed-off-by: Lianhao Lu lianhao...@intel.com --- meta/classes/libc-package.bbclass |7 --- 1 files changed, 4 insertions(+), 3 deletions(-)

[OE-core] [PATCH] dbus: update to 1.4.12

2011-06-23 Thread Koen Kooi
The tmpdir patch has been regenerated and can now be applied with git-am, no functional changes. The biggest improvement is that dbus will log to syslog nowadays: [ 22.238708] 29dbus[237]: [system] Activating service name='fi.w1.wpa_supplicant1' (using servicehelper) Signed-off-by: Koen

[OE-core] [PATCH 0/1] Use new git server for clutter, V2

2011-06-23 Thread edwin . zhai
From: Zhai Edwin edwin.z...@intel.com This patch use new git server for clutter. Pls. pull. The following changes since commit b914de55a45029658116f729ffda3abead654c90: Revert eglibc: Upgrade recipes from 2.13 - 2.14 (2011-06-22 23:49:42 +0100) are available in the git repository at:

[OE-core] [PATCH 1/1] clutter: Use new git repo

2011-06-23 Thread edwin . zhai
From: Zhai Edwin edwin.z...@intel.com clutter move its git server from clutter-project.org to gnome.org [YOCTO #1040] got fixed Signed-off-by: Zhai Edwin edwin.z...@intel.com --- meta/recipes-graphics/clutter/clutter_git.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

Re: [OE-core] [PATCH 0/1] Use new git server for clutter, V2

2011-06-23 Thread Richard Purdie
On Thu, 2011-06-23 at 20:33 +0800, edwin.z...@intel.com wrote: From: Zhai Edwin edwin.z...@intel.com This patch use new git server for clutter. Pls. pull. The following changes since commit b914de55a45029658116f729ffda3abead654c90: Revert eglibc: Upgrade recipes from 2.13 - 2.14

Re: [OE-core] [PATCH] kernel.bbclass: Stage System.map with KERNEL_VERSION suffix

2011-06-23 Thread Richard Purdie
On Wed, 2011-06-22 at 16:48 -0700, Tom Rini wrote: Without this, images will fail now that kernel-abiversion is back. Signed-off-by: Tom Rini tom_r...@mentor.com --- meta/classes/kernel.bbclass |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Merged to master, thanks. Richard

Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Richard Purdie
On Wed, 2011-06-22 at 16:22 -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-06-22 at 15:31 -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 1:28 PM, Mark Hatle mark.ha...@windriver.com wrote: On 6/22/11 1:35

[OE-core] [PATCH V2 0/1] Removing hard coded libdir for libc locale generating

2011-06-23 Thread Lianhao Lu
V2: Use base_libdir instead of libdir for ldlibdir. V1: The patch replaces the hard coded libdir in package_do_split_gconvs() in libc-package.bbclass to meet the requirement of multilib. The following changes since commit

[OE-core] [PATCH V2 1/1] libc-package.bbclass: Replace hard coded libdir.

2011-06-23 Thread Lianhao Lu
Replace the hard coded libdir for locale generating to meet the multilib requirement. Signed-off-by: Lianhao Lu lianhao...@intel.com --- meta/classes/libc-package.bbclass |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/meta/classes/libc-package.bbclass

Re: [OE-core] sstate skips STAGING_DIR_KERNEL?

2011-06-23 Thread Richard Purdie
On Wed, 2011-06-22 at 17:20 -0700, Tom Rini wrote: As part of looking into the problem I had that I just posted a patch for I was going why isn't -c clean (or cleanall or cleansstate) knocking out STAGING_DIR_KERNEL contents? Answer, sstate is totally skipping that out. Is there some

Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Tom Rini
On 06/22/2011 09:13 PM, Khem Raj wrote: On Wed, Jun 22, 2011 at 4:29 PM, Tom Rini tom_r...@mentor.com wrote: On 06/22/2011 04:22 PM, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-06-22 at 15:31 -0700, Khem Raj wrote: On

Re: [OE-core] sstate skips STAGING_DIR_KERNEL?

2011-06-23 Thread Tom Rini
On 06/23/2011 09:15 AM, Tom Rini wrote: On 06/23/2011 08:29 AM, Richard Purdie wrote: On Wed, 2011-06-22 at 17:20 -0700, Tom Rini wrote: As part of looking into the problem I had that I just posted a patch for I was going why isn't -c clean (or cleanall or cleansstate) knocking out

Re: [OE-core] sstate skips STAGING_DIR_KERNEL?

2011-06-23 Thread Koen Kooi
Op 23 jun 2011, om 18:51 heeft Tom Rini het volgende geschreven: On 06/23/2011 09:15 AM, Tom Rini wrote: On 06/23/2011 08:29 AM, Richard Purdie wrote: On Wed, 2011-06-22 at 17:20 -0700, Tom Rini wrote: As part of looking into the problem I had that I just posted a patch for I was going why

[OE-core] [PATCH 3/9] base-passwd: Fix owners/groups

2011-06-23 Thread Mark Hatle
Fix the owners and groups of specific files copied from the developmen tree. This resolves an issue where those files gain the user/group id of the build user. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- .../recipes-core/base-passwd/base-passwd_3.5.22.bb | 10 +- 1 files

Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Khem Raj
On Thu, Jun 23, 2011 at 9:26 AM, Tom Rini tom_r...@mentor.com wrote: On 06/22/2011 09:13 PM, Khem Raj wrote: On Wed, Jun 22, 2011 at 4:29 PM, Tom Rini tom_r...@mentor.com wrote: On 06/22/2011 04:22 PM, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie

[OE-core] [PATCH 4/9] ghostscript: Fix owner/group of /etc/cups

2011-06-23 Thread Mark Hatle
/etc/cups is owned by root:lp from the cups package, the associated ghostscript was creating the /etc/cups directory as root:root. /etc/cups is the authoritative source. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- .../ghostscript/ghostscript_9.02.bb|4 +++- 1

[OE-core] [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files

2011-06-23 Thread Mark Hatle
All of the files in ${datadir}/xml/gnome/xslt were being given the uid/gid of the build user. Fix this for the target case, avoid it in the native. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-gnome/gnome/gnome-doc-utils.inc |3 +++

[OE-core] [PATCH 8/9] db: Fix file ownership

2011-06-23 Thread Mark Hatle
Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-support/db/db_5.1.19.bb |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/recipes-support/db/db_5.1.19.bb b/meta/recipes-support/db/db_5.1.19.bb index fc87c31..a8ae1bd 100644 ---

[OE-core] [PATCH 2/9] resolveconf: Fix file owners

2011-06-23 Thread Mark Hatle
The file ownership of various configuration files needs to be set to root:root otherwise it inherits the user id of the build. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- .../resolvconf/resolvconf_1.48.bb |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)

[OE-core] [PATCH 6/9] tzdata: Ensure all files are owned by root:root

2011-06-23 Thread Mark Hatle
Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-extended/tzdata/tzdata_2011g.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/tzdata/tzdata_2011g.bb b/meta/recipes-extended/tzdata/tzdata_2011g.bb index ed343c0..49847d3

Re: [OE-core] [PATCH 0/4] eglibc 2.14 upgrade

2011-06-23 Thread Khem Raj
On Thu, Jun 23, 2011 at 6:31 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-06-22 at 16:22 -0700, Khem Raj wrote: On Wed, Jun 22, 2011 at 3:59 PM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-06-22 at 15:31 -0700, Khem Raj wrote: On Wed,

[OE-core] [PATCH 1/9] native/nativesdk: Add a simple chown intercept command

2011-06-23 Thread Mark Hatle
During native and nativesdk package we want to intercept any calls to chown and do nothing. This prevents errors and allows the same recipes to be used for both native and target recipes. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/classes/native.bbclass|2 ++

[OE-core] [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig

2011-06-23 Thread Mark Hatle
Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb b/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb index

Re: [OE-core] [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig

2011-06-23 Thread Koen Kooi
Op 23 jun 2011, om 20:19 heeft Mark Hatle het volgende geschreven: Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |6 +- Not related to this patch, but 0.2.2 is out and we'll need some more updates for (e)glibc 2.14

[OE-core] [PATCH 0/9] Revised patch set for fixing owners/groups

2011-06-23 Thread Mark Hatle
This is a revised patch set for fixing the owners/groups. It adds a local intercrepter routine for chown that runs only with native and nativesdk packages. Also update the rejected python patch to fix only the gobject item. The following changes since commit

[OE-core] [PATCH 1/9] native.bbclass: Add a simple chown intercept command (v2)

2011-06-23 Thread Mark Hatle
During native recipe processing we want to intercept any calls to chown and do nothing. This prevents errors and allows the same recipes to be used for both native and target recipes. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/classes/native.bbclass|2 ++

[OE-core] [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files (v2)

2011-06-23 Thread Mark Hatle
All of the files in ${datadir}/xml/gnome/xslt were being given the uid/gid of the build user. Fix this for the target case, avoid it in the native. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-gnome/gnome/gnome-doc-utils.inc |2 ++

[OE-core] [PATCH 0/9] Revised patch set for fixing owners/groups (V2)

2011-06-23 Thread Mark Hatle
Misunderstood nativesdk. I thought it was not running under fakeroot control. No reason to intercept chown for nativesdk, revert that hunt. Also removed an errant debug statement. --- This is a revised patch set for fixing the owners/groups. It adds a local intercrepter routine for chown

Re: [OE-core] [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig

2011-06-23 Thread Khem Raj
On Thu, Jun 23, 2011 at 11:10 AM, Koen Kooi k...@dominion.thruhere.net wrote: Op 23 jun 2011, om 20:19 heeft Mark Hatle het volgende geschreven: Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |    6 +- Not related to this patch,

Re: [OE-core] sstate skips STAGING_DIR_KERNEL?

2011-06-23 Thread Richard Purdie
On Thu, 2011-06-23 at 09:51 -0700, Tom Rini wrote: On 06/23/2011 09:15 AM, Tom Rini wrote: On 06/23/2011 08:29 AM, Richard Purdie wrote: On Wed, 2011-06-22 at 17:20 -0700, Tom Rini wrote: As part of looking into the problem I had that I just posted a patch for I was going why isn't -c

[OE-core] [PATCH] libtirpc: Upgrade 0.2.1 - 0.2.2

2011-06-23 Thread Khem Raj
Additionally bring in the nis headers which will be required when using eglibc 2.14 where rpc support is removed. Make it provide virtual/librpc Signed-off-by: Khem Raj raj.k...@gmail.com --- .../libtirpc-0.2.2/libtirpc-0.2.1-fortify.patch| 26 +

Re: [OE-core] [PATCH 0/1] More LICENSE cleanup and additional common-licenses

2011-06-23 Thread Richard Purdie
On Wed, 2011-06-15 at 14:01 -0700, Flanagan, Elizabeth wrote: I've added some more licenses from the SPDX project as well as corrected some text. GCC's LICENSE field was problematic and I've corrected it to the actual GPL exception license text. I've also cleaned up gdb's LICENSE field.

Re: [OE-core] [PATCH 13/40] python: Switch to using the default -dbg package (v2)

2011-06-23 Thread Khem Raj
On 06/22/2011 11:16 AM, Mark Hatle wrote: Python was missing a lot of debug information. Switch to use the default -dbg package. Also add some additional debug information to the -dbg package. Signed-off-by: Mark Hatlemark.ha...@windriver.com --- .../python/python-2.6-manifest.inc

Re: [OE-core] [PATCH 01/40] resolveconf: Fix file owners

2011-06-23 Thread Khem Raj
On 06/22/2011 10:35 AM, Mark Hatle wrote: The file ownership of various configuration files needs to be set to root:root otherwise it inherits the user id of the build. Signed-off-by: Mark Hatlemark.ha...@windriver.com --- .../resolvconf/resolvconf_1.48.bb |3 ++- 1

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-23 Thread Khem Raj
On 06/23/2011 03:14 AM, Richard Purdie wrote: On Thu, 2011-06-23 at 10:40 +0100, Phil Blundell wrote: On Thu, 2011-06-23 at 12:08 +0800, Xu, Dongxiao wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org

Re: [OE-core] [PATCH 4/4] base/glib-2.0: Simplify USE_NLS handling for glib-2.0

2011-06-23 Thread Khem Raj
On 06/23/2011 05:27 AM, Richard Purdie wrote: Currently the only way to get anything to build is to set USE_NLS=yes for glib-2.0. We might as well do this in the recipe by default for now and simpllify the code. The magic handling of USE_NLS_recipename is also removed since this can be done in

[OE-core] Minutes: OpenEmbedded eV Board meeting, 20-Jun-2011

2011-06-23 Thread Denys Dmytriyenko
Minutes: OpenEmbedded eV Board meeting, 20-Jun-2011 Attendees: Michael Lauer (mickey) Philip Balister (Crofton) Florian Boor (florian) Denys Dmytriyenko (denix) Agenda: 00) congratulate Mickey with the recent birth of his daughter 01) denix agrees to take meeting minutes 02) state the agenda