Re: [OE-core] [PATCH] js: Update to v1.8.5

2012-02-05 Thread Andrei Gherzan
On Sat, Feb 4, 2012 at 03:12, Saul Wold s...@linux.intel.com wrote: There seems to be a number of issues with this recipe, the LIC_FILE_CHKSUMs do not match, I did not see any DEPENDS, so I am not sure if you have all the dependencies correct. It did not compile, maybe I got a different

Re: [OE-core] [PATCH] js: Update to v1.8.5

2012-02-05 Thread Sergey 'Jin' Bostandzhyan
Hi, On Sun, Feb 05, 2012 at 06:41:54PM +0200, Andrei Gherzan wrote: About DEPENDS, I couldn't find any dependencies. In order to check this i baked js in a new build without having anything in DEPENDS and the package succeeded just as a hint: if you compile js with the threadsafe option you

Re: [OE-core] [PATCH] js: Update to v1.8.5

2012-02-05 Thread Andrei Gherzan
On Sun, Feb 5, 2012 at 19:50, Sergey 'Jin' Bostandzhyan j...@mediatomb.ccwrote: Hi, On Sun, Feb 05, 2012 at 06:41:54PM +0200, Andrei Gherzan wrote: About DEPENDS, I couldn't find any dependencies. In order to check this i baked js in a new build without having anything in DEPENDS and the

[OE-core] do rootfs does not create log files

2012-02-05 Thread Andreas Müller
Hi, is it a bug or a feature that do_rootfs does not create the package information (packed_files / packages ..) in a deploy sub-folder did I miss a switch for this? Thanks in advance Andreas ___ Openembedded-core mailing list

Re: [OE-core] do rootfs does not create log files

2012-02-05 Thread Khem Raj
On Sun, Feb 5, 2012 at 2:16 PM, Andreas Müller schnitzelt...@googlemail.com wrote: Hi, is it a bug or a feature that do_rootfs does not create the package information (packed_files / packages ..) in a deploy sub-folder did I miss a switch for this? which files to be sure ? Thanks in

Re: [OE-core] do rootfs does not create log files

2012-02-05 Thread Andreas Müller
On Mon, Feb 6, 2012 at 12:24 AM, Khem Raj raj.k...@gmail.com wrote: On Sun, Feb 5, 2012 at 2:16 PM, Andreas Müller schnitzelt...@googlemail.com wrote: Hi, is it a bug or a feature that do_rootfs does not create the package information (packed_files / packages ..) in a deploy sub-folder did I

Re: [OE-core] do rootfs does not create log files

2012-02-05 Thread Khem Raj
On Sun, Feb 5, 2012 at 3:47 PM, Andreas Müller schnitzelt...@googlemail.com wrote: deploy/images/machine-name was a sub-folder for each image created containing helpful files (which packages were installed / licenses / file in image... I am thinking you are talking about testlab you might

[OE-core] [PATCH V2 00/20] uclibc upgrade, initial kmod and thumb tune

2012-02-05 Thread Khem Raj
I have added few more patches on top Renaming POKY to CORE-IMAGE Adding yp.org as fallback mirror for oe-core build fixes needed to get going on ubuntu 12.04 All qemu core-image-sato builds (from scratch) and boots on both eglibc/uclibc with this set The following changes since commit

[OE-core] [PATCH 01/20] task-core-tools: Divide it into 3 recipes

2012-02-05 Thread Khem Raj
task-core-tools-debug, task-core-tools-profile, task-core-tools-testapps otherwise if we choose one through PACKAGE_GROUPS all packages are built since they are in same recipe. Signed-off-by: Khem Raj raj.k...@gmail.com --- .../conf/distro/include/distro_tracking_fields.inc | 26 +--

[OE-core] [PATCH 02/20] Enable options needed for ltp to compile

2012-02-05 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-core/uclibc/uclibc-git/uClibc.distro |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/meta/recipes-core/uclibc/uclibc-git/uClibc.distro b/meta/recipes-core/uclibc/uclibc-git/uClibc.distro index

[OE-core] [PATCH 04/20] tunearch/arm: Differentiate between thumb code generation and thumb capability

2012-02-05 Thread Khem Raj
We have diverged a bit from oe.dev where thumb in OVERRIDES meant the code was being compiled in thumb mode. With tunearch this got a different meaning where it meant that if a core is capable of generating thumb code them we will have this in overrides. With this patch I am trying to address the

[OE-core] [PATCH 05/20] tune-thumb.inc: Delete

2012-02-05 Thread Khem Raj
The same functionality is provided by machine/include/arm/feature-arm-thumb.inc Setting ARM_INSTRUCTION_SET = thumb in distro configs should be enough Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/conf/machine/include/tune-thumb.inc | 32 -- 1 files changed, 0

[OE-core] [PATCH 06/20] uclibc: Get the thumb features from tune flags

2012-02-05 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-core/uclibc/uclibc-config.inc |4 +++- meta/recipes-core/uclibc/uclibc.inc|1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/uclibc/uclibc-config.inc

[OE-core] [PATCH 07/20] kmod: Add recipes

2012-02-05 Thread Khem Raj
kmod is replacement for module-init-tools Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-kernel/kmod/kmod-native_git.bb | 14 + meta/recipes-kernel/kmod/kmod.inc| 31 +++ meta/recipes-kernel/kmod/kmod/depmod-search.conf |6 ++

[OE-core] [PATCH 08/20] module-init-tools: Delete

2012-02-05 Thread Khem Raj
Since its provided by kmod Signed-off-by: Khem Raj raj.k...@gmail.com --- .../module-init-tools/files/disable_man.patch | 25 .../files/grab_module_memset.patch | 21 -- .../files/modutils_extension.patch | 25

[OE-core] [PATCH 09/20] image.bbclass, kernel.bbclass: Use kmod-native instead of module-init-tools-cross

2012-02-05 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/image.bbclass |2 +- meta/classes/kernel.bbclass |9 - 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 3034725..adb9b39 100644 ---

[OE-core] [PATCH 12/20] zlib: Upgrade 1.2.5 - 1.2.6

2012-02-05 Thread Khem Raj
Dont use autotools, it really not so autoconf like. the configure script gets updated with every release of zlib and we overwrite that. Instead use the upstream provided configure copyright year was changed in zlib.h which caused change in LIC_FILE_CHECKSUM fix.inverted.LFS.logic.patch is

[OE-core] [PATCH 14/20] gconf, consolekit: Avoid polkit when compiling with uclibc

2012-02-05 Thread Khem Raj
polkit uses netdb functionality from glibc which is not available in uclibc therefore we avoid polkit when compiling for uclibc systems. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-gnome/gnome/gconf_3.2.3.bb|9 +++--

[OE-core] [PATCH 17/20] classes, recipes: Replace POKY_* with CORE_IMAGE_*

2012-02-05 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/core-image.bbclass|8 meta/recipes-core/images/core-image-minimal.bb |2 +- meta/recipes-core/images/self-hosted-image.bb |2 +- meta/recipes-extended/images/core-image-basic.bb |2

[OE-core] [PATCH 15/20] python: Fix build failure of python-elementtree on x86_64

2012-02-05 Thread Khem Raj
The problem is due to mixing of headers from host system thusly corrected in setup.py by checkinng if we are cross compiling Signed-off-by: Khem Raj raj.k...@gmail.com --- .../python/python/host_include_contamination.patch | 27 meta/recipes-devtools/python/python_2.7.2.bb

[OE-core] [PATCH 18/20] libx11: Backport _XGetRequest API

2012-02-05 Thread Khem Raj
This API is relatively new and will be in next release of libX11 this is needed for OE qemu-native which links to libx11-native but uses libGL from build system and herein lies the problem if you have bleeding edge distro e.g. ubuntu 12.04(development) libGL.so expects this API to be present.

[OE-core] [PATCH 19/20] gcc-cross-testing: Fix evaluation of user and target name

2012-02-05 Thread Khem Raj
Dont use -q to grep we pipe to /dev/null anyway all we care is the return status of grep Signed-off-by: Khem Raj raj.k...@gmail.com xxx Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-cross.inc |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff

[OE-core] [PATCH 10/20] pseudo: Wrap renameat and opendir

2012-02-05 Thread Khem Raj
Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/pseudo/pseudo/opendir.patch | 92 meta/recipes-devtools/pseudo/pseudo/renameat.patch | 227 meta/recipes-devtools/pseudo/pseudo_1.2.bb |6 +- 3 files changed, 323 insertions(+), 2

[OE-core] [PATCH 20/20] mirrors.bbclass: Add yp.org and oe.org to fallback mirrors

2012-02-05 Thread Khem Raj
This should improve the fetching errors users see when upstream src_uri is unavailable Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/classes/mirrors.bbclass | 21 - 1 files changed, 20 insertions(+), 1 deletions(-) diff --git a/meta/classes/mirrors.bbclass

[OE-core] [PATCH 03/20] arm/tune: Correct the logic which added thumb-interwork to OVERRIDES

2012-02-05 Thread Khem Raj
Add no-thumb-interwork to TUNE_FEATURES for angstrom Signed-off-by: Khem Raj raj.k...@gmail.com --- .../conf/machine/include/arm/feature-arm-thumb.inc |2 +- meta/conf/machine/include/tune-strongarm1100.inc |4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git

[OE-core] [PATCH 0/2] glib-2.0: Don't check function qsort_r in configure.ac

2012-02-05 Thread Xiaofeng Yan
From: Xiaofeng Yan xiaofeng@windriver.com The function g_qsort_with_data has two kinds of realization. One calls qsort_r from libglib, the other realize itself. the realization method is controlled by macro HAVE_QSORT_R. qsort_r from libglib cause sort error. Add no-check-qsort_r.patch for

[OE-core] [PATCH 1/2] glib-2.0: Don't check function qsort_r

2012-02-05 Thread Xiaofeng Yan
From: Xiaofeng Yan xiaofeng@windriver.com function g_qsort_with_data has two kinds of realization. One calls qsort_r from libglib, the other realize itself. qsort_r from libglib cause sort error. For fixing this problem no checking qsort_r in configure.ac. [YOCTO #1959] Signed-off-by:

[OE-core] [PATCH 2/2] glib-2.0: Add patch no-check-qsort_r.patch

2012-02-05 Thread Xiaofeng Yan
From: Xiaofeng Yan xiaofeng@windriver.com Apply this patch for avoiding sort error. Please check no-check-qsort_r.patch for detailed information. Signed-off-by: Xiaofeng Yan xiaofeng@windriver.com --- meta/recipes-core/glib-2.0/glib-2.0_2.30.2.bb |3 ++- 1 files changed, 2

Re: [OE-core] [PATCH 0/2] glib-2.0: Don't check function qsort_r in configure.ac

2012-02-05 Thread Martin Jansa
On Mon, Feb 06, 2012 at 02:41:09PM +0800, Xiaofeng Yan wrote: From: Xiaofeng Yan xiaofeng@windriver.com The function g_qsort_with_data has two kinds of realization. One calls qsort_r from libglib, the other realize itself. the realization method is controlled by macro HAVE_QSORT_R.

Re: [OE-core] [PATCH 0/2] glib-2.0: Don't check function qsort_r in configure.ac

2012-02-05 Thread Xiaofeng Yan
On 2012年02月06日 15:05, Martin Jansa wrote: On Mon, Feb 06, 2012 at 02:41:09PM +0800, Xiaofeng Yan wrote: From: Xiaofeng Yanxiaofeng@windriver.com The function g_qsort_with_data has two kinds of realization. One calls qsort_r from libglib, the other realize itself. the realization method is

[OE-core] Buildhistory, was Re: do rootfs does not create log files

2012-02-05 Thread Koen Kooi
Op 5 feb. 2012, om 23:16 heeft Andreas Müller het volgende geschreven: Hi, is it a bug or a feature that do_rootfs does not create the package information (packed_files / packages ..) in a deploy sub-folder did I miss a switch for this? It's this one: