Re: [OE-core] [PATCH 2/2] perl: use archlib_exp config.sh variable

2012-10-09 Thread Tom Zanussi
On Wed, 2012-10-10 at 11:00 +0800, Kang Kai wrote: > On 2012年10月10日 08:48, tom.zanu...@intel.com wrote: > > From: Tom Zanussi > > > > This patch uses an unmodified version of archlibexp called > > archlib_exp, introduced by a previous patch to config.sh, which is > > used to generate the correct

Re: [OE-core] [PATCH 2/2] perl: use archlib_exp config.sh variable

2012-10-09 Thread Kang Kai
On 2012?10?10? 08:48, tom.zanu...@intel.com wrote: From: Tom Zanussi This patch uses an unmodified version of archlibexp called archlib_exp, introduced by a previous patch to config.sh, which is used to generate the correct value of ARCHLIB_EXP into config.h Fixes [YOCTO #3099]. Signed-off-by:

Re: [OE-core] Recipes with disabled parallel make

2012-10-09 Thread McClintock Matthew-B29882
On Thu, Mar 8, 2012 at 7:34 AM, Andreas Oberritter wrote: > On 02.03.2012 23:29, Yury Bushmelev wrote: >> 2012/2/10 Khem Raj : >>> Hi >>> >>> Just grepped for the occurances of disabled parallel make and I see >>> around 40 cases on oe-core >>> >>> git grep PARALLEL_MAKE.*=.*\"\" recipes* | grep

Re: [OE-core] [PATCH 1/1] perl: fix @INC

2012-10-09 Thread Kang Kai
On 2012年10月10日 08:52, Tom Zanussi wrote: On Tue, 2012-10-09 at 09:12 -0500, Tom Zanussi wrote: On Tue, 2012-10-09 at 14:10 +0100, Richard Purdie wrote: On Tue, 2012-10-09 at 16:32 +0800, Kang Kai wrote: perl @INC path includes native perl modules path. When run "perl -V", the output at the end

Re: [OE-core] [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194

2012-10-09 Thread jhuang0
On 10/9/2012 8:38 PM, Burton, Ross wrote: On 9 October 2012 11:38, Paul Eggleton wrote: * I sent this months ago but was told that oe-core is not the right place, however, we think it makes sense to add ruby to complete the scripting language set of: python, perl, ruby, so I re-send it.

Re: [OE-core] [PATCH 1/1] perl: fix @INC

2012-10-09 Thread Tom Zanussi
On Tue, 2012-10-09 at 09:12 -0500, Tom Zanussi wrote: > On Tue, 2012-10-09 at 14:10 +0100, Richard Purdie wrote: > > On Tue, 2012-10-09 at 16:32 +0800, Kang Kai wrote: > > > perl @INC path includes native perl modules path. When run "perl -V", > > > the output at the end is something like: > > >

[OE-core] [PATCH 2/2] perl: use archlib_exp config.sh variable

2012-10-09 Thread tom . zanussi
From: Tom Zanussi This patch uses an unmodified version of archlibexp called archlib_exp, introduced by a previous patch to config.sh, which is used to generate the correct value of ARCHLIB_EXP into config.h Fixes [YOCTO #3099]. Signed-off-by: Tom Zanussi --- .../perl/perl-5.14.2/perl-archlib

[OE-core] [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h

2012-10-09 Thread tom . zanussi
From: Tom Zanussi perl.c uses an ARCHLIB_EXP define to generate compile-time code that adds the archlibexp path to @INC during run-time initialization of a new perl interpreter. Because we've changed this value in a temporary way to make it possible to use ExtUtils::Embed in the target build (th

[OE-core] [PATCH 0/2] perl: fix @INC, v2

2012-10-09 Thread tom . zanussi
From: Tom Zanussi This fixes the bug reported by Kang Kai in a way that allows perf scripting to continue to work. Before this patch, @INC on the target would contain a native path: @INC: /etc/perl /usr/lib/perl/site_perl/5.14.2/ /usr/lib/perl/site_perl/5.14.2 /usr/lib/pe

[OE-core] Buildhistory web interface

2012-10-09 Thread Paul Eggleton
Hi all, As part of working on buildhistory[1] I developed a Django-based web application for reviewing warnings generated by analysing the output, and finally it has reached a state where I can release it. It's fairly basic but provides the following features: * Generate warnings and import t

Re: [OE-core] [PATCH] bzip license: bzip2 not bzip.

2012-10-09 Thread Martin Jansa
On Tue, Oct 09, 2012 at 12:28:54PM -0700, Flanagan, Elizabeth wrote: > The name of the license for bzip2 is wrong causing warnings > to be thrown. Can you resend with -M? Cheers, > > Signed-off-by: Elizabeth Flanagan > --- > meta/files/common-licenses/bzip | 41 > -

Re: [OE-core] [PATCH] autotools.bbclass: update gnu-config files always

2012-10-09 Thread Richard Purdie
On Tue, 2012-10-09 at 22:01 +0200, Marcin Juszkiewicz wrote: > When recipe inherits autotools it gets do_configure defined. One of > things which are done is autoreconf so gnu-config files are updated to > latest OE version. > > But some recipes use own do_configure due to hard edited configure >

[OE-core] [PATCH 1/2] busybox: Factor out defconfig and binary name

2012-10-09 Thread Andy Ross
Allow recipes that require busybox.inc to specificy custom defconfig files and binary names such that multiple busybox configurations may coexist. Signed-off-by: Andy Ross --- meta/recipes-core/busybox/busybox.inc | 92 +++-- meta/recipes-core/busybox/busybox_1.20.2

[OE-core] [PATCH 2/2] busybox-oe-min: add package for minimal non-busybox systems

2012-10-09 Thread Andy Ross
A handful of busybox utilities (run-parts, start-stop-daemon, ifupdown) are "core" features required by the distribution without packaged compatible replacements. Build these into a tiny busybox-oe-min that can be included in bash/coreutile-based images without pulling in all of the needless busyb

[OE-core] [PATCH RFC 0/2] eliminate (almost all of) busybox for GNUish images

2012-10-09 Thread Andy Ross
We've been attempting to build an image that is busybox-free. Unfortunately there are a handful of busybox applets which are used in existing functionality (mostly various initscripts) and for which oe-core has no packaged replacements: + /usr/bin/run-parts - part of upstream debianutils, unpackag

Re: [OE-core] [PATCH] chkconfig: pass CFLAGS to Makefile

2012-10-09 Thread Mark Hatle
On 10/9/12 3:53 PM, Joe Slater wrote: The environment CFLAGS is not used by the chkconfig Makefile, so debug and optimization options are ignored. So, we use RPM_OPT_FLAGS to pass CFLAGS into Makefile. Upstream-Status: Inappropriate [configuration] Signed-off-by: Joe Slater --- .../recipes-

[OE-core] [PATCH] chkconfig: pass CFLAGS to Makefile

2012-10-09 Thread Joe Slater
The environment CFLAGS is not used by the chkconfig Makefile, so debug and optimization options are ignored. So, we use RPM_OPT_FLAGS to pass CFLAGS into Makefile. Upstream-Status: Inappropriate [configuration] Signed-off-by: Joe Slater --- .../recipes-extended/chkconfig/chkconfig_1.3.58.bb |

[OE-core] [PATCH] autotools.bbclass: update gnu-config files always

2012-10-09 Thread Marcin Juszkiewicz
When recipe inherits autotools it gets do_configure defined. One of things which are done is autoreconf so gnu-config files are updated to latest OE version. But some recipes use own do_configure due to hard edited configure scripts or other reasons. We can edit those recipes one by one or can tri

[OE-core] [PATCH] bzip license: bzip2 not bzip.

2012-10-09 Thread Flanagan, Elizabeth
The name of the license for bzip2 is wrong causing warnings to be thrown. Signed-off-by: Elizabeth Flanagan --- meta/files/common-licenses/bzip | 41 -- meta/files/common-licenses/bzip2 | 41 ++ 2 files changed, 41 inse

Re: [OE-core] [PATCH 3/9] gcc-cross: Make gcc-cross-initial as the only intermediate gcc stage

2012-10-09 Thread Khem Raj
On Oct 9, 2012, at 10:37 AM, Elvis Dowson wrote: > Hi Khem, > > On Oct 9, 2012, at 5:48 PM, Elvis Dowson wrote: > >> So, now I've got gcc-4.5.4 working with eglibc-2.13, upto the point where >> the kconfig infrastructure was added. >> >> Next, to add the kconfig infrastructure to eglibc-2.13

Re: [OE-core] [PATCH 3/9] gcc-cross: Make gcc-cross-initial as the only intermediate gcc stage

2012-10-09 Thread Elvis Dowson
Hi Khem, On Oct 9, 2012, at 5:48 PM, Elvis Dowson wrote: > So, now I've got gcc-4.5.4 working with eglibc-2.13, upto the point where the > kconfig infrastructure was added. > > Next, to add the kconfig infrastructure to eglibc-2.13, and fast forward to > the tip of the poky master branch, and

Re: [OE-core] [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194

2012-10-09 Thread Khem Raj
On Oct 9, 2012, at 3:38 AM, Paul Eggleton wrote: > Hi Jackie, > > On Tuesday 09 October 2012 14:36:53 jackie.hu...@windriver.com wrote: >> From: Jackie Huang >> >> * I sent this months ago but was told that oe-core is not the right place, >> however, we think it makes sense to add ruby to co

Re: [OE-core] [PATCH 1/1] perl: fix @INC

2012-10-09 Thread Tom Zanussi
On Tue, 2012-10-09 at 14:10 +0100, Richard Purdie wrote: > On Tue, 2012-10-09 at 16:32 +0800, Kang Kai wrote: > > perl @INC path includes native perl modules path. When run "perl -V", > > the output at the end is something like: > > @INC: > > /etc/perl > > /usr/lib/perl/site_perl/5.14.2/

Re: [OE-core] [PATCH 3/9] gcc-cross: Make gcc-cross-initial as the only intermediate gcc stage

2012-10-09 Thread Elvis Dowson
Hi Khem, On Oct 6, 2012, at 7:41 PM, Khem Raj wrote: > On Fri, Oct 5, 2012 at 11:59 PM, Elvis Dowson wrote: >> >> http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=48df3fe947c4d900aa6b66d9d8352c0d9e59ebe4 eglibc: Fix eglibc-initial and let eglibc depend on it >> I've narrowed down th

[OE-core] [PATCH] hob-toolchain: task-core-standalone-sdk-target renamed

2012-10-09 Thread Andrei Dinu
into packagegroup-core-standalone-sdk-target. this chagnges applies also to task-core-standalone-sdk-target-dbg. Signed-off-by: Andrei Dinu --- bitbake/lib/bb/ui/crumbs/hoblistmodel.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.p

Re: [OE-core] inc and bb vs. layers

2012-10-09 Thread Paul Eggleton
On Tuesday 09 October 2012 15:12:09 Steffen Sledz wrote: > Given to files > > foo.inc > foo.bb (which requires foo.inc) > > in layer Foo. Now i want to write a new > > bar.bb (which requires foo.inc too) > > in layer Bar. Is this possible without keeping a copy of foo.inc in Bar? Certain

[OE-core] inc and bb vs. layers

2012-10-09 Thread Steffen Sledz
Given to files foo.inc foo.bb (which requires foo.inc) in layer Foo. Now i want to write a new bar.bb (which requires foo.inc too) in layer Bar. Is this possible without keeping a copy of foo.inc in Bar? Steffen -- DResearch Fahrzeugelektronik GmbH Otto-Schmirgal-Str. 3, 10319 Berlin,

Re: [OE-core] [PATCH 1/1] perl: fix @INC

2012-10-09 Thread Richard Purdie
On Tue, 2012-10-09 at 16:32 +0800, Kang Kai wrote: > perl @INC path includes native perl modules path. When run "perl -V", > the output at the end is something like: > @INC: > /etc/perl > /usr/lib/perl/site_perl/5.14.2/ > /usr/lib/perl/site_perl/5.14.2 > /usr/lib/perl/vendor_perl/

Re: [OE-core] [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194

2012-10-09 Thread Burton, Ross
On 9 October 2012 11:38, Paul Eggleton wrote: >> * I sent this months ago but was told that oe-core is not the right place, >> however, we think it makes sense to add ruby to complete the scripting >> language set of: python, perl, ruby, so I re-send it. > > I have to say, my opinion is the sa

Re: [OE-core] [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194

2012-10-09 Thread Paul Eggleton
Hi Jackie, On Tuesday 09 October 2012 14:36:53 jackie.hu...@windriver.com wrote: > From: Jackie Huang > > * I sent this months ago but was told that oe-core is not the right place, > however, we think it makes sense to add ruby to complete the scripting > language set of: python, perl, ruby,

[OE-core] [PATCH] sstate-cache-management: hide error message when one of possible layer location doesn't exist

2012-10-09 Thread Martin Jansa
* fixes [YOCTO #3116] Signed-off-by: Martin Jansa --- scripts/sstate-cache-management.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh index 4c06fe8..551d2f2 100755 --- a/scripts/sstate-cache-managemen

[OE-core] [PATCH 1/1] perl: fix @INC

2012-10-09 Thread Kang Kai
perl @INC path includes native perl modules path. When run "perl -V", the output at the end is something like: @INC: /etc/perl /usr/lib/perl/site_perl/5.14.2/ /usr/lib/perl/site_perl/5.14.2 /usr/lib/perl/vendor_perl/5.14.2/ /usr/lib/perl/vendor_perl/5.14.2 /mnt/sda10/poky

[OE-core] [PATCH 0/1] fix path in perl @INC

2012-10-09 Thread Kang Kai
The following changes since commit eb8ac50d58575be3e04c4decc5b0e2d80381be9b: documentation: dev-manual - mentioned SRC_URI in the kernel example (2012-10-07 13:15:37 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/distro http://git.pokylinux.org/