Re: [OE-core] RFC: FOO_subtract, the logical antidote to FOO_append.

2012-05-17 Thread Richard Purdie
On Thu, 2012-05-17 at 21:18 -0700, Chris Larson wrote: > On Wed, May 16, 2012 at 9:58 AM, Peter Seebach > wrote: > > On Wed, 16 May 2012 07:35:45 +0300 > > Saul Wold wrote: > > > >> My understanding is that a _subtract is fraught with danger, there > >> all sorts of ordering implications. > > > >

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Koen Kooi
Op 17 mei 2012, om 23:02 heeft Richard Purdie het volgende geschreven: > On Thu, 2012-05-17 at 22:44 +0200, Koen Kooi wrote: >> Op 17 mei 2012 om 22:29 heeft Richard Purdie >> het volgende geschreven: >> >>> On Tue, 2012-05-15 at 13:54 -0700, Khem Raj wrote: On Tue, May 15, 2012 at 2:32 A

Re: [OE-core] [PATCHv3] xserver-xorg-lite: disable xmlto like full xserver-xorg does

2012-05-17 Thread Saul Wold
On 05/12/2012 03:18 PM, Martin Jansa wrote: * xmlto-native is unusable (see YOCTO #2416 xmlto/xsltproc stylesheets cannot be found even when they are installed in sysroot) * fails like this: | make[2]: Entering directory `/OE/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xserver-xorg-li

Re: [OE-core] [PATCH] xf86-video-vmware: update package to 12.0.2

2012-05-17 Thread Saul Wold
On 05/16/2012 05:27 PM, Alexandru DAMIAN wrote: This patch updates the package version for the vmware xorg driver to 12.0.2, following upstream. No other changes made beside updating the checksums. --- ...mware_12.0.1.bb => xf86-video-vmware_12.0.2.bb} |6 +++--- 1 file changed, 3 inserti

Re: [OE-core] [PATCH] gnupg: Update to upstream version 2.0.19

2012-05-17 Thread Saul Wold
On 05/16/2012 04:47 PM, Laurentiu Palcu wrote: Signed-off-by: Laurentiu Palcu --- .../gnupg/{gnupg_2.0.18.bb => gnupg_2.0.19.bb} |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-support/gnupg/{gnupg_2.0.18.bb => gnupg_2.0.19.bb} (81%) diff --git a/met

Re: [OE-core] [PATCH] gnutls: update to 2.12.19

2012-05-17 Thread Saul Wold
On 05/16/2012 03:07 PM, Bogdan Marinescu wrote: Tested with curl in qemux86/core-image-lsb. Signed-off-by: Bogdan Marinescu --- .../configure-fix.patch|0 .../correct_rpl_gettimeofday_signature.patch |0 .../fix-gettext-version.patch

Re: [OE-core] [PATCH 0/1] archiver.bbclass: Add two default set for avoiding error when missing assignment

2012-05-17 Thread Saul Wold
On 05/16/2012 11:59 AM, xiaofeng@windriver.com wrote: From: Xiaofeng Yan This is V2. Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding building error when forgetting to assign to them. Make some modification according to cla

Re: [OE-core] [PATCH] oe.types: give the regex type more sane semantics

2012-05-17 Thread Saul Wold
On 05/16/2012 04:26 AM, Christopher Larson wrote: From: Christopher Larson Currently, if a variable is unset or has an empty value, the regex type will return a match object which always matches. Not all variable types will necessarily have the same behavior for handling defaults. I believe that

Re: [OE-core] [PATCH] sanity.bbclass: check user can read and write to SSTATE_DIR

2012-05-17 Thread Saul Wold
On 05/12/2012 04:00 AM, Joshua Lock wrote: The user needs read and write permissions to SSTATE_DIR, check whether they have sufficient permissions and if not recommend use of SSTATE_MIRRORS. Signed-off-by: Joshua Lock --- meta/classes/sanity.bbclass | 17 ++--- 1 files changed,

Re: [OE-core] RFC: FOO_subtract, the logical antidote to FOO_append.

2012-05-17 Thread Chris Larson
On Wed, May 16, 2012 at 9:58 AM, Peter Seebach wrote: > On Wed, 16 May 2012 07:35:45 +0300 > Saul Wold wrote: > >> My understanding is that a _subtract is fraught with danger, there >> all sorts of ordering implications. > > Yes. > > But consider, if you will, the specific case of > DISTRO_FEATUR

Re: [OE-core] [PATCH 1/1] ncurses: Disable parallel make

2012-05-17 Thread Xiaofeng Yan
On 2012年05月17日 20:02, Jason Wessel wrote: On 05/16/2012 09:01 PM, Xiaofeng Yan wrote: On 2012年05月16日 19:02, Saul Wold wrote: On 05/16/2012 01:10 PM, xiaofeng@windriver.com wrote: From: Xiaofeng Yan Ncurses failure non-gplv3 build by race issue. So disable parallel \ make when building thi

[OE-core] [PATCH 0/1] sanity.bbclass: Fix typo

2012-05-17 Thread Peter Seebach
So, somehow in the the cleanup, I dropped the "% tune" following a %s. Re-added in this patch. And because I know how typo-prone I am, I tested that this really does produce the right results now. :) The following changes since commit 7163ebd92a799b8f000b2b6f303b20de468b5f90: Koen Kooi (1):

[OE-core] [PATCH 1/1] sanity.bbclass: Attach the missing value to a format string.

2012-05-17 Thread Peter Seebach
The tuning changes to sanity.bbclass were almost right, but one of the messages had a %s with no % operator. Signed-off-by: Peter Seebach --- meta/classes/sanity.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bb

[OE-core] [PATCH 4/5 v2] package_rpm: Add capability to directly query packageorigin

2012-05-17 Thread Mark Hatle
Add functionality to RPM to directly query the packageorigin (path) from the resolver database, instead of having to do this via an indirect method. This results in a minor performance improvement. Signed-off-by: Mark Hatle --- meta/classes/package_rpm.bbclass | 18 +++--

[OE-core] [PATCH 5/5 v2] rpm: Bump PR numbers on componnets that require RPM

2012-05-17 Thread Mark Hatle
With the recent RPM uprev, libzypp, sat-solver and zypper should be rebuilt to ensure they get the right BerkleyDB and rpmdb interfaces. Signed-off-by: Mark Hatle --- meta/recipes-extended/libzypp/libzypp_git.bb |2 +- meta/recipes-extended/sat-solver/sat-solver_git.bb |2 +- meta/

[OE-core] [PATCH 3/5 v2] ossp-uuid: Add oss-uuid package and RPM 5.4.9 integration

2012-05-17 Thread Mark Hatle
RPM 5.4.9 now strongly encourages you to have the ossp-uuid library available. Add this recipe, and change RPM to use the uuid functionality. Signed-off-by: Mark Hatle --- .../ossp-uuid/0001-Change-library-name.patch | 112 ...erve-m-option-status-in-v-option-handlin

[OE-core] [PATCH 2/5 v2] rpm: Upgrade RPM to 5.4.9

2012-05-17 Thread Mark Hatle
Beside upreving RPM, add necessary integration pathces to libzypp. Also change the configuration of RPM to support PACKAGECONFIG flags. RPM is highly configurable, the default configuration is good for minimal OE-Core use. Signed-off-by: Mark Hatle --- meta/recipes-devtools/rpm/rpm/rpm-lua.patc

[OE-core] [PATCH 1/5 v2] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Mark Hatle
RPM 5.4.8 requires db 5.3.x, so both are upgraded together. Signed-off-by: Mark Hatle --- meta/classes/rootfs_rpm.bbclass| 22 +- .../rpm/rpm/fix_for_automake_1.11.2.patch | 54 --- .../rpm/rpm/fprint-pointer-fix.patch | 35 -- .../rpm/rpm/remove-

[OE-core] [PATCH 0/5 v2] Uprev RPM to 5.4.9

2012-05-17 Thread Mark Hatle
Berkley DB also gets upreved, and a new package ossp-uuid gets added to the system. This was -heavily- tested with and without zypper on IA, and PPC. In addition a minor performance enhancement with a query operation was added. The uprev also adds the capability of using PACKAGECONFIG settings t

[OE-core] [PATCH 1/1] eglibc: package mtrace separately

2012-05-17 Thread nitin . a . kamble
From: Nitin A Kamble add libc-mtrace as dependency for task-core-tools-debug now eglibc-mtrace gets included in an sdk image and not in a non-sdk image. make uclibc recipe lie about providing libc-mtrace to satisfy the dependency This fixes bug: [YOCTO# 2374] Signed-off-by: Nitin A Kamble --

[OE-core] [PATCH 0/1] Misc fixes

2012-05-17 Thread nitin . a . kamble
From: Nitin A Kamble The following changes since commit b7c1ac86909b1479434048c3e1d013d6efd9eac8: Revert "kmod: Use base_libdir for installing libkmod" (2012-05-17 21:13:11 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib nitin/work http://git.pokylinux

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Andreas Müller
On Fri, May 18, 2012 at 12:50 AM, Khem Raj wrote: > On Thu, May 17, 2012 at 2:51 PM, Otavio Salvador > wrote: >> >> From time to time it is easier to avoid to work in OE-Core and work in >> meta-oe or another layer; udev is no different. It has been update in >> meta-oe long time ago and many peo

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Khem Raj
On Thu, May 17, 2012 at 2:51 PM, Otavio Salvador wrote: > > From time to time it is easier to avoid to work in OE-Core and work in > meta-oe or another layer; udev is no different. It has been update in > meta-oe long time ago and many people use and depends on it. if udev has been in meta-oe for

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Phil Blundell
On Thu, 2012-05-17 at 18:51 -0300, Otavio Salvador wrote: > It is important to state that if OE-Core breaks Meta-OE this is > crticial. It is not Yocto that people use and many active contributors > use Meta-OE so it is important and critical to that people. Seems more > health to the project to gi

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Paul Eggleton
On Thursday 17 May 2012 19:11:20 Otavio Salvador wrote: > On Thu, May 17, 2012 at 7:01 PM, Paul Eggleton > wrote: > > On Thursday 17 May 2012 18:51:05 Otavio Salvador wrote: > >> It is important to state that if OE-Core breaks Meta-OE this is > >> crticial. It is not Yocto that people use and many

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Otavio Salvador
On Thu, May 17, 2012 at 7:01 PM, Paul Eggleton wrote: > On Thursday 17 May 2012 18:51:05 Otavio Salvador wrote: >> It is important to state that if OE-Core breaks Meta-OE this is >> crticial. It is not Yocto that people use and many active contributors >> use Meta-OE so it is important and critica

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Paul Eggleton
On Thursday 17 May 2012 18:51:05 Otavio Salvador wrote: > It is important to state that if OE-Core breaks Meta-OE this is > crticial. It is not Yocto that people use and many active contributors > use Meta-OE so it is important and critical to that people. Seems more > health to the project to give

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Otavio Salvador
On Thu, May 17, 2012 at 6:25 PM, Paul Eggleton wrote: > On Thursday 17 May 2012 14:16:37 Tom Rini wrote: >> All that's happened is that meta-oe has been working as intended and put >> in a newer version of a recipe, before oe-core can move to it, and found >> problems that need to be addressed. >

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Paul Eggleton
On Thursday 17 May 2012 14:16:37 Tom Rini wrote: > All that's happened is that meta-oe has been working as intended and put > in a newer version of a recipe, before oe-core can move to it, and found > problems that need to be addressed. This is where I disagree - IMHO meta-oe should be split such

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Tom Rini
On Thu, May 17, 2012 at 10:02:43PM +0100, Richard Purdie wrote: > On Thu, 2012-05-17 at 22:44 +0200, Koen Kooi wrote: > > Op 17 mei 2012 om 22:29 heeft Richard Purdie > > het volgende geschreven: > > > > > On Tue, 2012-05-15 at 13:54 -0700, Khem Raj wrote: > > >> On Tue, May 15, 2012 at 2:32 AM,

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Richard Purdie
On Thu, 2012-05-17 at 22:44 +0200, Koen Kooi wrote: > Op 17 mei 2012 om 22:29 heeft Richard Purdie > het volgende geschreven: > > > On Tue, 2012-05-15 at 13:54 -0700, Khem Raj wrote: > >> On Tue, May 15, 2012 at 2:32 AM, Koen Kooi > >> wrote: > >>> The commit breaks pkgconfig and after discuss

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Flanagan, Elizabeth
On Thu, May 17, 2012 at 7:59 AM, Andrei Gherzan wrote: > Today i just gave another try same result. Responding here as well as the yocto list: A few people have been having this issue and after some discussion we think we have a root cause. Let me first explain what happened. The autobuilde

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Koen Kooi
Op 17 mei 2012 om 22:29 heeft Richard Purdie het volgende geschreven: > On Tue, 2012-05-15 at 13:54 -0700, Khem Raj wrote: >> On Tue, May 15, 2012 at 2:32 AM, Koen Kooi >> wrote: >>> The commit breaks pkgconfig and after discussing it with the kmod and udev >>> maintainers the conclusion wa

Re: [OE-core] [CONSOLIDATED PULL 00/12] Updated and Fixes

2012-05-17 Thread Richard Purdie
On Thu, 2012-05-17 at 19:51 +0300, Saul Wold wrote: > Richard, > > Pull in the backlog of changes from this week. Bigest change > that need looking at are Chris's. > > Sau! > > The following changes since commit 2cf6e7cf81c0b864b5d51be60094a6eb3e584383: > > fotowall: Add #include ui_wizard.h

[OE-core] [PATCH 1/1] sstate.bbclass: Make sure we don't have an empty fixmepath file

2012-05-17 Thread Mark Hatle
Jason Wessel noticed that a package without any fixmepath entries would generate a sed warning about no input files. This patch resolves that by ensuring that an empty fixmepath file never gets written into the sstate archive. Also we avoid a second message by only doing xargs if we got input. S

[OE-core] [PATCH 0/1] Fix sed warning message in sstate

2012-05-17 Thread Mark Hatle
The following changes since commit 2cf6e7cf81c0b864b5d51be60094a6eb3e584383: fotowall: Add #include ui_wizard.h to ExportWizard.cpp (2012-05-16 07:33:15 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib mhatle/sstate http://git.pokylinux.org/cgit.cgi/poky-

Re: [OE-core] [PATCH] Revert "kmod: Use base_libdir for installing libkmod"

2012-05-17 Thread Richard Purdie
On Tue, 2012-05-15 at 13:54 -0700, Khem Raj wrote: > On Tue, May 15, 2012 at 2:32 AM, Koen Kooi wrote: > > The commit breaks pkgconfig and after discussing it with the kmod and udev > > maintainers the conclusion was reached that putting the libraries in /lib > > instead of /usr/lib is not suppo

Re: [OE-core] [PATCH 1/3] (libc-)package.bbclass: Added MLPREFIX to locale packages.

2012-05-17 Thread Richard Purdie
On Thu, 2012-05-17 at 11:12 -0700, Khem Raj wrote: > On Thu, May 17, 2012 at 2:25 AM, Lianhao Lu wrote: > > Added multilib prefix to the locale related package names/dependencies. > > > > Signed-off-by: Lianhao Lu > > Does mlprefix already has a leading '-' ? > otherwise I think adding a - would

Re: [OE-core] [PATCH 1/4] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Mark Hatle
On 5/17/12 1:52 PM, Khem Raj wrote: On Thu, May 17, 2012 at 11:49 AM, Mark Hatle wrote: One thing I did forget to note in this message. If you are NOT using OEBasicHash, since this is not default in OE-Core may be forces PR bumps for the affected recipes along with this series would make se

Re: [OE-core] [PATCH 1/4] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Khem Raj
On Thu, May 17, 2012 at 11:49 AM, Mark Hatle wrote: > > One thing I did forget to note in this message.  If you are NOT using > OEBasicHash, since this is not default in OE-Core may be forces PR bumps for the affected recipes along with this series would make sense. _

Re: [OE-core] [PATCH 1/4] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Mark Hatle
On 5/17/12 1:27 PM, Khem Raj wrote: On Thu, May 17, 2012 at 11:25 AM, Mark Hatle wrote: RPM 5.4.8 requires db 5.3.x, so both are upgraded together. is it also fine to upgrade this on existing devices ? or do databases have to be updated too ? I did limited testing with this, and it was fine

Re: [OE-core] [PATCH 1/4] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Khem Raj
On Thu, May 17, 2012 at 11:25 AM, Mark Hatle wrote: > RPM 5.4.8 requires db 5.3.x, so both are upgraded together. is it also fine to upgrade this on existing devices ? or do databases have to be updated too ? ___ Openembedded-core mailing list Openembe

[OE-core] [PATCH 3/4] ossp-uuid: Add oss-uuid package and RPM 5.4.9 integration

2012-05-17 Thread Mark Hatle
RPM 5.4.9 now strongly encourages you to have the ossp-uuid library available. Add this recipe, and change RPM to use the uuid functionality. Signed-off-by: Mark Hatle --- .../ossp-uuid/0001-Change-library-name.patch | 112 ...erve-m-option-status-in-v-option-handlin

[OE-core] [PATCH 0/4] Uprev RPM to 5.4.9

2012-05-17 Thread Mark Hatle
Berkley DB also gets upreved, and a new package ossp-uuid gets added to the system. This was -heavily- tested with and without zypper on IA, and PPC. In addition a minor performance enhancement with a query operation was added. The uprev also adds the capability of using PACKAGECONFIG settings t

[OE-core] [PATCH 4/4] package_rpm: Add capability to directly query packageorigin

2012-05-17 Thread Mark Hatle
Add functionality to RPM to directly query the packageorigin (path) from the resolver database, instead of having to do this via an indirect method. This results in a minor performance improvement. Signed-off-by: Mark Hatle --- meta/classes/package_rpm.bbclass | 18 +++--

[OE-core] [PATCH 1/4] rpm: Upgrade RPM to 5.4.8 (db to 5.3.15)

2012-05-17 Thread Mark Hatle
RPM 5.4.8 requires db 5.3.x, so both are upgraded together. Signed-off-by: Mark Hatle --- meta/classes/rootfs_rpm.bbclass| 22 +- .../rpm/rpm/fix_for_automake_1.11.2.patch | 54 --- .../rpm/rpm/fprint-pointer-fix.patch | 35 -- .../rpm/rpm/remove-

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

2012-05-17 Thread Mark Hatle
Beside upreving RPM, add necessary integration pathces to libzypp. Also change the configuration of RPM to support PACKAGECONFIG flags. RPM is highly configurable, the default configuration is good for minimal OE-Core use. Signed-off-by: Mark Hatle --- meta/recipes-devtools/rpm/rpm/rpm-lua.patc

Re: [OE-core] [PATCH 1/3] (libc-)package.bbclass: Added MLPREFIX to locale packages.

2012-05-17 Thread Khem Raj
On Thu, May 17, 2012 at 2:25 AM, Lianhao Lu wrote: > Added multilib prefix to the locale related package names/dependencies. > > Signed-off-by: Lianhao Lu Does mlprefix already has a leading '-' ? otherwise I think adding a - would make is more readable. > --- >  meta/classes/libc-package.bbcla

Re: [OE-core] [CONSOLIDATED PULL 00/12] Updated and Fixes

2012-05-17 Thread Koen Kooi
Op 17 mei 2012, om 18:51 heeft Saul Wold het volgende geschreven: > Richard, > > Pull in the backlog of changes from this week. Bigest change > that need looking at are Chris's. Where's the kmod fix? Does udev 182 need to remain unbuildable for another week? ___

[OE-core] [CONSOLIDATED PULL 11/12] sanity.bbclass: check user can read and write to SSTATE_DIR

2012-05-17 Thread Saul Wold
From: Joshua Lock The user needs read and write permissions to SSTATE_DIR, check whether they have sufficient permissions and if not recommend use of SSTATE_MIRRORS. Signed-off-by: Joshua Lock --- meta/classes/sanity.bbclass | 17 ++--- 1 files changed, 14 insertions(+), 3 deleti

[OE-core] [CONSOLIDATED PULL 12/12] xserver-xorg-lite: disable xmlto like full xserver-xorg does

2012-05-17 Thread Saul Wold
From: Martin Jansa * xmlto-native is unusable (see YOCTO #2416 xmlto/xsltproc stylesheets cannot be found even when they are installed in sysroot) * fails like this: | make[2]: Entering directory `/OE/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/xserver-xorg-lite/xserver-xorg-lite-2_1.1

[OE-core] [CONSOLIDATED PULL 10/12] xf86-video-vmware: update package to 12.0.2

2012-05-17 Thread Saul Wold
From: Alexandru DAMIAN This patch updates the package version for the vmware xorg driver to 12.0.2, following upstream. No other changes made beside updating the checksums. --- ...mware_12.0.1.bb => xf86-video-vmware_12.0.2.bb} |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ren

[OE-core] [CONSOLIDATED PULL 09/12] gnupg: Update to upstream version 2.0.19

2012-05-17 Thread Saul Wold
From: Laurentiu Palcu Signed-off-by: Laurentiu Palcu --- .../gnupg/{gnupg_2.0.18.bb => gnupg_2.0.19.bb} |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-support/gnupg/{gnupg_2.0.18.bb => gnupg_2.0.19.bb} (81%) diff --git a/meta/recipes-support/gnupg/gnup

[OE-core] [CONSOLIDATED PULL 08/12] gnutls: update to 2.12.19

2012-05-17 Thread Saul Wold
From: Bogdan Marinescu Tested with curl in qemux86/core-image-lsb. Signed-off-by: Bogdan Marinescu --- .../configure-fix.patch|0 .../correct_rpl_gettimeofday_signature.patch |0 .../fix-gettext-version.patch |0 .../gnutls-ope

[OE-core] [CONSOLIDATED PULL 05/12] dpkg: update to upstream version 1.16.3

2012-05-17 Thread Saul Wold
From: Marko Lindqvist Update dpkg recipe to get latest upstream version (1.16.3) as 1.15.8.7 is no longer available. * check_version.patch : updated to apply cleanly * dpkg-dev-avoid-fflush.patch : removed as already part of upstream * ignore_extra_fields.patch : updated to apply cleanly * perll

[OE-core] [CONSOLIDATED PULL 04/12] kernel.bbclass: add deploy link to KERNEL_IMAGETYPE

2012-05-17 Thread Saul Wold
From: Christopher Larson It's common to provide a non-machine-suffixed link in DEPLOY_DIR_IMAGE, so let's be consistent and do so here as well. Signed-off-by: Christopher Larson --- meta/classes/kernel.bbclass |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/classe

[OE-core] [CONSOLIDATED PULL 01/12] xinetd: Update to 2.3.15

2012-05-17 Thread Saul Wold
Signed-off-by: Saul Wold --- .../xinetd/{xinetd_2.3.14.bb => xinetd_2.3.15.bb} |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-extended/xinetd/{xinetd_2.3.14.bb => xinetd_2.3.15.bb} (90%) diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.14.bb b/meta/re

[OE-core] [CONSOLIDATED PULL 03/12] oe.types: give the regex type more sane semantics

2012-05-17 Thread Saul Wold
From: Christopher Larson Currently, if a variable is unset or has an empty value, the regex type will return a match object which always matches. Not all variable types will necessarily have the same behavior for handling defaults. I believe that returning a match object which matches nothing whe

[OE-core] [CONSOLIDATED PULL 00/12] Updated and Fixes

2012-05-17 Thread Saul Wold
Richard, Pull in the backlog of changes from this week. Bigest change that need looking at are Chris's. Sau! The following changes since commit 2cf6e7cf81c0b864b5d51be60094a6eb3e584383: fotowall: Add #include ui_wizard.h to ExportWizard.cpp (2012-05-16 07:33:15 +0100) are available in the

[OE-core] [CONSOLIDATED PULL 07/12] archiver.bbclass: Add two default set for avoiding error when missing assignment

2012-05-17 Thread Saul Wold
From: Xiaofeng Yan Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, \ SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding \ building error when forgetting to assign to them. Signed-off-by: Xiaofeng Yan --- meta/classes/archiver.bbclass |4 +++- 1 files changed, 3 insertions(+

[OE-core] [CONSOLIDATED PULL 06/12] meta/classes/sstate.bbclass: ensure sstate files have group R/W

2012-05-17 Thread Saul Wold
From: Joshua Lock In order to make sharing sstate files easier chmod them with 0664 permissions so that they are readable and writable by the user and any other members of their group. Signed-off-by: Joshua Lock --- meta/classes/sstate.bbclass |1 + 1 files changed, 1 insertions(+)

[OE-core] [CONSOLIDATED PULL 02/12] csl-versions: fix bb.process.CmdError reference

2012-05-17 Thread Saul Wold
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/conf/distro/include/csl-versions.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/conf/distro/include/csl-versions.inc b/meta/conf/distro/include/csl-versions.inc index ec7a6ba..0790b8a 100644

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Andrei Gherzan
Today i just gave another try same result. On Thu, May 17, 2012 at 5:56 PM, Flanagan, Elizabeth < elizabeth.flana...@intel.com> wrote: > On Thu, May 17, 2012 at 6:41 AM, Andrei Gherzan wrote: > > On 05/17/2012 04:38 PM, Bruce Ashfield wrote: > >> > >> On Thu, May 17, 2012 at 6:09 AM, Andrei

Re: [OE-core] [PATCH] kernel.bbclass: add deploy link to KERNEL_IMAGETYPE

2012-05-17 Thread Koen Kooi
Op 17 mei 2012, om 16:46 heeft Darren Hart het volgende geschreven: > On 05/15/2012 06:25 PM, Christopher Larson wrote: >> From: Christopher Larson >> >> It's common to provide a non-machine-suffixed link in DEPLOY_DIR_IMAGE, so >> let's be consistent and do so here as well. > > This of course

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Flanagan, Elizabeth
On Thu, May 17, 2012 at 6:41 AM, Andrei Gherzan wrote: > On 05/17/2012 04:38 PM, Bruce Ashfield wrote: >> >> On Thu, May 17, 2012 at 6:09 AM, Andrei Gherzan  wrote: >>> >>> Today i ran into an issue that Florin Sarbu signaled sometime last week. >>> It >>> seems like do_patch crashes while compili

Re: [OE-core] [PATCH] kernel.bbclass: add deploy link to KERNEL_IMAGETYPE

2012-05-17 Thread Darren Hart
On 05/15/2012 06:25 PM, Christopher Larson wrote: > From: Christopher Larson > > It's common to provide a non-machine-suffixed link in DEPLOY_DIR_IMAGE, so > let's be consistent and do so here as well. This of course means that building two machines in the same build dir will result in overwriti

[OE-core] [PATCH 1/1] test-reexec: Add script to address issues when task re-execution

2012-05-17 Thread Jiajun Xu
The script is used to address build issues when tasks of different recipes are re-executed. The script goes through all available recipes and their tasks. The test results are saved in ./reexeclogs. Force build logs are saved with prefix "force". Build failure logs are saved with prefix "failed".

[OE-core] [PATCH 0/1] Add test script to re-execute tasks

2012-05-17 Thread Jiajun Xu
Hi Richard, This patch is to address bug 2123. Please help to review it. It is based on the patch you posted on bugzilla. A similar function is added into the script to remove sstate files only. Thanks, Jiajun The following changes since commit 2cf6e7cf81c0b864b5d51be60094a6eb3e584383: fotowal

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Andrei Gherzan
On 05/17/2012 04:38 PM, Bruce Ashfield wrote: On Thu, May 17, 2012 at 6:09 AM, Andrei Gherzan wrote: Today i ran into an issue that Florin Sarbu signaled sometime last week. It seems like do_patch crashes while compiling linux 3.0: ERROR: Logfile of failure stored in: /media/HDD-WRS/yocto/2012

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Bruce Ashfield
On Thu, May 17, 2012 at 6:09 AM, Andrei Gherzan wrote: > Today i ran into an issue that Florin Sarbu signaled sometime last week. It > seems like do_patch crashes while compiling linux 3.0: > > ERROR: Logfile of failure stored in: > /media/HDD-WRS/yocto/2012-05-10-discovery-vea9/tmp/work/vexpressa

Re: [OE-core] [PATCH] evtest: Add evtest 1.30 support

2012-05-17 Thread Koen Kooi
Op 17 mei 2012, om 14:47 heeft Daiane Angolini het volgende geschreven: > On Thu, May 17, 2012 at 4:44 AM, Koen Kooi wrote: > >> Let's make a deal: new recipes will only be accepted into oe-core after sato >> has been removed from the oe-core layer. > > Ok, I understand. > > Could you, pleas

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Bruce Ashfield
On Thu, May 17, 2012 at 6:09 AM, Andrei Gherzan wrote: > Today i ran into an issue that Florin Sarbu signaled sometime last week. It > seems like do_patch crashes while compiling linux 3.0: The tools fixes are in place for this, can you send your full configuration ? i.e. what layers, their head

Re: [OE-core] [PATCH] evtest: Add evtest 1.30 support

2012-05-17 Thread Daiane Angolini
On Thu, May 17, 2012 at 4:44 AM, Koen Kooi wrote: > Let's make a deal: new recipes will only be accepted into oe-core after sato > has been removed from the oe-core layer. Ok, I understand. Could you, please, point me the right place/layer it should be included? Daiane Angolini ___

Re: [OE-core] [PATCH 1/1] ncurses: Disable parallel make

2012-05-17 Thread Jason Wessel
On 05/16/2012 09:01 PM, Xiaofeng Yan wrote: > On 2012年05月16日 19:02, Saul Wold wrote: >> On 05/16/2012 01:10 PM, xiaofeng@windriver.com wrote: >>> From: Xiaofeng Yan >>> >>> Ncurses failure non-gplv3 build by race issue. So disable parallel \ >>> make when building this package. >>> >> This is n

Re: [OE-core] [oe] Fwd: Linuxtag 2012

2012-05-17 Thread Paul Eggleton
On Thursday 17 May 2012 03:18:26 Henning Heinold wrote: > my second son was born today, so I can not make any promise for the > linuxtag. So I think it is really better to cancel the whole booth. That is > really sad, but maybee next time we should ask a lot earlier if we can > really man the booth

[OE-core] [ANNOUNCE] Meta-Broweser layer

2012-05-17 Thread Otavio Salvador
Hello, Our friends at Eukrea has started working at a Chromium specific layer and to share work in web browser packaging we opted to merge both layers to host different web browser packages. After this the layer has been renamed to /meta-browser/. The meta-browser layer can be used by any project

Re: [OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Florin Sarbu
I confirm I still encounter the same error. On 05/17/2012 01:09 PM, Andrei Gherzan wrote: Today i ran into an issue that Florin Sarbu signaled sometime last week. It seems like do_patch crashes while compiling linux 3.0: ERROR: Logfile of failure stored in: /media/HDD-WRS/yocto/2012-0

[OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Radu Moisan
Signed-off-by: Radu Moisan --- .../{man-pages_3.36.bb => man-pages_3.41.bb} |8 1 file changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-extended/man-pages/{man-pages_3.36.bb => man-pages_3.41.bb} (68%) diff --git a/meta/recipes-extended/man-pages/man-pages_3.36.b

[OE-core] Linux-yocto 3.0 crashes at do_patch...

2012-05-17 Thread Andrei Gherzan
Today i ran into an issue that Florin Sarbu signaled sometime last week. It seems like do_patch crashes while compiling linux 3.0: ERROR: Logfile of failure stored in: /media/HDD-WRS/yocto/2012-05-10-discovery-vea9/tmp/work/vexpressa9-poky-linux-gnueabi/linux-yocto-3.0.24+git1+34e0d2b4b4e9778b31f9

[OE-core] [PATCH 3/3] multilib.bbclass: Added multilib specific package QA.

2012-05-17 Thread Lianhao Lu
Added a new PACKAGEFUNCS function to check the multilib packages' dependency. Signed-off-by: Lianhao Lu --- meta/classes/multilib.bbclass | 31 +++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.

[OE-core] [PATCH 2/3] multilib.conf: Added multilib support for kmod.

2012-05-17 Thread Lianhao Lu
Signed-off-by: Lianhao Lu --- meta/conf/multilib.conf |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index f60a890..9fc5a90 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf @@ -470,6 +470,7 @@ BBCLASSEXT

[OE-core] [PATCH 0/3] Misc fixes for multilib

2012-05-17 Thread Lianhao Lu
This patch set added a package QA function to detect the potential incorrected package dependencies for multilib packages. It also fixed the locale related package name in multilib case reported by the new package QA function. The following changes since commit 2cf6e7cf81c0b864b5d51be60094a6eb3e5

[OE-core] [PATCH 1/3] (libc-)package.bbclass: Added MLPREFIX to locale packages.

2012-05-17 Thread Lianhao Lu
Added multilib prefix to the locale related package names/dependencies. Signed-off-by: Lianhao Lu --- meta/classes/libc-package.bbclass |4 ++-- meta/classes/package.bbclass |5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/meta/classes/libc-package.bbclass b

[OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Radu Moisan
--- build/conf/sanity_info |3 +++ build/pseudodone |1 + .../{man-pages_3.36.bb => man-pages_3.41.bb} |8 3 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 build/bitbake.lock create mode 1

Re: [OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Martin Jansa
On Thu, May 17, 2012 at 11:07:18AM +0300, Radu Moisan wrote: > --- > build/conf/sanity_info |3 +++ > build/pseudodone |1 + > .../{man-pages_3.36.bb => man-pages_3.41.bb} |4 ++-- > 3 files changed, 6 insertions(+), 2

[OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Radu Moisan
--- build/conf/sanity_info |3 +++ build/pseudodone |1 + .../{man-pages_3.36.bb => man-pages_3.41.bb} |4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 build/bitbake.lock create mode 10064

Re: [OE-core] [PATCH] evtest: Add evtest 1.30 support

2012-05-17 Thread Otavio Salvador
On Thu, May 17, 2012 at 4:44 AM, Koen Kooi wrote: > Let's make a deal: new recipes will only be accepted into oe-core after sato > has been removed from the oe-core layer. LOL; No! I'd like to have it in oe-core before the end of World in December 21th ;) -- Otavio Salvador                   

Re: [OE-core] [PATCH 1/1] kmod: fix installation path of pkgconfig files

2012-05-17 Thread Andrei Gherzan
Yes. I need this too. Hope it will make it soon. On May 17, 2012 10:49 AM, "Koen Kooi" wrote: > > Op 15 mei 2012, om 22:39 heeft Otavio Salvador het volgende geschreven: > > > The pkgconfig files need to be installed in ${libdir} instead of > > ${base_libdir}. > > > > Signed-off-by: Otavio Salvad

Re: [OE-core] [PATCH 1/1] kmod: fix installation path of pkgconfig files

2012-05-17 Thread Koen Kooi
Op 15 mei 2012, om 22:39 heeft Otavio Salvador het volgende geschreven: > The pkgconfig files need to be installed in ${libdir} instead of > ${base_libdir}. > > Signed-off-by: Otavio Salvador Acked-by: Koen Kooi Udev have been broken for a week now, can this please to in ASAP? _

Re: [OE-core] [PATCH] evtest: Add evtest 1.30 support

2012-05-17 Thread Koen Kooi
Op 16 mei 2012, om 23:46 heeft Khem Raj het volgende geschreven: > On Wed, May 16, 2012 at 2:42 PM, Otavio Salvador > wrote: >> Ok; well said but how do you qualify it? >> >> evtest is very nice to have around when debugging stuff and suit very >> well for a bring-up image for BSPs and like, It

Re: [OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Martin Jansa
On Thu, May 17, 2012 at 10:14:43AM +0300, Radu Moisan wrote: > --- > .../{man-pages_3.36.bb => man-pages_3.41.bb} |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > rename meta/recipes-extended/man-pages/{man-pages_3.36.bb => > man-pages_3.41.bb} (80%) > > diff --git a/meta/

Re: [OE-core] [Error] do_package error on libgcc

2012-05-17 Thread Giuseppe Condorelli
Well, for my goals, I need a fixed compiler version and not the 4.6 and 4.7 the oe-core provides. However I avoided the problem setting INHERIT_INSANE="" in the distro .conf file (although I can think it's not a safe solution). Many thanks for your time. Cheers, Giuseppe 2012/5/16 Khem Raj > > >

Re: [OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Koen Kooi
Op 17 mei 2012, om 09:14 heeft Radu Moisan het volgende geschreven: > --- > .../{man-pages_3.36.bb => man-pages_3.41.bb} |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > rename meta/recipes-extended/man-pages/{man-pages_3.36.bb => > man-pages_3.41.bb} (80%) > > diff --git a

[OE-core] [PATCH] man-pages: Update to 3.41

2012-05-17 Thread Radu Moisan
--- .../{man-pages_3.36.bb => man-pages_3.41.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/man-pages/{man-pages_3.36.bb => man-pages_3.41.bb} (80%) diff --git a/meta/recipes-extended/man-pages/man-pages_3.36.bb b/meta/recipes-extended/man-p

[OE-core] [oe-core][RFCv3] glib-2.0: upgrade to 2.32.3

2012-05-17 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta/recipes-core/glib-2.0/glib-2.0/nolibelf.patch | 56 ++-- .../{glib-2.0_2.32.2.bb => glib-2.0_2.32.3.bb} |7 ++- 2 files changed, 32 insertions(+), 31 deletions(-) rename meta/recipes-core/glib-2.0/{glib-2.0_2.32.2.bb => glib-2.0_2.32