[OE-core] [PATCH 06/14] eglibc-2.15: Support mips64

2012-05-20 Thread Khem Raj
Add mips64 to binary locale arches Enabling ports in addons causes wrong machtype to be chosen for mips64 and it always chose mips32 which is wrong for mips64 so enable all the addons we have and we were enabling them anyway Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-core/eglibc

[OE-core] [PATCH 05/14] kernel-arch.bbclass: Map mips64{el} to mips KARCH

2012-05-20 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/kernel-arch.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index d37c1fb..e186422 100644 --- a/meta/classes/kernel-arch.bbclass +++ b

[OE-core] [PATCH 04/14] binutils: Default to n64 when configured for mips64

2012-05-20 Thread Khem Raj
Default ABI for mips64 is n64 so make it default in binutils Signed-off-by: Khem Raj raj.k...@gmail.com --- .../binutils/mips64-default-ld-emulation.patch | 49 meta/recipes-devtools/binutils/binutils_2.22.bb|3 +- 2 files changed, 51 insertions(+), 1 deletions

[OE-core] [PATCH 08/14] runqemu: Add qemush4 and qemumips64 knowledge

2012-05-20 Thread Khem Raj
New machines need to be added and they also have different kernel commandlines Signed-off-by: Khem Raj raj.k...@gmail.com --- scripts/runqemu | 10 -- scripts/runqemu-internal | 35 --- 2 files changed, 40 insertions(+), 5 deletions(-) diff

[OE-core] [PATCH 09/14] netbase: Add interface files for qemumips64 and qemush4

2012-05-20 Thread Khem Raj
These files are alike other qemu machines they help in creating a working network interface when using qemumips64 or qemush4 Signed-off-by: Khem Raj raj.k...@gmail.com --- .../netbase/netbase-4.47/qemumips64/interfaces |8 .../netbase/netbase-4.47/qemush4/interfaces

[OE-core] [PATCH 07/14] libc-package: Add sh4 and mips64 to arch options

2012-05-20 Thread Khem Raj
needed for new architecture support Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/libc-package.bbclass |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 10f5f87..9df3c17 100644

[OE-core] [PATCH 10/14] site/sh-common: Add missing caches variables to build glib-2.32

2012-05-20 Thread Khem Raj
This is on the same tone as done for other architectures Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/site/sh-common |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/meta/site/sh-common b/meta/site/sh-common index c386266..bde416a 100644 --- a/meta/site/sh

[OE-core] [PATCH 12/14] tune-mips64.inc: Add new tune file for mips64 big-endian

2012-05-20 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/conf/machine/include/tune-mips64.inc |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) create mode 100644 meta/conf/machine/include/tune-mips64.inc diff --git a/meta/conf/machine/include/tune-mips64.inc b/meta/conf/machine/include

[OE-core] [PATCH 13/14] qemumips64.conf: Add machine configuration for mips64(eb)

2012-05-20 Thread Khem Raj
New machine description for qemu emulating malta64/mips64 big-endian system Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/conf/machine/qemumips64.conf | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) create mode 100644 meta/conf/machine/qemumips64.conf diff --git

[OE-core] [PATCH 14/14] qemush4.conf: Add machine configuration for qemush4

2012-05-20 Thread Khem Raj
SH4 qemu emulation using rts7751r2dplus board Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/conf/machine/qemush4.conf | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) create mode 100644 meta/conf/machine/qemush4.conf diff --git a/meta/conf/machine/qemush4.conf b

Re: [OE-core] [RFC][PATCH 00/14] mips64 support and sh4 support

2012-05-21 Thread Khem Raj
On Monday, May 21, 2012, Richard Purdie wrote: On Sun, 2012-05-20 at 20:35 -0700, Khem Raj wrote: This patchset adds required bits into metadata for having mips64/n64 support. I have tested the core-image-sato and core-image-minimal builds and boots on qemumips64 and runs gcc regression

[OE-core] [PATCH 1/3] gcc-4.7: Add knowledge about arm hf dynamic loader

2012-05-21 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-4.7.inc |1 + .../gcc/gcc-4.7/arm-hard-float-loader.patch| 48 2 files changed, 49 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-devtools/gcc/gcc-4.7/arm

[OE-core] [PATCH 0/3] ARM hf support

2012-05-21 Thread Khem Raj
/cgit.cgi/openembedded-core-contrib/log/?h=kraj/armhf Khem Raj (3): gcc-4.7: Add knowledge about arm hf dynamic loader eglibc: Add ARM hf dynamic linker support gcc: Grok for callconvention-hard to enable hard float .../eglibc/eglibc-2.15/add_HAVE_ARM_PCS_VFP.patch | 28 ++ .../eglibc

[OE-core] [PATCH 2/3] eglibc: Add ARM hf dynamic linker support

2012-05-21 Thread Khem Raj
The work is done in glibc upstream we backport the relevant patches Signed-off-by: Khem Raj raj.k...@gmail.com --- .../eglibc/eglibc-2.15/add_HAVE_ARM_PCS_VFP.patch | 28 ++ .../eglibc/eglibc-2.15/ldso_arm_hf_support.patch | 338 meta/recipes-core/eglibc/eglibc_2.15.bb

[OE-core] [PATCH 3/3] gcc: Grok for callconvention-hard to enable hard float

2012-05-21 Thread Khem Raj
If callconvention-hard is set then we build gcc defaulting to hard-float ABI Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-common.inc |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes

Re: [OE-core] [PATCH] curl: Update to version 7.25.0

2012-05-24 Thread Khem Raj
On Wed, May 23, 2012 at 7:12 AM, Saul Wold s...@linux.intel.com wrote: You should explain why you are removing a patch, I see from the Curl archives they picked up a similar patch.  I also note that this patch slips in the following: -+AC_SUBST(GNUTLS_REQUIRED) Not sure if you missed that,

Re: [OE-core] [PATCH] binutils: Drop old/stale/broken csl recipe

2012-05-24 Thread Khem Raj
On Thu, May 24, 2012 at 3:00 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: The patches this recipe refers to don't exist so nobody can have been using this so lets just remove it. Looks good to me Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff

Re: [OE-core] [PATCH 1/4] connman: just give xuser the extra rights it needs

2012-05-29 Thread Khem Raj
On Tue, May 29, 2012 at 1:43 PM, Ross Burton ross.bur...@intel.com wrote: -Signed-off-by: Dongxiao Xu dongxiao...@intel.com +Signed-off-by: Ross Burton ross.bur...@intel.com why remove the old sign-off ? ___ Openembedded-core mailing list

Re: [OE-core] meta-ti: ERROR: Unable to parse /tool/yocto/meta-ti/recipes-bsp/powervr-drivers/omap3-sgx-modules_4.05.00.03.bb

2012-05-29 Thread Khem Raj
On Tue, May 29, 2012 at 1:18 PM, Elvis Dowson elvis.dow...@gmail.com wrote: Hi,      When building with the latest meta-ti layer, I get the following error: ERROR: Unable to analyse format of PR variable: b                                                              | ETA:  00:01:18 ERROR:

Re: [OE-core] meta-xilinx: ERROR: Failure expanding variable TUNE_PKGARCH ppc440

2012-05-29 Thread Khem Raj
On Tue, May 29, 2012 at 12:46 PM, Elvis Dowson elvis.dow...@gmail.com wrote: PACKAGE_EXTRA_ARCHS_tune-ppc440 = ${PACKAGE_EXTRA_ARCHS_tune-powerpc} ppc440 may be this should be be PACKAGE_EXTRA_ARCHS_tune-ppc440 = ${PACKAGE_EXTRA_ARCHS_tune-powerpc-nf} ppc440 other pieces look good -Khem

Re: [OE-core] [PATCH 1/4] connman: just give xuser the extra rights it needs

2012-05-30 Thread Khem Raj
On Wednesday, May 30, 2012, Burton, Ross wrote: On 30 May 2012 14:00, Khem Raj raj.k...@gmail.com javascript:; wrote: You could have created a new patch and deleted the old then for clarity The filename is sensible, the comment was entirely rewritten, as was the actual delta of the patch

Re: [OE-core] [PATCH v2] valgrind: Enable valgrind for armv7

2012-05-30 Thread Khem Raj
On Wednesday, May 30, 2012, Samuel Stirtzel wrote: 2012/5/30 Khem Raj raj.k...@gmail.com javascript:;: On Wednesday, May 30, 2012, Samuel Stirtzel wrote: 2012/5/29 Khem Raj raj.k...@gmail.com javascript:;: At some extend yes, the configuration checks the host, the default

Re: [OE-core] meta-xilinx: ERROR: Failure expanding variable TUNE_PKGARCH ppc440

2012-05-30 Thread Khem Raj
On Wed, May 30, 2012 at 7:47 AM, Elvis Dowson elvis.dow...@gmail.com wrote: What does the -nf suffix do ? indicates no float ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

Re: [OE-core] [PATCH v2] valgrind: Enable valgrind for armv7

2012-05-30 Thread Khem Raj
On Wed, May 30, 2012 at 7:18 AM, Samuel Stirtzel s.stirt...@googlemail.com wrote: 2012/5/30 Khem Raj raj.k...@gmail.com: On Wednesday, May 30, 2012, Samuel Stirtzel wrote: 2012/5/30 Khem Raj raj.k...@gmail.com: On Wednesday, May 30, 2012, Samuel Stirtzel wrote: 2012/5/29 Khem Raj

Re: [OE-core] meta-xilinx: ERROR: Failure expanding variable TUNE_PKGARCH ppc440

2012-05-30 Thread Khem Raj
On Wed, May 30, 2012 at 8:34 AM, Elvis Dowson elvis.dow...@gmail.com wrote: On May 30, 2012, at 5:00 PM, Khem Raj wrote: On Wed, May 30, 2012 at 7:47 AM, Elvis Dowson elvis.dow...@gmail.com wrote: What does the -nf suffix do ? indicates no float What should I call the tune

Re: [OE-core] target rpm build failure

2012-05-30 Thread Khem Raj
On Wed, May 30, 2012 at 8:18 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: It fails on undefined reference to xmalloc, xcalloc, etc... that however are internally defined and used as wrapper for real malloc, etc... Please, can somebody try to build this package for me? are you

Re: [OE-core] [PATCH] libtasn: fixed cross build issue

2012-05-30 Thread Khem Raj
On Wednesday, May 30, 2012, Enrico Scholz enrico.sch...@sigma-chemnitz.de wrote: Richard Purdie richard.pur...@linuxfoundation.org writes: setting HELP2MAN environment to 'true' for cross-builds might be a general solution But this does not seem to be implemented... Right, I remember

Re: [OE-core] target rpm build failure

2012-05-31 Thread Khem Raj
On Thu, May 31, 2012 at 5:35 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: Is there some difference for uclibc? Please let me know. opkg works well with uclibc based systems. Those functions are not implemented in uclibc I am sure it can be fixed by linking in other libs or may be

Re: [OE-core] target rpm build failure

2012-05-31 Thread Khem Raj
On Thu, May 31, 2012 at 6:57 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: unfortunately I depend from rpm, I need just rpm packages. So can you confirm the target rpm for uclibc is not building? yes rpm needs to be patched for building on uclibc

Re: [OE-core] Suggestion: Occasionally take --hash-style=gnu out of the linker

2012-05-31 Thread Khem Raj
On Thu, May 31, 2012 at 2:14 PM, Peter Seebach peter.seeb...@windriver.com wrote: In theory, it's a bug if a package is configured such that it does not actually request hash-style=gnu.  In practice, though, the yocto toolchain is configured so that it's the default. Maybe there should be a

Re: [OE-core] target rpm build failure

2012-05-31 Thread Khem Raj
On Thu, May 31, 2012 at 7:47 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: Have new suggestions? I found a bit of time and fixed rpm compilation on uclibc. Its only compiling though I don't know if it will run on target. Try it out. The patch is here

Re: [OE-core] target rpm build failure

2012-06-01 Thread Khem Raj
, Giuseppe 2012/6/1 Khem Raj raj.k...@gmail.com On Thu, May 31, 2012 at 7:47 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: Have new suggestions? I found a bit of time and fixed rpm compilation on uclibc. Its only compiling though I don't know if it will run on target. Try it out

Re: [OE-core] [meta-xilinx] How to debug the value of ${TARGET_ARCH} in meta-xilinx/classes/xilinx-boot.class

2012-06-02 Thread Khem Raj
On Saturday, June 2, 2012, Elvis Dowson elvis.dow...@gmail.com wrote: Hi, On Jun 2, 2012, at 10:36 PM, Elvis Dowson wrote: How can I debug the value of ${TARGET_ARCH} in meta-xilinx/classes/xilinx-boot.class, for the following function: do_export_xparam() { bbnote Replacing xparameters

Re: [OE-core] [oe-core] libiconv/gettetxt circular dependency on eglibc

2012-06-04 Thread Khem Raj
On Mon, Jun 4, 2012 at 1:33 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: Solved, I missed to set TARGET_OS = eglibc leaving it to uclibc, my previous build... thats wrong. If you are using OE-Core then the variable to set it TCLIBC and TARGET_OS is usually not needed to set.

[OE-core] [PATCH 0/7] Prelink/ld bug and rpm compilation on uclibc

2012-06-04 Thread Khem Raj
) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib kraj/misc-updates http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/misc-updates Khem Raj (7): binutils_2.22: Backport to fix bogus textrels rpm: Fix compilation on uclibc

[OE-core] [PATCH 1/7] binutils_2.22: Backport to fix bogus textrels

2012-06-04 Thread Khem Raj
This is reported by prelinker which does not go well with textrels. Signed-off-by: Khem Raj raj.k...@gmail.com --- .../binutils/binutils/0001-PR-ld-13470.patch | 82 meta/recipes-devtools/binutils/binutils_2.22.bb|3 +- 2 files changed, 84 insertions(+), 1

[OE-core] [PATCH 2/7] rpm: Fix compilation on uclibc

2012-06-04 Thread Khem Raj
rpmatch is not there in uclibc therefore add logic to configure to detect it. x* wrappers need to be defined for uclibc as well. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/rpm/rpm/rpmatch.patch| 42 meta/recipes-devtools/rpm/rpm/uclibc

[OE-core] [PATCH 4/7] libtool: Let -fstack-protector passed to link step

2012-06-04 Thread Khem Raj
linker should add -lssp to linker cmdline when -fstack-protector therefore add this knowledge to libtool otherwise packages will fail to link Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/libtool/libtool-2.4.2.inc|3 +- .../libtool/libtool/respect-fstack

[OE-core] [PATCH 3/7] pth: Mark incompatible with uclibc

2012-06-04 Thread Khem Raj
pth does not work with uclibc Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/pth/pth_2.0.7.bb | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/pth/pth_2.0.7.bb b/meta/recipes-support/pth/pth_2.0.7.bb index 61865b7

[OE-core] [PATCH 5/7] rpm: Use link time check for libssp

2012-06-04 Thread Khem Raj
-fstack-protector needs libssp to link with so when checking for this option support we need to find if libssp is staged in root file system Signed-off-by: Khem Raj raj.k...@gmail.com --- .../rpm/rpm/fstack-protector-configure-check.patch | 13 + meta/recipes-devtools/rpm/rpm_5.4.0

[OE-core] [PATCH 6/7] sat-solver: Fix build on uclibc

2012-06-04 Thread Khem Raj
futimes is not available on uclibc so use utimes Signed-off-by: Khem Raj raj.k...@gmail.com --- .../sat-solver/sat-solver/futimes.patch| 32 meta/recipes-extended/sat-solver/sat-solver_git.bb |7 +++- 2 files changed, 37 insertions(+), 2 deletions

[OE-core] [PATCH 7/7] libzypp: Fix build with uclibc

2012-06-04 Thread Khem Raj
cstdio is included indrectly with eglibc based systems but not with uclibc based systems and use of functions like ::eof are then reported as warnings. Therefore we include cstdio explicitly. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/libzypp/libzypp/cstdio.patch | 49

[OE-core] [PATCH 00/16 V2] Prelink/ld bug and rpm compilation on uclibc

2012-06-09 Thread Khem Raj
/openembedded-core-contrib kraj/misc-updates http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/misc-updates Khem Raj (16): binutils_2.22: Backport to fix bogus textrels rpm: Fix compilation on uclibc pth: Mark incompatible with uclibc libtool: Let -fstack-protector

[OE-core] [PATCH 01/16] binutils_2.22: Backport to fix bogus textrels

2012-06-09 Thread Khem Raj
This is reported by prelinker which does not go well with textrels. Signed-off-by: Khem Raj raj.k...@gmail.com --- .../binutils/binutils/0001-PR-ld-13470.patch | 82 meta/recipes-devtools/binutils/binutils_2.22.bb|3 +- 2 files changed, 84 insertions(+), 1

[OE-core] [PATCH 02/16] rpm: Fix compilation on uclibc

2012-06-09 Thread Khem Raj
rpmatch is not there in uclibc therefore add logic to configure to detect it. x* wrappers need to be defined for uclibc as well. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/rpm/rpm/rpmatch.patch| 42 meta/recipes-devtools/rpm/rpm/uclibc

[OE-core] [PATCH 04/16] libtool: Let -fstack-protector passed to link step

2012-06-09 Thread Khem Raj
linker should add -lssp to linker cmdline when -fstack-protector therefore add this knowledge to libtool otherwise packages will fail to link Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/libtool/libtool-2.4.2.inc|3 +- .../libtool/libtool/respect-fstack

[OE-core] [PATCH 03/16] pth: Mark incompatible with uclibc

2012-06-09 Thread Khem Raj
pth does not work with uclibc Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/pth/pth_2.0.7.bb | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/pth/pth_2.0.7.bb b/meta/recipes-support/pth/pth_2.0.7.bb index 61865b7

[OE-core] [PATCH 05/16] rpm: Use link time check for libssp

2012-06-09 Thread Khem Raj
-fstack-protector needs libssp to link with so when checking for this option support we need to find if libssp is staged in root file system Signed-off-by: Khem Raj raj.k...@gmail.com --- .../rpm/rpm/fstack-protector-configure-check.patch | 13 + meta/recipes-devtools/rpm/rpm_5.4.0

[OE-core] [PATCH 06/16] sat-solver: Fix build on uclibc

2012-06-09 Thread Khem Raj
futimes is not available on uclibc so use utimes Signed-off-by: Khem Raj raj.k...@gmail.com --- .../sat-solver/sat-solver/futimes.patch| 32 meta/recipes-extended/sat-solver/sat-solver_git.bb |7 +++- 2 files changed, 37 insertions(+), 2 deletions

[OE-core] [PATCH 07/16] libzypp: Fix build with uclibc

2012-06-09 Thread Khem Raj
cstdio is included indrectly with eglibc based systems but not with uclibc based systems and use of functions like ::eof are then reported as warnings. Therefore we include cstdio explicitly. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/libzypp/libzypp/cstdio.patch | 49

[OE-core] [PATCH 08/16] augeas: Fix compilation failure

2012-06-09 Thread Khem Raj
on uclibc we see this failure too few arguments to function 'escape' Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/augeas/augeas.inc|4 ++- .../0001-Add-missing-argument-to-escape.patch | 29 meta/recipes-extended/augeas

[OE-core] [PATCH 09/16] rpm: pass lrt and lpthread to link step explicitly for uclibc

2012-06-09 Thread Khem Raj
These need to appear in DT_NEEDED for librpmio.so for uclibc somehow it does not get added to link cmdline so we do it explicitly. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/rpm/rpm_5.4.0.bb |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta

[OE-core] [PATCH 10/16] zypper: Fix build on uclibc

2012-06-09 Thread Khem Raj
uclibc does not have rpmatch() so we define it if zypper is being compiled for uclibc Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/zypper/zypper/rpmatch.patch | 23 + meta/recipes-extended/zypper/zypper_git.bb|4 ++- 2 files changed, 26

[OE-core] [PATCH 11/16] cmake.bbclass: Add OECMAKE_C_LINK_FLAGS and OECMAKE_CXX_LINK_FLAGS variables

2012-06-09 Thread Khem Raj
and OECMAKE_CXX_LINK_FLAGS which can be altered by recipes to tweak linker flags Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/cmake.bbclass |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index dcd974a..eda45dd 100644

[OE-core] [PATCH 13/16] task-self-hosted.bb, task-core-lsb.bb: Conditionalize pth inclusion

2012-06-09 Thread Khem Raj
pth is not portable to uclibc therefore we need to exclude it for uclibc based systems. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-core/tasks/task-self-hosted.bb |4 +++- meta/recipes-extended/tasks/task-core-lsb.bb |6 +- 2 files changed, 8 insertions(+), 2

[OE-core] [PATCH 12/16] libzypp: Define OECMAKE_CXX_LINK_FLAGS when compiling for uclibc

2012-06-09 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/libzypp/libzypp_git.bb |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb index 0fe6114..ad38751 100644

[OE-core] [PATCH 14/16] npth: Add recipe

2012-06-09 Thread Khem Raj
npth is modern version of pth gnugp 2.1 will drop pth in favor of npth npth works with uclibc too whereas pth does not Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/npth/npth_0.90.bb | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) create mode

[OE-core] [PATCH 15/16] gpgme: Depend on npth for uclibc

2012-06-09 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/gpgme/gpgme_1.3.1.bb |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/gpgme/gpgme_1.3.1.bb b/meta/recipes-support/gpgme/gpgme_1.3.1.bb index 4bcb57a..43d8aad 100644 --- a/meta

[OE-core] [PATCH 16/16] gnupg-2.0.19: Depend on npth for uclibc

2012-06-09 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-support/gnupg/gnupg_2.0.19.bb |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/gnupg/gnupg_2.0.19.bb b/meta/recipes-support/gnupg/gnupg_2.0.19.bb index d014f03..24219a8 100644 --- a/meta

[OE-core] [PATCH 2/2] gcc-common: Replace use of TARGET_ARCH with TRANSLATED_TARGET_ARCH

2012-06-09 Thread Khem Raj
TARGET_ARCH is poured into TRANSLATED_TARGET_ARCH for gcc-cross family or gcc-crosssdk family of recipes we have to check for TRANSLATED_TARGET_ARCH Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-common.inc |4 ++-- 1 files changed, 2 insertions(+), 2 deletions

[OE-core] [PATCH 1/2] gcc-common: Enable hardfloat ABI when target is arm

2012-06-09 Thread Khem Raj
We need to check target to be arm before enabling hard-float ABI. There are crossdk targets or candian-cross targets built for arm and we should not enable it for those class of recipes. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-common.inc |2 +- 1 files

Re: [OE-core] [PATCH 1/2] apt-get 0.7.14: hangs at runtime

2012-06-10 Thread Khem Raj
- -Upstream-Status: Backport -Signed-off-by: Khem Raj raj.k...@gmail.com -Index: apt-0.7.14/apt-pkg/deb/deblistparser.cc -=== apt-0.7.14.orig/apt-pkg/deb/deblistparser.cc       2012-03-30 11:17:09.112456632 -0700 -+++ apt-0.7.14

Re: [OE-core] [PATCH 00/16 V2] Prelink/ld bug and rpm compilation on uclibc

2012-06-10 Thread Khem Raj
On Sat, Jun 9, 2012 at 9:42 AM, Khem Raj raj.k...@gmail.com wrote: This patch now can compile a uclibc sato image using rpm as packaging backend Introduces variables into cmake class to control linker flags which was not available Adds npth recipe. npth is next gen pth soon gnupg 2.1

Re: [OE-core] [PATCH 00/16 V2] Prelink/ld bug and rpm compilation on uclibc

2012-06-11 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/11/2012 6:03 AM, Richard Purdie wrote: On Sat, 2012-06-09 at 09:42 -0700, Khem Raj wrote: This patch now can compile a uclibc sato image using rpm as packaging backend Introduces variables into cmake class to control linker flags which

Re: [OE-core] [PATCH 2/9] rpm: Upgrade RPM to 5.4.9

2012-06-11 Thread Khem Raj
On Monday, June 11, 2012, Mark Hatle mark.ha...@windriver.com wrote: Beside upreving RPM, add necessary integration pathces to libzypp. Typo there I guess you wanted patches there Also change the configuration of RPM to support PACKAGECONFIG flags. RPM is highly configurable, the default

Re: [OE-core] [PATCH 8/9] package_rpm: Verify that the package manifests are not empty

2012-06-11 Thread Khem Raj
On Monday, June 11, 2012, Mark Hatle mark.ha...@windriver.com wrote: An empty manifest will cause a failure condition. We ensure that any install actions occur only with a manifest larger then size 0. Also ensure that padding is added to the end of the manifest, instead of the beginning to

Re: [OE-core] [yocto] [PATCH 1/1] eglibc: remove runtime dependency of perl from eglibc-mtrace

2012-06-11 Thread Khem Raj
On Mon, Jun 11, 2012 at 3:07 PM, Saul Wold s...@linux.intel.com wrote: Would the correct solution be to break eglibc-mtrace out into a separate recipe. I am not sure if this would be more correct or have the PACKAGES contain something like ${EGLIBC_PACKAGE_MTRACE}, which could the be

Re: [OE-core] [PATCH 00/16 V2] Prelink/ld bug and rpm compilation on uclibc

2012-06-11 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/11/2012 7:02 AM, Khem Raj wrote: On 6/11/2012 6:03 AM, Richard Purdie wrote: On Sat, 2012-06-09 at 09:42 -0700, Khem Raj wrote: This patch now can compile a uclibc sato image using rpm as packaging backend Introduces variables into cmake

Re: [OE-core] [oe-core] fixup_perms failure on linux-libc-headers

2012-06-12 Thread Khem Raj
On Tue, Jun 12, 2012 at 2:07 AM, Giuseppe Condorelli giuseppe.condore...@gmail.com wrote: OSError: [Errno 1] Operation not permitted: '/oelinux/condorg/openembedded-core/stlinux-3.0-build/tmp-uclibc/work/sh4-oe-linux-uclibc/linux-libc-headers-2.6.32-r1/package/usr' what is your host machine ?

Re: [OE-core] [PATCH] strace: update to 4.7

2012-06-12 Thread Khem Raj
On Tue, Jun 12, 2012 at 12:59 AM, Bogdan Marinescu bogdan.a.marine...@intel.com wrote: new version doesn't seem to use sigmask anymore. You have to build it on uclibc to see if you can drop this patch or not. ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] eglibc-package: Reorder PACKAGES to avoid having static libraries in dev

2012-06-12 Thread Khem Raj
On Tue, Jun 12, 2012 at 6:39 AM, Andrei Gherzan and...@gherzan.ro wrote: Move ${PN}-dev at the end of $PACKAGES to avoid having some static libraries in dev and let staticdev have those libraries packaged first. did you compare buildhistory output before and after this patch ? *_nonshared.a is

Re: [OE-core] [PATCH 00/16 V2] Prelink/ld bug and rpm compilation on uclibc

2012-06-12 Thread Khem Raj
On Mon, Jun 11, 2012 at 4:53 PM, Khem Raj raj.k...@gmail.com wrote: I have redone this patch as said and updated the pull tree. Additionally I have added a patch to cache guint32/guint64 on x86_64/uclibc otherwise glib-2.32.x wont build on uclibc for x86_64 Richard I have now rebased

Re: [OE-core] [PATCH 1/1] busybox: Add check for wifi/bluetooth to enable rfkill

2012-06-12 Thread Khem Raj
On Tue, Jun 12, 2012 at 8:15 AM, Saul Wold s...@linux.intel.com wrote: rfkill is a usefull tool when you have a device with bluetooth and wifi enabled [YOCTO #2494] Signed-off-by: Saul Wold s...@linux.intel.com ---  meta/recipes-core/busybox/busybox.inc |    5 +  1 files changed, 5

Re: [OE-core] [PATCH 1/1] gcc-cross: argument list too long when do_install

2012-06-13 Thread Khem Raj
On Wed, Jun 13, 2012 at 1:27 AM, Robert Yang liezhi.y...@windriver.com wrote: There would be an Argument list too long error when the length of tmpdir is longer than 190, this is caused by: headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u` The PLUGIN_HEADERS is too long before sort,

Re: [OE-core] [oe-core] fixup_perms failure on linux-libc-headers

2012-06-13 Thread Khem Raj
in OE or bitbake ? For information, I'm on a FC14 host machine and the repository is on a physical hdd and not mounted from NFS for example. Cheers, Giuseppe 2012/6/12 Mark Hatle mark.ha...@windriver.com On 6/12/12 8:57 AM, Khem Raj wrote: On Tue, Jun 12, 2012 at 2:07 AM, Giuseppe

Re: [OE-core] [PATCH] strace: update to 4.7

2012-06-14 Thread Khem Raj
On Thu, Jun 14, 2012 at 5:42 AM, Marinescu, Bogdan A bogdan.a.marine...@intel.com wrote: I was able to build strace 4.7 with uclibc succesfully, but I'm unable to build an uclibc image (even core-image-minimal) to do an actual test due to various compilation errors. Should I keep on trying to

[OE-core] [PATCH 0/9 V3] rpm compilation on uclibc

2012-06-15 Thread Khem Raj
) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib kraj/misc-updates http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/misc-updates Khem Raj (9): uclibc_0.9.33.bb: Upgrade to latest git site/x86_64-linux-uclibc: Cache definitions

[OE-core] [PATCH 2/9] site/x86_64-linux-uclibc: Cache definitions of guint32/guint64

2012-06-15 Thread Khem Raj
Without this glib 2.32.x wont build. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/site/x86_64-linux-uclibc |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/site/x86_64-linux-uclibc b/meta/site/x86_64-linux-uclibc index bad2ed9..2d269f7 100644 --- a/meta/site

[OE-core] [PATCH 1/9] uclibc_0.9.33.bb: Upgrade to latest git

2012-06-15 Thread Khem Raj
This is needed otherwise glib-2.0 wont run correctly Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-core/uclibc/uclibc_0.9.33.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/uclibc/uclibc_0.9.33.bb b/meta/recipes-core/uclibc

[OE-core] [PATCH 3/9] rpm: Fix compilation on uclibc

2012-06-15 Thread Khem Raj
rpmatch is not there in uclibc therefore add logic to configure to detect it. x* wrappers need to be defined for uclibc as well. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/rpm/rpm/rpmatch.patch| 42 + meta/recipes-devtools/rpm/rpm/uclibc

[OE-core] [PATCH 6/9] libzypp: Fix build with uclibc

2012-06-15 Thread Khem Raj
cstdio is included indrectly with eglibc based systems but not with uclibc based systems and use of functions like ::eof are then reported as warnings. Therefore we include cstdio explicitly. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/libzypp/libzypp/cstdio.patch | 49

[OE-core] [PATCH 8/9] zypper: Fix build on uclibc

2012-06-15 Thread Khem Raj
uclibc does not have rpmatch() so we define it if zypper is being compiled for uclibc Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/zypper/zypper/rpmatch.patch | 23 + meta/recipes-extended/zypper/zypper_git.bb|2 + 2 files changed, 25

[OE-core] [PATCH 7/9] rpm: pass lrt and lpthread to link step explicitly for uclibc

2012-06-15 Thread Khem Raj
These need to appear in DT_NEEDED for librpmio.so for uclibc somehow it does not get added to link cmdline so we do it explicitly. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/rpm/rpm_5.4.9.bb |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta

[OE-core] [PATCH 9/9] libzypp: Define OECMAKE_CXX_LINK_FLAGS when compiling for uclibc

2012-06-15 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-extended/libzypp/libzypp_git.bb |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb index ca32e73..471ee1d 100644

Re: [OE-core] openssl does not build on recent distributions with perl-5.16.0

2012-06-15 Thread Khem Raj
On Thursday, June 14, 2012, Martin Jansa wrote: Hi, openembedded-core/meta/recipes-connectivity/openssl/openssl.inc is using perlpath.pl: do_configure () { cd util perl perlpath.pl ${STAGING_BINDIR_NATIVE} I wonder why it's using host perl and not staged perl-native

Re: [OE-core] [PATCH 4/9] rpm: Use link time check for libssp

2012-06-15 Thread Khem Raj
On Fri, Jun 15, 2012 at 5:43 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Thu, 2012-06-14 at 23:12 -0700, Khem Raj wrote: -fstack-protector needs libssp to link with so when checking for this option support we need to find if libssp is staged in root file system Signed

Re: [OE-core] [PATCH 5/9] sat-solver: Fix build on uclibc

2012-06-15 Thread Khem Raj
On Fri, Jun 15, 2012 at 5:55 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Thu, 2012-06-14 at 23:12 -0700, Khem Raj wrote: futimes is not available on uclibc so use utimes qsort is also not as expected by sat-solver therefore for uclibc we resort to using internal version

Re: [OE-core] Proposal: Creating meta-networking

2012-06-15 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/15/2012 8:15 AM, Joe MacDonald wrote: Hi all, We've been talking about this on-and-off at Wind River for a while now, but it now seems like a reasonable time to bring a proposal to the OE community at large. We're thinking about creating a

Re: [OE-core] openssl does not build on recent distributions with perl-5.16.0

2012-06-15 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/15/2012 7:36 AM, Richard Purdie wrote: On Fri, 2012-06-15 at 07:15 -0700, Khem Raj wrote: On Thursday, June 14, 2012, Martin Jansa wrote: Hi, openembedded-core/meta/recipes-connectivity/openssl/openssl.inc is using perlpath.pl

Re: [OE-core] [PATCH 1/1] busybox: Include setsid and cttyhack in defconfig

2012-06-16 Thread Khem Raj
On Sat, Jun 16, 2012 at 9:38 AM, Darren Hart dvh...@linux.intel.com wrote: On 06/16/2012 09:18 AM, Phil Blundell wrote: On Fri, 2012-06-15 at 15:56 -0700, Darren Hart wrote: So the delta for including SETSID and CTTYHACK is 2560 bytes. Personally I am still not in favour of adding this to

Re: [OE-core] [PATCH 1/1] busybox: Include setsid and cttyhack in defconfig

2012-06-17 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/17/2012 2:14 PM, Paul Eggleton wrote: Firstly, I think when Darren said meta-intel he meant to say meta-yocto which is where the poky-tiny distro config can be found (and indeed that is where I would expect to find it). meta-yocto is then a

Re: [OE-core] [PATCH] debian.bbclass: invoke target objdump

2012-06-17 Thread Khem Raj
On Sun, Jun 17, 2012 at 7:33 PM, James Limbouris ja...@digitalmatter.com.au wrote: Using the host objdump can lead to errors like: objdump: library.so.1.0.0: File format is ambiguous objdump: Matching formats: elf32-littlearm elf32-littlearm-symbian elf32-littlearm-vxworks yes for target

[OE-core] [PATCH] gcc-4.7: Update to tip of gcc-4_7-branch since 4.7.1 has been out

2012-06-19 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-4.7.inc | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc index 34a73b1..25a1088 100644 --- a/meta/recipes

Re: [OE-core] Is target toolchain supposed to be working?

2012-06-19 Thread Khem Raj
On Tue, Jun 19, 2012 at 5:32 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 19.06.2012 13:53, Marcin Juszkiewicz pisze: ignoring nonexistent directory usr/include/c++/ ignoring nonexistent directory usr/include/c++//i586-oe-linux ignoring nonexistent directory

Re: [OE-core] [PATCH] binutils: set sysroot for target

2012-06-19 Thread Khem Raj
On Tue, Jun 19, 2012 at 4:21 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: ld: this linker was not configured to use sysroots was what I got on device instead of compiled binary. Signed-off-by: Marcin Juszkiewicz marcin.juszkiew...@linaro.org ---  

Re: [OE-core] Generating a movable SDK

2012-06-19 Thread Khem Raj
On Tuesday, June 19, 2012, Steve English steve.engl...@navetas.com wrote: Hi, I've generated a cross compiling ARM SDK (angstrom-eglibc-x86_64-armv7a-v2012.05-toolchain.tar.bz2) that works great if installed in /usr/local/oecore-x86_64. I would like to move these binaries and run them from under

Re: [OE-core] [PATCH] Simplify SRC_URI_append += to SRC_URI_append =

2012-06-19 Thread Khem Raj
Thanks for doing this On Tue, Jun 19, 2012 at 1:54 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: +SRC_URI_append_poky = file://owl-menu.patch;apply=yes while you are at it can you remove apply=yes from there ? since thats the default anyway for files ending in .patch

Re: [OE-core] [PATCH] Simplify SRC_URI_append += to SRC_URI_append =

2012-06-19 Thread Khem Raj
On Tuesday, June 19, 2012, Robert P. J. Day rpj...@crashcourse.ca wrote: On Tue, 19 Jun 2012, Khem Raj wrote: Thanks for doing this On Tue, Jun 19, 2012 at 1:54 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: +SRC_URI_append_poky = file://owl-menu.patch;apply=yes while you

Re: [OE-core] how to use external tool chain to build opebembedded-core ?

2012-06-19 Thread Khem Raj
On Tue, Jun 19, 2012 at 7:41 PM, Michael Zhu boot2li...@gmail.com wrote: Dears, how to use prebuilt external tool chain to build  openembedded-core ? thanks! Look at meta/conf/distro/include/tcmode-external-sourcery.inc thats how code sourcery toolchains are hooked in. and you do set TCMODE =

Re: [OE-core] Is target toolchain supposed to be working?

2012-06-20 Thread Khem Raj
On Tue, Jun 19, 2012 at 9:25 AM, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 19.06.2012 18:19, Khem Raj pisze: includedir already has leading slash so I wonder if you changed includedir in your setup somehow ? bitbake gcc -e|grep ^includedir shown /usr/include value. G

<    5   6   7   8   9   10   11   12   13   14   >