Re: [OE-core] pkg-config bug crashes 'bitbake glib-2.0-native' in FC15.x86_64

2011-10-06 Thread dashesy
On Wed, Oct 5, 2011 at 4:05 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2011-10-05 at 11:01 +0100, Richard Purdie wrote: On Wed, 2011-10-05 at 03:21 -0600, dashesy wrote: Hi, I am using these in my local.conf with master branch of oe-core: DISTRO=angstrom-2010.x

[OE-core] [PATCH] util-linux: split fsck* into its own subpackage

2011-10-06 Thread Koen Kooi
This will allow systemd to run /sbin/fsck without dragging in all of util-linux Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/recipes-core/util-linux/util-linux.inc | 16 +--- meta/recipes-core/util-linux/util-linux_2.19.1.bb |2 +- 2 files changed, 14

[OE-core] [PATCH] qt4: Added support for QtMobility 1.2

2011-10-06 Thread Dmitry Cherukhin
The QtMobility is a Qt add-on which allows to include standard mobile functionality to Qt applications. For details, see http://qt.nokia.com/products/qt-addons/mobility/ The patch is intended to add support for the QtMobility 1.2 package to OE. Added two recipes: 1) qt-mobility-x11 builds the

[OE-core] base.bbclass: Minor cleanup

2011-10-06 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 57f1c3f..7cd6efa 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -202,7 +202,6 @@ def preferred_ml_updates(d): addhandler

[OE-core] base.bbclass: Implement PACKAGECONFIG

2011-10-06 Thread Richard Purdie
These enabled options to be specified in the form: PACKAGECONFIG ?? = default options PACKAGECONFIG[foo] = --enable-foo,--disable-foo,foo_depends,foo_runtime_depends So that DEPENDS, RDEPENDS_${PN} and EXTRA_OECONF can be automatically built from specific options. Those options can easily be

[OE-core] image.bbclass: No need to run most tasks except do_rootfs

2011-10-06 Thread Richard Purdie
Running fetch/unpack/patch/compile/install etc. is pointless since the only image task that does anything is the rootfs task. Hence mark the useless tasks as noexec so we don't bother running them. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git

[OE-core] sstate.bbclass: Ensure machine specific stamps are only wiped for the current task

2011-10-06 Thread Richard Purdie
sstate was being a little too ethusiastic about removing stamp files and was removing stamp files for other machines when it shouldn't have been. This patch teaches sstate about machine specific stamp extensions and allows it to only remove the current task's stampfiles. Based on a patch from

[OE-core] [PATCH] native.bbclass: Ensure native recipes have a deterministic baselib value

2011-10-06 Thread Richard Purdie
Changes to baselib by specific machine configuration were resulting in sstate cache invalidation, particularly in multilib configurations. This patch ensures this doesn't happen and native sstate cache files are reusable. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff

[OE-core] [PATCH] xserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udev

2011-10-06 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc b/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc index 000aea3..4c8b732 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc

Re: [OE-core] [PATCH] xserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udev

2011-10-06 Thread Martin Jansa
On Thu, Oct 06, 2011 at 03:21:33PM +0100, Richard Purdie wrote: Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc b/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc index 000aea3..4c8b732

Re: [OE-core] base.bbclass: Implement PACKAGECONFIG

2011-10-06 Thread Koen Kooi
Op 6 okt. 2011, om 16:18 heeft Richard Purdie het volgende geschreven: These enabled options to be specified in the form: PACKAGECONFIG ?? = default options PACKAGECONFIG[foo] = --enable-foo,--disable-foo,foo_depends,foo_runtime_depends So that DEPENDS, RDEPENDS_${PN} and EXTRA_OECONF

Re: [OE-core] [PATCH] native.bbclass: Ensure native recipes have a deterministic baselib value

2011-10-06 Thread Mark Hatle
On 10/6/11 9:20 AM, Richard Purdie wrote: Changes to baselib by specific machine configuration were resulting in sstate cache invalidation, particularly in multilib configurations. This patch ensures this doesn't happen and native sstate cache files are reusable. Likely throwing in a can of

Re: [OE-core] [PATCH] xserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udev

2011-10-06 Thread Richard Purdie
On Thu, 2011-10-06 at 16:29 +0200, Martin Jansa wrote: On Thu, Oct 06, 2011 at 03:21:33PM +0100, Richard Purdie wrote: Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-common.inc

Re: [OE-core] base.bbclass: Implement PACKAGECONFIG

2011-10-06 Thread Richard Purdie
On Thu, 2011-10-06 at 16:24 +0200, Martin Jansa wrote: On Thu, Oct 06, 2011 at 03:18:27PM +0100, Richard Purdie wrote: These enabled options to be specified in the form: PACKAGECONFIG ?? = default options PACKAGECONFIG[foo] = --enable-foo,--disable-foo,foo_depends,foo_runtime_depends

[OE-core] [PATCH v2] util-linux: split fsck* into its own subpackage

2011-10-06 Thread Koen Kooi
This will allow systemd to run /sbin/fsck without dragging in all of util-linux Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/recipes-core/util-linux/util-linux.inc | 16 +--- meta/recipes-core/util-linux/util-linux_2.19.1.bb |2 +- 2 files changed, 14

Re: [OE-core] base.bbclass: Implement PACKAGECONFIG

2011-10-06 Thread Richard Purdie
On Thu, 2011-10-06 at 16:46 +0200, Koen Kooi wrote: Op 6 okt. 2011, om 16:18 heeft Richard Purdie het volgende geschreven: These enabled options to be specified in the form: PACKAGECONFIG ?? = default options PACKAGECONFIG[foo] =

[OE-core] [PATCH 02/21] dosfstools: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../recipes-devtools/dosfstools/dosfstools_2.10.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/dosfstools/dosfstools_2.10.bb b/meta/recipes-devtools/dosfstools/dosfstools_2.10.bb index

[OE-core] [PATCH 07/21] clutter-gst-1.6: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../clutter/clutter-gst-1.6_1.3.6.bb |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/meta/recipes-graphics/clutter/clutter-gst-1.6_1.3.6.bb b/meta/recipes-graphics/clutter/clutter-gst-1.6_1.3.6.bb index

[OE-core] [PATCH 01/21] grub: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-bsp/grub/grub_1.99.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-bsp/grub/grub_1.99.bb b/meta/recipes-bsp/grub/grub_1.99.bb index ba41e8f..afd10f4 100644 ---

[OE-core] [PATCH 08/21] xserver-kdrive: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../xorg-xserver/xserver-kdrive_1.7.99.2.bb|5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-graphics/xorg-xserver/xserver-kdrive_1.7.99.2.bb

[OE-core] [PATCH 06/21] eds-tools: Convert from BZR to GIT Repo

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../eds/{eds-tools_bzr.bb = eds-tools_git.bb} |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-sato/eds/{eds-tools_bzr.bb = eds-tools_git.bb} (72%) diff --git a/meta/recipes-sato/eds/eds-tools_bzr.bb

[OE-core] [PATCH 11/21] libxml-perl: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-devtools/perl/libxml-perl_0.08.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/perl/libxml-perl_0.08.bb b/meta/recipes-devtools/perl/libxml-perl_0.08.bb index fb637a8..ba5ebd0

[OE-core] [PATCH 05/21] libx11-diet: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-graphics/xorg-lib/libx11-diet_1.3.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-graphics/xorg-lib/libx11-diet_1.3.bb b/meta/recipes-graphics/xorg-lib/libx11-diet_1.3.bb index

[OE-core] [PATCH 15/21] boost-jam-native: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-support/boost/boost-jam-native.inc|2 +- .../boost/boost-jam-native_3.1.18.bb |4 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-support/boost/boost-jam-native.inc

[OE-core] [PATCH 13/21] gconf-dbus: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-gnome/gnome/gconf-dbus_705.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-gnome/gnome/gconf-dbus_705.bb b/meta/recipes-gnome/gnome/gconf-dbus_705.bb index c0c2e28..52e8a08 100644 ---

[OE-core] [PATCH 00/21] Add SRC_URI Checksums and some Updates

2011-10-06 Thread Saul Wold
Richard, Found some recipes missing Checksums and do a couple of package updates. Thanks Sau! The following changes since commit cc626b9e1671670a931ea3e528ea4b0f7b2e923b: webkit-gtk: Enable dependency tracking since the webkit makefiles have bugs (2011-10-05 14:36:18 +0100) are available

[OE-core] [PATCH 03/21] libx11-trim: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../recipes-graphics/xorg-lib/libx11-trim_1.3.4.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-graphics/xorg-lib/libx11-trim_1.3.4.bb b/meta/recipes-graphics/xorg-lib/libx11-trim_1.3.4.bb index

[OE-core] [PATCH 16/21] puzzles: Update to latest version

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../puzzles/{puzzles_r9175.bb = puzzles_r9306.bb} |0 1 files changed, 0 insertions(+), 0 deletions(-) rename meta/recipes-sato/puzzles/{puzzles_r9175.bb = puzzles_r9306.bb} (100%) diff --git a/meta/recipes-sato/puzzles/puzzles_r9175.bb

[OE-core] [PATCH 17/21] gnutls: Update to 2.12.11

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../configure-fix.patch| 40 +-- .../gnutls-openssl.patch |0 .../gnutls-texinfo-euro.patch |0 .../gnutls/{gnutls_2.12.5.bb = gnutls_2.12.11.bb}

[OE-core] [PATCH 21/21] distro_tracking: Updates

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../conf/distro/include/distro_tracking_fields.inc | 62 1 files changed, 37 insertions(+), 25 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc

[OE-core] [PATCH 14/21] gail: Add SRC_URI Checksum

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-gnome/gnome/gail_1.20.2.bb |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/meta/recipes-gnome/gnome/gail_1.20.2.bb b/meta/recipes-gnome/gnome/gail_1.20.2.bb index 2c86228..32ef6c5 100644 ---

[OE-core] [PATCH 19/21] lsof: Update to 4.84

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../lsof/{lsof_4.84.bb = lsof_4.85.bb}|5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) rename meta/recipes-extended/lsof/{lsof_4.84.bb = lsof_4.85.bb} (89%) diff --git a/meta/recipes-extended/lsof/lsof_4.84.bb

[OE-core] [PATCH 18/21] tzdata: Update to 2011k

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../tzdata/{tzdata_2011i.bb = tzdata_2011k.bb}|4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/tzdata/{tzdata_2011i.bb = tzdata_2011k.bb} (97%) diff --git

[OE-core] [PATCH 20/21] apt: Update to 0.8.15.8

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- .../includes-fix.patch |0 .../no-ko-translation.patch|0 .../{apt-0.7.14 = apt-0.8.15.8}/noconfigure.patch |0 .../apt/{apt-0.7.14 = apt-0.8.15.8}/nodoc.patch |0

[OE-core] [PATCH 0/1] acl/attr fix for libdir = base_libdir

2011-10-06 Thread Saul Wold
Richard, This should address the above situation. Phil, please let me know if this works for you. Thanks Sau! The following changes since commit cc626b9e1671670a931ea3e528ea4b0f7b2e923b: webkit-gtk: Enable dependency tracking since the webkit makefiles have bugs (2011-10-05 14:36:18

[OE-core] [PATCH 1/1] acl/attr: don't make symlink if base_libdir = libdir

2011-10-06 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-support/attr/ea-acl.inc |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc index 22d7848..6a45858 100644 ---

Re: [OE-core] [PATCH 20/21] apt: Update to 0.8.15.8

2011-10-06 Thread Saul Wold
On 10/06/2011 09:14 AM, Saul Wold wrote: Signed-off-by: Saul Wolds...@linux.intel.com --- .../includes-fix.patch |0 .../no-ko-translation.patch|0 .../{apt-0.7.14 = apt-0.8.15.8}/noconfigure.patch |0 .../apt/{apt-0.7.14 =

Re: [OE-core] sstate.bbclass: Ensure machine specific stamps are only wiped for the current task

2011-10-06 Thread Koen Kooi
let's get this in before my buildserver melts a hole in the floor :) Op 6 okt. 2011, om 16:19 heeft Richard Purdie het volgende geschreven: sstate was being a little too ethusiastic about removing stamp files and was removing stamp files for other machines when it shouldn't have been. This

Re: [OE-core] [PATCH] native.bbclass: Ensure native recipes have a deterministic baselib value

2011-10-06 Thread McClintock Matthew-B29882
On Thu, Oct 6, 2011 at 9:20 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: Changes to baselib by specific machine configuration were resulting in sstate cache invalidation, particularly in multilib configurations. This patch ensures this doesn't happen and native sstate cache

[OE-core] Minutes: OpenEmbedded eV Board meeting, 22-Sep-2011

2011-10-06 Thread Denys Dmytriyenko
Minutes: OpenEmbedded eV Board meeting, 22-Sep-2011 Attendees: Michael Lauer (mickey) Philip Balister (Crofton) Florian Boor (florian) Denys Dmytriyenko (denix) 00) action items from last meeting: * no changes on the event box ** ready for next event? ** ELCE doesn't have real community

[OE-core] [PATCH] mutter: update to 2.29.1 and fix SRC_URI

2011-10-06 Thread Joshua Lock
mutter has been hosted by the gnome community for some time now, update the recipe to use the new SRC_URI and a more recernt version - this is the last version to support Gtk+ 2. Signed-off-by: Joshua Lock j...@linux.intel.com --- meta/recipes-graphics/mutter/mutter_2.28.1.bb | 14

[OE-core] [PATCH] pkgconfig: Fix logic that was accidently leaving legacy pkg-config functionality enabled

2011-10-06 Thread Richard Purdie
Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig/disable-legacy.patch b/meta/recipes-devtools/pkgconfig/pkgconfig/disable-legacy.patch index 1b3c12a..30db36c 100644 ---

[OE-core] [PATCH v3 2/2] Use useradd and update-rc.d classes in the OpenSSH recipe

2011-10-06 Thread Julian Pidancet
The current sshd postinst and postrm scripts in the OpenSSH make the package dependant of the adduser/addgroup scripts which may not be available on all systems. This patch replaces the sshd postinst and postrm scripts with proper usage of the useradd and update-rc.d classes. This patch had been

[OE-core] [PATCH v3 0/2] Fix useradd class to accept useradd long options

2011-10-06 Thread Julian Pidancet
This first patch fixes the --root option for programs in shadow-native and allow one to specify useradd long options when using the useradd class in a recipe. The second patch demonstrates usage of the useradd class and ability to specify long options in the USERADD_PARAM variable by converting

Re: [OE-core] Bringing an image from OE to OE-Core

2011-10-06 Thread Frans Meulenbroeks
2011/10/6 Saul Wold saul.w...@intel.com On 10/05/2011 01:03 PM, Philip Balister wrote: On 10/05/2011 03:35 PM, Khem Raj wrote: On Wed, Oct 5, 2011 at 7:14 AM, Philip Balisterphi...@balister.org wrote: 1) I do not want rpm in the image. This would confuse my customer base. 2) I am tired