Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 10:22 -0500, Kumar Gala wrote: > On Jul 26, 2011, at 8:59 AM, Richard Purdie wrote: > > > On Tue, 2011-07-26 at 08:47 -0500, Kumar Gala wrote: > >> On Jul 26, 2011, at 7:44 AM, Richard Purdie wrote: > >> > >>> Signed-off-by: Richard

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 09:57 -0500, Mark Hatle wrote: > On 7/26/11 7:44 AM, Richard Purdie wrote: > > Signed-off-by: Richard Purdie > > --- > > meta/conf/machine/include/powerpc/arch-powerpc.inc | 45 > > +++- > > meta/conf/machine/includ

Re: [OE-core] [PATCH 2/3] Add basic Mips core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 09:41 -0500, Mark Hatle wrote: > Few quick items here: > > On 7/26/11 7:44 AM, Richard Purdie wrote: > > Signed-off-by: Richard Purdie > > --- > > meta/conf/machine/include/mips/arch-mips.inc | 64 > > +- > >

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 11:53 -0500, Mark Hatle wrote: > On 7/26/11 11:36 AM, Richard Purdie wrote: > > On Tue, 2011-07-26 at 09:57 -0500, Mark Hatle wrote: > >> On 7/26/11 7:44 AM, Richard Purdie wrote: > >>> Signed-off-by: Richard Purdie > >>> --- >

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 12:15 -0500, Mark Hatle wrote: > On 7/26/11 12:05 PM, Richard Purdie wrote: > > On Tue, 2011-07-26 at 11:53 -0500, Mark Hatle wrote: > >> On 7/26/11 11:36 AM, Richard Purdie wrote: > >>> On Tue, 2011-07-26 at 09:57 -0500, Mark Hatle wrote: >

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
I've taken various comments on board and a revised version of the PPC version is: http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=rpurdie/ml4&id=fa4a7b05bcfe397bb9243efb7138a6cc0a9d93fd Cheers, Richard ___ Openembedded-core mailing list

[OE-core] [PATCH 2/8] lib/oe/util.py: Add MLPREFIX support to prune_suffix()

2011-07-26 Thread Richard Purdie
prune_suffix() also needs be aware of MLPREFIX when changing PN for use in BPN. Signed-off-by: Richard Purdie --- meta/lib/oe/utils.py |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 5a63ed3..b3473d3 100644 --- a

[OE-core] [PATCH 5/8] cmake.bbclass: add ${libdir}} for multilib case

2011-07-26 Thread Richard Purdie
From: Yu Ke Signed-off-by: Yu Ke --- meta/classes/cmake.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 5ac540c..89a154f 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes/cmake.bbclass @

[OE-core] [PATCH 4/8] eglibc: fix for multilib RPROVIDES issue

2011-07-26 Thread Richard Purdie
From: Yu Ke in eglibc-package.inc, the "PACKAGES" variable use the ${PN} reference, while RPROVIDES does not use ${PN}. This will lead multilib.bbclass not mapping its RPROVIDES, and cause "NO RPROVIDER: lib64-glibc-utils" error. This patch unify the recipe to fix this issue Signed-off-by: Yu K

[OE-core] [PATCH 6/8] linux-yocto: revise the dependency for multilib

2011-07-26 Thread Richard Purdie
From: Yu Ke Signed-off-by: Yu Ke --- meta/recipes-kernel/linux/linux-tools.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-kernel/linux/linux-tools.inc b/meta/recipes-kernel/linux/linux-tools.inc index 729e912..950f197 100644 --- a/meta/recipes-kernel

[OE-core] [PATCH 7/8] distcc: fix makefile parameter order

2011-07-26 Thread Richard Purdie
From: Dongxiao Xu When linking with gcc, the parameter is read from left to write, if *.o calls a function contained in libxxx, the parameter order should be "gcc ... *.o -lxxx". This commit fixes the problem in distcc. Signed-off-by: Dongxiao Xu --- meta/recipes-devtools/distcc/distcc_2.18.

[OE-core] [PATCH 1/8] multilib: Add support for compiling recipes against multiple ABIs

2011-07-26 Thread Richard Purdie
-off-by: Yu Ke Signed-off-by: Xu Dongxiao Signed-off-by: Lianhao Lu Signed-off-by: Richard Purdie --- meta/classes/autotools.bbclass |2 +- meta/classes/insane.bbclass |3 +- meta/classes/multilib.bbclass | 87 +++ meta

[OE-core] [PATCH 3/8] do_split_packages: revise for multilib case

2011-07-26 Thread Richard Purdie
From: Yu Ke in multilib case, the PACKAGE_DYNAMIC is overrided with multilib prefix. Take multilib:lib64-perl as example. the "perl-module-*" will become "lib64-perl-module-*" the output_pattern in do_split_packages is designed to work with PACKAGE_DYNAMIC, so it should be applied with the same

[OE-core] [PATCH 0/8] Multilib core enablement patches

2011-07-26 Thread Richard Purdie
bedded.org/openembedded-core-contrib rpurdie/ml4 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rpurdie/ml4 Dongxiao Xu (1): distcc: fix makefile parameter order Mark Hatle (1): RPM: multilib file class/color Richard Purdie (2): multilib: Add support for compiling recip

[OE-core] [PATCH 8/8] RPM: multilib file class/color

2011-07-26 Thread Richard Purdie
From: Mark Hatle We need to include file class and file color in order to do the conflict resolution required with a multilib design. This is normally disabled when we don't use the internal dependency generator, patch enables it in all cases. Signed-off-by: Mark Hatle --- meta/recipes-devtoo

[OE-core] [PATCH 0/3] Multilib image/package backend enablement

2011-07-26 Thread Richard Purdie
The following three patches enable very basic multilib support for the opkg and rpm backends. They are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rpurdie/ml5 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rpurdie/ml5 Lian

[OE-core] [PATCH 2/3] package(rootfs)_ipk.bbclass: support multilib in opkg backend.

2011-07-26 Thread Richard Purdie
From: Lianhao Lu Support install multiple multilib in opkg backend. The installation is done in 3 phases. Phase 1: install normal packages to IMAGE_ROOTFS. Phase 2: install multilib packages under MULTILIB_TEMP_ROOTFS. Packages belongs to the same multilib arch would be installed to a unique d

[OE-core] [PATCH 3/3] image.bbclass: Added variables for multilib support.

2011-07-26 Thread Richard Purdie
From: Lianhao Lu 1. Added MULTILIB_PACKAGE_INSTALL for multilib instances of packages to be installed in the rootfs. 2. MULTILIBRE_ALLOW_REP contains the regular expression to match the files allow to be replaced by the conflicting files. 3. MULTILIBRE_FORCE_SAME contains the regular expression

[OE-core] [PATCH 1/3] package/rootfs_rpm: Implement RPM multilib package handling

2011-07-26 Thread Richard Purdie
From: Mark Hatle This is a first pass at adding multilib support to the RPM package and image handling code. Signed-off-by: Mark Hatle --- meta/classes/package_rpm.bbclass | 229 -- meta/classes/rootfs_rpm.bbclass | 17 +++- 2 files changed, 160 insertio

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 17:02 -0500, Kumar Gala wrote: > On Jul 26, 2011, at 11:18 AM, Richard Purdie wrote: > > >>> You're already found the way to pass configuration to *libc using values > >>> in TARGET_FPU to pickup the right configuration. > >&g

Re: [OE-core] [PATCH 1/1] license.bbclass: Splitting out licenses

2011-07-26 Thread Richard Purdie
On Tue, 2011-07-26 at 08:15 -0700, Flanagan, Elizabeth wrote: > On Tue, Jul 26, 2011 at 7:57 AM, Richard Purdie > wrote: > > On Mon, 2011-07-25 at 16:24 -0700, Flanagan, Elizabeth wrote: > >> Adding a bit more functionality here: > >> 1. Adding some more SPDX M

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-27 Thread Richard Purdie
On Tue, 2011-07-26 at 22:23 -0500, Kumar Gala wrote: > On Jul 26, 2011, at 5:52 PM, Richard Purdie wrote: > > > On Tue, 2011-07-26 at 17:02 -0500, Kumar Gala wrote: > >> On Jul 26, 2011, at 11:18 AM, Richard Purdie wrote: > >> > >>>>> You're

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-27 Thread Richard Purdie
On Tue, 2011-07-26 at 17:03 -0500, Kumar Gala wrote: > On Jul 26, 2011, at 11:18 AM, Richard Purdie wrote: > > > On Tue, 2011-07-26 at 10:22 -0500, Kumar Gala wrote: > >> On Jul 26, 2011, at 8:59 AM, Richard Purdie wrote: > >> > >>> On Tue, 2011-07-26 a

[OE-core] Master branch merges

2011-07-27 Thread Richard Purdie
We're coming up to an interesting point in the development cycle since a lot of the feature development work Yocto has been working on is winding up. It means there are a few significant patches waiting to go into master. Typically, life isn't straightforward and this is complicated by the fact I'

Re: [OE-core] [PATCH 3/3] Add basic PowerPC core tune config

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 10:44 +0200, Koen Kooi wrote: > Op 27 jul. 2011, om 10:36 heeft Richard Purdie het volgende geschreven: > > > [..] > > > We could also put: > > > > GLIBC_EXTRA_OECONF = "--with-cpu=e500" > > > > in the machine con

Re: [OE-core] [Consolidated & Tested 24/35] siteinfo: Move certain bash entries to common-linux

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 10:44 +0100, Phil Blundell wrote: > On Wed, 2011-07-27 at 00:47 -0700, Saul Wold wrote: > > diff --git a/meta/site/arm-common b/meta/site/arm-common > > index 5d3e68a..39eb30b 100644 > > --- a/meta/site/arm-common > > +++ b/meta/site/arm-common > > @@ -14,21 +14,7 @@ > > apr_

Re: [OE-core] [Consolidated & Tested 34/35] classes/image*: Revamp creation of live images

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 00:47 -0700, Saul Wold wrote: > This creates a live image as an IMAGE_FSTYPES, thus removing the > need to have additional -live.bb recipes. To create a live image > one just needs to add live to the IMAGE_FSTYPES list > > Signed-off-by: Saul Wold > --- > meta/classes/imag

Re: [OE-core] [Consolidated & Tested 00/35] July 27

2011-07-27 Thread Richard Purdie
Hi Saul, On Wed, 2011-07-27 at 00:46 -0700, Saul Wold wrote: > The following changes since commit 02031d766f983cd7e01e468cb2c926604313cd2a: > > arch-ia32.inc: Fix up TUNE_ARCH variable conflicts (2011-07-26 22:39:49 > +0100) > > are available in the git repository at: > git://git.openembedd

Re: [OE-core] [PATCH 1/3] Add ARM tune file overhaul based largely on work from Mark Hatle

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 13:17 +0100, Phil Blundell wrote: > On Tue, 2011-07-26 at 13:44 +0100, Richard Purdie wrote: > > +TARGET_FPU = "${@d.getVar('ARMPKGSFX_FPU', True).strip('-') or 'soft'}" > > This seems a bit backwards. Shouldn'

[OE-core] [PATCH 0/4] Various Misc tweaks

2011-07-27 Thread Richard Purdie
The following series is for a few things I've noticed needed fixing as various patches have gone by: git://git.openembedded.org/openembedded-core-contrib rpurdie/misc2 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rpurdie/misc2 Richard Purdie (4): base.bb

[OE-core] [PATCH 1/4] base.bbclass: Add compatibility package name mapping handler

2011-07-27 Thread Richard Purdie
This means if PKGARCHCOMPAT_ARMV7A is set, "armv7a-vfp-neon" is renamed to be "armv7a". Other compatibility mappings can be added as needed. Signed-off-by: Richard Purdie --- meta/classes/base.bbclass |8 1 files changed, 8 insertions(+), 0 deletions(-) diff

[OE-core] [PATCH 3/4] module-init-tools-cross: Drop static binaries patch as a better fix has been merged

2011-07-27 Thread Richard Purdie
Signed-off-by: Richard Purdie --- .../files/no-static-binaries.patch | 25 .../module-init-tools-cross_3.16.bb|2 - 2 files changed, 0 insertions(+), 27 deletions(-) delete mode 100644 meta/recipes-kernel/module-init-tools/files/no

[OE-core] [PATCH 2/4] gcc: Drop part of the 64bithack patch which is no longer used

2011-07-27 Thread Richard Purdie
anup. There is still a valid question over the remainder of this patch and its interaction with multilib configurations. Signed-off-by: Richard Purdie --- .../recipes-devtools/gcc/gcc-4.5.1/64bithack.patch | 13 - meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch | 13 ---

[OE-core] [PATCH 4/4] base.bbclass: Fix PACKAGE_ARCH typo

2011-07-27 Thread Richard Purdie
Signed-off-by: Richard Purdie --- meta/classes/base.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3ed1bb8..a0a189f 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -407,7

Re: [OE-core] [PATCH 1/3] Add ARM tune file overhaul based largely on work from Mark Hatle

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 09:27 -0500, Mark Hatle wrote: > On 7/27/11 8:33 AM, Richard Purdie wrote: > > On Wed, 2011-07-27 at 13:17 +0100, Phil Blundell wrote: > >> On Tue, 2011-07-26 at 13:44 +0100, Richard Purdie wrote: > >>> +TARGET_FPU = "${@d.getVar('A

Re: [OE-core] [PATCH 1/4] base.bbclass: Add compatibility package name mapping handler

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 09:44 -0500, Mark Hatle wrote: > On 7/27/11 9:29 AM, Richard Purdie wrote: > > This means if PKGARCHCOMPAT_ARMV7A is set, "armv7a-vfp-neon" is renamed > > to be "armv7a". Other compatibility mappings can be added as needed. > > Th

Re: [OE-core] [PATCH 1/1] linux-yocto: update SRCREVs

2011-07-27 Thread Richard Purdie
On Tue, 2011-07-26 at 23:55 -0400, Bruce Ashfield wrote: > Updating the linux-yocto SRCREVs to pickup changes from the > continuing uprev to korg 3.0. With this set of update, the > meta/feature audits are complete. > > qemumips and qemuppc are fixed with this update and can now > boot to a prompt

Re: [OE-core] [PATCH 1/3] Add ARM tune file overhaul based largely on work from Mark Hatle

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 16:25 +0100, Phil Blundell wrote: > On Wed, 2011-07-27 at 09:58 -0500, Mark Hatle wrote: > > For the tune names.. armv5 means I want classic ARM instructions, while > > armv5t > > means I was thumb instructions. > > > > So armv5 and armv5t are distinct in the contents of th

Re: [OE-core] [PATCH] libpam 1.1.4: fix packaging

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 17:21 +0200, Koen Kooi wrote: > | ERROR: QA Issue: non debug package contains .debug directory: libpam-xtests > path > /work/armv7a-angstrom-linux-gnueabi/libpam-1.1.4-r0/packages-split/libpam-xtests/usr/share/Linux-PAM/xtests/.debug/tst-pam_dispatch4 > > Signed-off-by: Koe

Re: [OE-core] [PATCH] base bbclass: add TUNE_FEATURES to the default banner

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 17:13 +0200, Koen Kooi wrote: > This makes debugging the new tune code easier since it doesn't involve > staring at 'bitbake -e' output anymore. > > Signed-off-by: Koen Kooi > --- > meta/classes/base.bbclass |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Me

Re: [OE-core] [Consolidated & Tested 27/35] siteinfo: Move the rp-pppoe entry to common-linux

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 08:36 -0700, Tom Rini wrote: > On 07/27/2011 02:47 AM, Phil Blundell wrote: > > On Wed, 2011-07-27 at 00:47 -0700, Saul Wold wrote: > >> --- a/meta/site/common-linux > >> +++ b/meta/site/common-linux > >> @@ -23,3 +23,6 @@ bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no}

Re: [OE-core] [PATCH] opkg svn: bump SRCREV to 625

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 11:47 +0200, Koen Kooi wrote: > tested on beagleboard/angstrom and qemuarm/angstrom > > Signed-off-by: Koen Kooi > --- > meta/recipes-devtools/opkg/opkg_svn.bb |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Merged to master, thanks. Richard __

Re: [OE-core] [PATCH 1/1] ghostscript: fix parallel build issue

2011-07-27 Thread Richard Purdie
On Wed, 2011-07-27 at 17:34 +0800, Kang Kai wrote: > From: Kang Kai > > ghostscript fails some time on autobuilder, it seems a parallel build issue. > Add patch to fix it. > > Fixes [Yocto #1202] > > Signed-off-by: Kang Kai Merged to master, thanks. Richard

Re: [OE-core] [PATCH 6/3] Move architecture specific TARGET_OS mangling into tune files

2011-07-27 Thread Richard Purdie
On Mon, 2011-07-25 at 17:23 +0100, Phil Blundell wrote: > On Mon, 2011-07-25 at 14:42 +0100, Richard Purdie wrote: > > To try and help preserve my sanity when pulling the various multilib > > patches together, I've merged these six patches, along with a patch > > incre

Re: [OE-core] [PATCH 17/22] bitbake.conf: Add default tune-${DEFAULTTUNE} override

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Mark Hatle > > We need to add the tune-* override in order for more complicated tune > features to function properly. > > Signed-off-by: Mark Hatle > --- > meta/conf/bitbake.conf |3 ++- > 1 files changed, 2 insertions(+), 1 delet

Re: [OE-core] [PATCH 15/22] tune/powerpc: Cleanup setting of TUNE_PKGARCH

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Mark Hatle > > Based on Kumar Gala 's patch. > > By default we use ppc, or ppc64. Each tune either specifies their > manual version or can use the PPC_PKGARCH to specify a new prefix > if they support both float and no-float variants.

Re: [OE-core] [PATCH 10/22] tune/arch-powerpc: Use fpu-soft to set PPCPKGSFX_FPU

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Kumar Gala > > Its more likely that we explicitly set soft-floating point support for a > given target than hard. So use 'fpu-soft' in TUNE_FEATURES rather than > 'fpu-hard' to determine setting 'nf' (no-float) in PPCPKGSFX_FPU. > > Si

Re: [OE-core] [PATCH 13/22] sanity: Dont throw a warning if TUNE_PKGARCH is in PACKAGE_ARCHS twice

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > Signed-off-by: Saul Wold > --- > meta/classes/sanity.bbclass |8 +--- > 1 files changed, 5 insertions(+), 3 deletions(-) > > diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass > index 999e15d..dc11c9e 100644 > ---

Re: [OE-core] [PATCH 16/22] populate_sdk: Fix the introduction of sdknative packages

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Mark Hatle > > The sdknative packages were not being introduced into the list of available > packages properly. Fix this by always introducing it and avoiding a sed of > one type to another. > > Also fix a number of minor issues with t

Re: [OE-core] [PATCH 20/22] arch-armv7a.inc: fix armv7a-vfp-neon -> armv7a compat case

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Koen Kooi > > Without this 'armv7a' is used as TUNE_ARCH but does *not* end up in > PACKAGE_EXTRA_ARCHS: > > arch all 1 > arch any 6 > arch noarch 11 > arch arm 16 > arch armv4 21 > arch armv4t 26 > arch armv5 31 > arch armv5t 36 > arc

Re: [OE-core] [PATCH 21/22] external-*toolchain: remove glibc-utils provide

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > This was causing a multiple providers error What kind of multiple providers error? This change doesn't feel right to me and likely breaks external toolchains. Cheers, Richard > > Signed-off-by: Saul Wold > --- > .../meta/external-csl-tool

Re: [OE-core] [PATCH 22/22] feature-arm-thumb: Take ARM_INSTRUCTION_SET into account to decide thumb mode

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > From: Khem Raj > > This will decouple the compiling in thumb mode from having thumb > capable cores. > > Signed-off-by: Khem Raj > --- > .../conf/machine/include/arm/feature-arm-thumb.inc |6 -- > 1 files changed, 4 insertions(+), 2

Re: [OE-core] [PATCH 1/1] package_rpm.bbclass: fix one typo

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 19:54 +0800, Yu Ke wrote: > fix the MLPREFIX referrence typo which cause multilib rpm > do_rootfs failure > > CC: Mark Hatle > > Signed-off-by: Yu Ke > --- > meta/classes/package_rpm.bbclass |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Merged to master,

Re: [OE-core] [CONSOLIDATED PATCH 00/22] Fixes Multi-Lib & M3

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 00:35 -0700, Saul Wold wrote: > This set of patches are what have been pulled together for the > M3 RC1 build. They include patches to multi-lib and tuning changes > put last week. > > There are also 2 changes from Josh for bitbake, not included here, > which are included in

[OE-core] Commits to master in my absence

2011-08-01 Thread Richard Purdie
I'm a little frustrated to see what happened when I was away from a couple of days. I thought we'd agreed we'd queue up patches in a branch and then I'd take care of things when I got back. I appreciate a serious bug was then found and a fix was committed against what I thought was agreed. This th

Re: [OE-core] [PATCH v2] arch-armv7a.inc: fix armv7a-vfp-neon -> armv7a compat case

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 15:41 +0200, Koen Kooi wrote: > Without this 'armv7a' is used as TUNE_ARCH but does *not* end up in > PACKAGE_EXTRA_ARCHS: > > arch all 1 > arch any 6 > arch noarch 11 > arch arm 16 > arch armv4 21 > arch armv4t 26 > arch armv5 31 > arch armv5t 36 > arch armv5-vfp 41 > arch

Re: [OE-core] [PATCH v2] arch-armv7a.inc: fix armv7a-vfp-neon -> armv7a compat case

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 16:00 +0200, Koen Kooi wrote: > Op 1 aug. 2011, om 15:47 heeft Richard Purdie het volgende geschreven: > > > On Mon, 2011-08-01 at 15:41 +0200, Koen Kooi wrote: > >> Without this 'armv7a' is used as TUNE_ARCH but does *not* end

Re: [OE-core] [PATCH] gcc: Add ability for tune files to pass in configure options to gcc

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 09:44 -0700, Tom Rini wrote: > On 08/01/2011 09:07 AM, Phil Blundell wrote: > > On Mon, 2011-08-01 at 09:37 -0500, Kumar Gala wrote: > >> Not sure I understand the statement about disambiguate the resulting > >> compilers, on PPC where I intend to utilize this we'd have the t

Re: [OE-core] lib64 not getting picked up

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 11:28 -0500, Mark Hatle wrote: > On 8/1/11 11:15 AM, Kumar Gala wrote: > > I'm trying to build a powerpc 64-bit system and for some reason everything > > is still in /lib instead of /lib64. > > > > I'd expect things in /lib64 based on how arch-powerpc64.inc has: > > > > BAS

Re: [OE-core] [PATCH 1/8] multilib: Add support for compiling recipes against multiple ABIs

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 17:30 +0100, Phil Blundell wrote: > On Tue, 2011-07-26 at 22:53 +0100, Richard Purdie wrote: > > +MULTILIBS ??= "multilib:lib32" > > +BBCLASSEXTEND_append_pn-linux-libc-headers = " ${MULTILIBS}" > > +BBCLASSEXTEND

Re: [OE-core] Commits to master in my absence

2011-08-01 Thread Richard Purdie
On Mon, 2011-08-01 at 12:25 -0700, Tom Rini wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 08/01/2011 06:45 AM, Richard Purdie wrote: > > > I'm a little frustrated to see what happened when I was away from a > > couple of days. I thought we

Re: [OE-core] [PATCH] automake: Fix issue with tar configure failing with large UID/GIDs

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 03:14 -0500, Kumar Gala wrote: > Add a fixup for trying to create ustar archives when the users > UID or GID is larger than the format allows. > > Based on a patch from Tom Rini > > Signed-off-by: Kumar Gala > --- > meta/recipes-devtools/automake/automake.inc|2

Re: [OE-core] erratic failure of pseudo

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 07:28 +, James Limbouris wrote: > Hi, > > I've just switched to oe-core from -dev, and I'm finding that my root > images are showing incorrect permissions on files, randomly. From one > build to the next, different subsets of files and folders end up owned > by 1000:1000,

Re: [OE-core] [PATCH] glibc: deleted

2011-08-02 Thread Richard Purdie
nto OE-Core > > But this seems to have triggered a problem with PREFERRED_PROVIDER from > multiple recipes. (see http://bugzilla.pokylinux.org/show_bug.cgi?id=1309) This isn't really as a result of Phils patch. I've a proposed fix: --- Author: Richard Purdie eglibc: Add mis

Re: [OE-core] [PATCH] scripts/runqemu: grep for line beginning with TMPDIR

2011-08-02 Thread Richard Purdie
On Mon, 2011-08-01 at 18:47 -0700, Khem Raj wrote: > Currently the grep regexp matches any occurance of > 'TMPDIR=' but if you have another variable defined > e.g. OE_BUILD_TMPDIR=xxx then that gets picked up > too. > > $ bitbake -e | grep TMPDIR=\" > TMPDIR="/home/kraj/work/angstrom/build/tmp-ang

Re: [OE-core] [PATCH 1/1] oe-init-build-env, scripts/oe-buildenv-internal: add error detecting for $BDIR

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 14:08 +0800, Dexuan Cui wrote: > [YOCTO #671] > > "readlink -f" in Ubuntu 10.04 is buggy: it doesn't ignore a trailing / (e.g., > "readlink -f /tmp/non-existent-dir/" returns nothing, but according to > http://www.gnu.org/s/coreutils/manual/coreutils.pdf it should do that --

[OE-core] [PATCH] tune/ppc: Fix various TUNE_PKGARCH issues

2011-08-02 Thread Richard Purdie
We need to ensure only one value ends up in TUNE_PKGARCH rather than several. This change ensures consistency accross all the PPC tune files and that they correctly inherit the core value but also allow it to be overwritten. Signed-off-by: Richard Purdie --- diff --git a/meta/conf/machine

Re: [OE-core] [PATCH 0/5] Fix the SDK generation

2011-08-02 Thread Richard Purdie
On Mon, 2011-08-01 at 19:17 -0500, Mark Hatle wrote: > This is an attempt to fix a number of issues with the SDK generation. It has > been > tested using bitbake meta-toolchain-sdk. > > Note, patches: > > 4/5: package_ipk: SDK generation workaround > 5/5: update-alternatives: Add alternatives

Re: [OE-core] [PATCH 13/22] sanity: Dont throw a warning if TUNE_PKGARCH is in PACKAGE_ARCHS twice

2011-08-02 Thread Richard Purdie
On Mon, 2011-08-01 at 11:59 -0700, Khem Raj wrote: > On Mon, Aug 1, 2011 at 11:51 AM, Kumar Gala wrote: > > > > On Aug 1, 2011, at 12:34 PM, Khem Raj wrote: > > > >> On (01/08/11 09:11), Kumar Gala wrote: > >>> > >>> On Aug 1, 2011, at 8:03

Re: [OE-core] [PATCH] gcc: Add ability for tune files to pass in configure options to gcc

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 08:11 -0500, Kumar Gala wrote: > On Aug 1, 2011, at 11:57 AM, Richard Purdie wrote: > > > On Mon, 2011-08-01 at 09:44 -0700, Tom Rini wrote: > >> On 08/01/2011 09:07 AM, Phil Blundell wrote: > >>> On Mon, 2011-08-01 at 09:37 -0500, Ku

Re: [OE-core] Layer priorities influencing default version selection

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 12:26 +0100, Paul Eggleton wrote: > Hi all, > > Andrea pointed out a situation where he has seen the layer priority > overriding > version selection, and I've been able to confirm it. > > Basically, if you have a recipe with a lower version in a layer with a higher > prio

Re: [OE-core] [PATCH] tune/arch-powerpc64: keep insync with arch-powerpc.inc

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 14:18 -0500, Kumar Gala wrote: > * Add DEFAULTTUNE setting > * Sync TUNE_PKGARCH with: > commit 20f285728219c1efcc23d8e861902c212893c68d > Author: Richard Purdie > Date: Tue Aug 2 12:40:06 2011 +0100 > > tune/ppc: Fix

Re: [OE-core] [PATCH 10/22] tune/arch-powerpc: Use fpu-soft to set PPCPKGSFX_FPU

2011-08-02 Thread Richard Purdie
On Tue, 2011-08-02 at 13:31 -0500, Kumar Gala wrote: > On Aug 1, 2011, at 8:03 AM, Richard Purdie wrote: > > > On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > >> From: Kumar Gala > >> > >> Its more likely that we explicitly set soft-floating point su

Re: [OE-core] [PATCH 5/5] update-alternatives: Add alternatives as a runtime provide

2011-08-03 Thread Richard Purdie
On Tue, 2011-08-02 at 09:49 -0500, Mark Hatle wrote: > On 8/2/11 8:46 AM, Phil Blundell wrote: > > On Mon, 2011-08-01 at 19:17 -0500, Mark Hatle wrote: > >> The following allows RPM to generate the SDK image, however without it > >> we get a failure because the system has nothing that provides /bin

Re: [OE-core] help with gcc-configure-common bug

2011-08-03 Thread Richard Purdie
On Tue, 2011-08-02 at 10:36 -0500, Kumar Gala wrote: > On Aug 1, 2011, at 1:58 PM, Kumar Gala wrote: > > > I'm trying to track down a bug related the following in > > gcc-configure-common.inc. I know there is one bug in the sed line, but > > when I fix that I run into a second issue. I'm tryin

[OE-core] [PATCH] libzypp: Correctly handle - in package architecture names

2011-08-03 Thread Richard Purdie
If package architectures contain - characters this needs to be mapped to something else in (_) since its illegal in C variable names. [YOCTO #1313 partially] Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp

[OE-core] [PATCH] autotools.bbclass: Fix m4 file race

2011-08-03 Thread Richard Purdie
If something removes .m4 files from the aclocal directory whilst aclocal is running it gets upset. To avoid this we need to take a copy of the aclocal directory and build against this instead. [YOCTO #861] Signed-off-by: Richard Purdie --- diff --git a/meta/classes/autotools.bbclass b/meta

[OE-core] [PATCH] bitbake.conf/qemux86-64: Automate TRANSLATED_TARGET_ARCH

2011-08-03 Thread Richard Purdie
Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index ac5d1f3..6f0b42c 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -728,7 +728,7 @@ TARGET_ARCH[unexport] = "1" DISTRO[unexport] = "1" # Used by cana

Re: [OE-core] [PATCH] libnss-mdns: dont use hard coded /lib path

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 10:15 -0500, Kumar Gala wrote: > As libdir might not be /lib (could be /lib64) use ${libdir} instead of > hard coded "/lib" in configure options set in EXTRA_OECONF. Do you mean ${libdir} or ${base_libdir} ? > Signed-off-by: Kumar Gala > --- > .../libnss-mdns/libnss-mdns_0

Re: [OE-core] [PATCH 5/5] update-alternatives: Add alternatives as a runtime provide

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 09:41 -0500, Mark Hatle wrote: > On 8/3/11 7:20 AM, Richard Purdie wrote: > > On Tue, 2011-08-02 at 09:49 -0500, Mark Hatle wrote: > >> On 8/2/11 8:46 AM, Phil Blundell wrote: > >>> On Mon, 2011-08-01 at 19:17 -0500, Mark Hatle wrote: >

Re: [OE-core] [PATCH 5/5] update-alternatives: Add alternatives as a runtime provide

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 11:03 -0500, Mark Hatle wrote: > On 8/3/11 10:40 AM, Richard Purdie wrote: > > On Wed, 2011-08-03 at 09:41 -0500, Mark Hatle wrote: > >> On 8/3/11 7:20 AM, Richard Purdie wrote: > >>> On Tue, 2011-08-02 at 09:49 -0500, Mark Hatle wrote: > >

Re: [OE-core] [PATCH v2] gcc: Fix setting of GLIBC_DYNAMIC_LINKER

2011-08-03 Thread Richard Purdie
On Tue, 2011-08-02 at 17:33 -0500, Kumar Gala wrote: > The sed regex in do_configure_prepend was producing the following result: > > #define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "/lib64/ld-linux-x86-64.so.2" > > instead of removing the leading "/lib" or "/lib64". > > Now we have it do: > > #

Re: [OE-core] [PATCH v2] libnss-mdns: dont use hard coded /lib path

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 10:28 -0500, Kumar Gala wrote: > As libdir might not be /lib (could be /lib64) use ${base_libdir} instead of > hard coded "/lib" in configure options set in EXTRA_OECONF. > > Signed-off-by: Kumar Gala > --- > * Use $base_libdir per feedback > Merged to master, thanks. Ric

Re: [OE-core] [PATCH v3] automake: Fix issue with tar configure failing with large UID/GIDs

2011-08-03 Thread Richard Purdie
On Tue, 2011-08-02 at 16:20 -0500, Kumar Gala wrote: > Add a fixup for trying to create ustar archives when the users > UID or GID is larger than the format allows. > > Signed-off-by: Tom Rini > Signed-off-by: Kumar Gala > --- > * Removed patch=1 > * Fixed a few whitespace issues > > meta/reci

Re: [OE-core] [PATCH] tune/arch-powerpc64: keep insync with arch-powerpc.inc

2011-08-03 Thread Richard Purdie
On Tue, 2011-08-02 at 16:00 -0500, Kumar Gala wrote: > On Aug 2, 2011, at 3:39 PM, Richard Purdie wrote: > > > On Tue, 2011-08-02 at 14:18 -0500, Kumar Gala wrote: > >> * Add DEFAULTTUNE setting > >> * Sync TUNE_PKGARCH with: > >>commit 20f285728219c1ef

Re: [OE-core] [PATCH v2] image-mklibs.bbclass: Add powerpc64 arch support

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 00:27 -0500, Kumar Gala wrote: > powerp64 dynamic loader is 'ld64.so.1'. > > Signed-off-by: Kumar Gala > --- > * Use correct name of ppc64 dynamic loader > * user ${baselib} so if we are /lib or /lib64 things work > > meta/classes/image-mklibs.bbclass |3 +++ > 1 files

Re: [OE-core] [PATCH v2] tune/arch-powerpc: Use fpu-soft to set PPCPKGSFX_FPU

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 00:28 -0500, Kumar Gala wrote: > Its more likely that we explicitly set soft-floating point support for a > given target than hard. So use 'fpu-soft' in TUNE_FEATURES rather than > 'fpu-hard' to determine setting 'nf' (no-float) in PPCPKGSFX_FPU. > > Signed-off-by: Kumar Gala

Re: [OE-core] [PATCH 0/7][PULL] Multilib: various fixes

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 23:19 +0800, Dongxiao Xu wrote: > Hi Richard, > > This pull request contains several multilib fixes, especially for rpm side. > Please help to review and pull. > > Current status for rpm sato is, most of the error dependency issues have been > solved except one error while

Re: [OE-core] [PATCH] tcl: Fix packaging of platform independent files

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 10:43 -0500, Kumar Gala wrote: > Tcl's doesn't utilize ${baselib} for platform independent files but > defines it as follows: > > TCL_LIBRARY = $(prefix)/lib/tcl$(VERSION) > > Match that so if ${baselib} is not just /lib things work properly. > > Signed-off-by:

Re: [OE-core] [PATCH] scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE

2011-08-03 Thread Richard Purdie
On Wed, 2011-08-03 at 14:41 -0500, Kumar Gala wrote: > On Aug 3, 2011, at 12:30 PM, Saul Wold wrote: > > > On 08/03/2011 10:00 AM, Kumar Gala wrote: > >> > >> On Jul 28, 2011, at 8:10 AM, Kumar Gala wrote: > >> > >>> If a SOCKS5 gateway is needed for a proxy access like git it might also > >>> r

Re: [OE-core] [PATCH 1/1] eglibc-package.inc: Fixed error in referencing PKGSUFFIX

2011-08-04 Thread Richard Purdie
On Thu, 2011-08-04 at 18:36 +0800, Lianhao Lu wrote: > [YOCTO #1329] Added the missing $ when referencing PKGSUFFIX in FILES_* > variables set. > > Signed-off-by: Lianhao Lu > --- > meta/recipes-core/eglibc/eglibc-package.inc |8 > 1 files changed, 4 insertions(+), 4 deletions(-) >

Re: [OE-core] [PATCH 1/1] oe-init-build-env, scripts/oe-buildenv-internal: add error detecting for $BDIR

2011-08-04 Thread Richard Purdie
On Tue, 2011-08-02 at 21:06 -0700, Darren Hart wrote: > > On 08/02/2011 04:43 AM, Richard Purdie wrote: > > On Tue, 2011-08-02 at 14:08 +0800, Dexuan Cui wrote: > >> [YOCTO #671] > >> > >> "readlink -f" in Ubuntu 10.04 is buggy: it doesn't i

Re: [OE-core] [PATCH 3/9] Various site files: Drop monotone

2011-08-04 Thread Richard Purdie
On Wed, 2011-07-27 at 15:56 -0700, Tom Rini wrote: > Not in oe-core nor meta-oe and based on oe.dev, possibly incomplete. > > Signed-off-by: Tom Rini > --- > meta/site/arm-common|3 --- > meta/site/arm-linux |3 --- > meta/site/common-glibc |3 --- > meta/site/ix

Re: [OE-core] [CONSOLIDATED PULL v2 00/33] Re-Spun with Tom's siteinfo update

2011-08-04 Thread Richard Purdie
On Wed, 2011-08-03 at 15:10 -0700, Saul Wold wrote: > Richard, > > This has been built, I have done a first pass review over these > and most seem correct to me, Koen's patch to make the icons dependency > dynamic seems Ok to me, but I am not sure when the RDEPENDS are processed > compared to when

Re: [OE-core] [PATCH 1/2] bitbake: Allow seting of baselib

2011-08-04 Thread Richard Purdie
On Thu, 2011-08-04 at 02:28 -0500, Kumar Gala wrote: > Allow for baselib to be set to something other than 'lib'. This is useful > for the 64-bit arch cases in which we want baselib set to 'lib64'. > > Signed-off-by: Kumar Gala > --- > meta/conf/bitbake.conf |2 +- > 1 files changed, 1 inse

Re: [OE-core] [PATCH 1/1] oe-init-build-env, scripts/oe-buildenv-internal: add error detecting for $BDIR

2011-08-04 Thread Richard Purdie
On Thu, 2011-08-04 at 06:37 -0700, Darren Hart wrote: > On 08/04/2011 05:07 AM, Richard Purdie wrote: > > On Tue, 2011-08-02 at 21:06 -0700, Darren Hart wrote: > >> > >> On 08/02/2011 04:43 AM, Richard Purdie wrote: > >>> On Tue, 2011-08-02 at 14:08 +080

Re: [OE-core] [PATCH] tcl: Fix packaging of platform independent files

2011-08-04 Thread Richard Purdie
On Wed, 2011-08-03 at 21:03 +0100, Phil Blundell wrote: > On Wed, 2011-08-03 at 10:43 -0500, Kumar Gala wrote: > > Tcl's doesn't utilize ${baselib} for platform independent files but > > defines it as follows: > > > > TCL_LIBRARY = $(prefix)/lib/tcl$(VERSION) > > > > Match that so if

[OE-core] Yocto post 1.1 development focus areas?

2011-08-04 Thread Richard Purdie
[Cross posted but please reply on the Yocto list] We're starting to think about the development focus for post Yocto 1.1 and are collecting ideas on the unscheduled feature list on the wiki: https://wiki.yoctoproject.org/wiki/Yocto_Project_Unscheduled_Feature_List This is an opportunity for peop

Re: [OE-core] do_rootfs failure for core-image-sato on mpc8315e-rdb

2011-08-04 Thread Richard Purdie
On Thu, 2011-08-04 at 10:58 -0500, Kumar Gala wrote: > | error: Failed dependencies: > | hicolor-icon-theme is needed by tasks-0.19-r0.ppc603e > | hicolor-icon-theme is needed by connman-gnome-0.5-r6.ppc603e > | error: LOOP: > | error: removing busybox-1.18.4-r7.ppc603e "Requires(hint):

Re: [OE-core] [PATCH 22/22] feature-arm-thumb: Take ARM_INSTRUCTION_SET into account to decide thumb mode

2011-08-05 Thread Richard Purdie
On Fri, 2011-08-05 at 11:59 +0100, Phil Blundell wrote: > On Mon, 2011-08-01 at 14:14 +0100, Richard Purdie wrote: > > On Mon, 2011-08-01 at 00:36 -0700, Saul Wold wrote: > > > From: Khem Raj > > > > > > This will decouple the compiling in thumb mode f

<    3   4   5   6   7   8   9   10   11   12   >