Re: [OE-core] [RFC - Staticdev 2/2] systemtap: add sqlite3 to DEPENDS

2011-06-28 Thread Saul Wold
On 06/27/2011 02:57 AM, Phil Blundell wrote: On Sat, 2011-06-25 at 21:36 -0700, Saul Wold wrote: -DEPENDS = elfutils +DEPENDS = elfutils sqlite3 No doubt this is a fine change but I didn't quite understand what it has to do with staticdev. Was this meant to be a separate patchset? Well yes

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 07:37 heeft Dexuan Cui het volgende geschreven: Signed-off-by: Dexuan Cui dexuan@intel.com --- meta/classes/base.bbclass | 14 +- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index

[OE-core] [PATCH 0/3] Enable https pages for web brower, v2

2011-06-28 Thread edwin . zhai
From: Zhai Edwin edwin.z...@intel.com For accessing https web page, libsoup requres modules from glib-networking for TLS/SSL support. These patches add and install it. V2 modified according to Koen's comments: relocate the glib-networking, and no name in SRC_URI. Also upgrade tracking info for

[OE-core] [PATCH 1/3] glib-networking: Add 2.28.7 as new recipe

2011-06-28 Thread edwin . zhai
From: Zhai Edwin edwin.z...@intel.com glib-networking contains the implementations of certain GLib networking features that cannot be implemented directly in GLib itself because of their dependencies. TLS/SSL support is one of them, which is needed for accessing SSL web page. Signed-off-by: Zhai

[OE-core] [PATCH 2/3] webkit-gtk: recommends glib-networking to access https web page

2011-06-28 Thread edwin . zhai
From: Zhai Edwin edwin.z...@intel.com [YOCTO #1037] got fixed Signed-off-by: Zhai Edwin edwin.z...@intel.com --- meta/recipes-sato/webkit/webkit-gtk_svn.bb |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb

[OE-core] [PATCH 3/4 V4] gcc-4.5.1: share work directories

2011-06-28 Thread Robert Yang
Fix configure and Makefile to read the defaults.h and t-oe from ${B}, so that the ${S} can be shared. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-devtools/gcc/gcc-4.5.1.inc|1 + .../gcc-4.5.1/use-defaults.h-and-t-oe-in-B.patch | 57

[OE-core] [PATCH 4/4 V4] gcc-4.6: share work directories

2011-06-28 Thread Robert Yang
* Fix configure and Makefile to read the defaults.h and t-oe from ${B}, so that the ${S} can be shared. * Change ${S} to the shared source directory. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- meta/recipes-devtools/gcc/gcc-4.6.inc |5 +-

[OE-core] [PATCH 1/4 V4] bitbake: share source directory

2011-06-28 Thread Robert Yang
This patch is derived from Richard, it is a quick proof of concept to show how source code could be shared between recipes which use ${B} to have a separate build directory compared to source directory ${S}. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- bitbake/lib/bb/build.py|

Re: [OE-core] [PATCH 1/3] glib-networking: Add 2.28.7 as new recipe

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 11:11 heeft Phil Blundell het volgende geschreven: On Tue, 2011-06-28 at 15:42 +0800, edwin.z...@intel.com wrote: +SRC_URI = ${GNOME_MIRROR}/${PN}/2.28/${PN}-${PV}.tar.bz2 FYI, gnome.bbclass will do this for you and will also figure out the 2.28 part automatically. THat

Re: [OE-core] /build/tmp-angstrom_2010_x-eglibc/sysroots/x86_64-linux/usr/bin/autom4te: build/tmp-angstrom_2010_x-eglibc/sysroot: bad interpreter:

2011-06-28 Thread Jonathan Cameron
On 06/27/11 17:47, Jonathan Cameron wrote: On 06/27/11 17:34, Jonathan Cameron wrote: Building a couple of different things today gave me an issue that boils down to the subject line. Latest issue was eglibc where do_populate_sysroot ended with. + autoconf

Re: [OE-core] [PATCH] u-boot-mkimage: bump version to 2011.03

2011-06-28 Thread Ilya Yanok
Hi Darren, 28.06.2011 8:09, Darren Hart wrote: These look like good changes to me, with a couple of minor things needed: 1) Please submit the version change independently from the added patches to keep things functionally distinct. Hm.. Actually the new version won't build without the

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Paul Eggleton
On Tuesday 28 June 2011 07:45:09 Koen Kooi wrote: So it works as expected, but the output is a bit confusing. I have a few (conflicting) suggestions: 1) replace _BRANCH and _REVISION with ' branch' and ' revision', e.g.: meta-archos branch = master meta-archos

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 10:07 +0100, Phil Blundell wrote: On Tue, 2011-06-28 at 08:51 +0800, Xu, Dongxiao wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Phil Blundell

Re: [OE-core] [PATCH V2 0/1] Removing hard coded libdir for libc locale generating

2011-06-28 Thread Richard Purdie
On Thu, 2011-06-23 at 21:43 +0800, Lianhao Lu wrote: V2: Use base_libdir instead of libdir for ldlibdir. V1: The patch replaces the hard coded libdir in package_do_split_gconvs() in libc-package.bbclass to meet the requirement of

Re: [OE-core] [PATCH 1/4 V4] bitbake: share source directory

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 17:05 +0800, Robert Yang wrote: This patch is derived from Richard, it is a quick proof of concept to show how source code could be shared between recipes which use ${B} to have a separate build directory compared to source directory ${S}. Signed-off-by: Robert Yang

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 13:07 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-28 at 10:07 +0100, Phil Blundell wrote: On Tue, 2011-06-28 at 08:51 +0800, Xu, Dongxiao wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org

[OE-core] [PATCH] eglibc-locale: add missing 2.12 version

2011-06-28 Thread Koen Kooi
Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/recipes-core/eglibc/eglibc-locale_2.12.bb | 58 1 files changed, 58 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-core/eglibc/eglibc-locale_2.12.bb diff --git

Re: [OE-core] [PATCH 1/3] glib-networking: Add 2.28.7 as new recipe

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 14:05 heeft Zhai, Edwin het volgende geschreven: Koen Kooi wrote: Op 28 jun 2011, om 11:11 heeft Phil Blundell het volgende geschreven: On Tue, 2011-06-28 at 15:42 +0800, edwin.z...@intel.com wrote: +SRC_URI = ${GNOME_MIRROR}/${PN}/2.28/${PN}-${PV}.tar.bz2

Re: [OE-core] [PATCH 2/3] webkit-gtk: recommends glib-networking to access https web page

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 20:08 +0800, Zhai, Edwin wrote: Koen Kooi wrote: Op 28 jun 2011, om 10:13 heeft Zhai, Edwin het volgende geschreven: In future, other recipes besides webkit-gtk may ask for glib-networking, maybe we can change it that time? What's your opinion? I'd

Re: [OE-core] [PATCH 2/3] webkit-gtk: recommends glib-networking to access https web page

2011-06-28 Thread Zhai, Edwin
Done. Commits @ same contrib tree. git://git.pokylinux.org/poky-contrib gzhai/master http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/master Thanks, edwin Zhai, Edwin wrote: Koen Kooi wrote: Op 28 jun 2011, om 10:13 heeft Zhai, Edwin het volgende geschreven: In future,

Re: [OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-06-28 Thread Richard Purdie
Hi Scott, Sorry its taken me a while to get to this. Some comments below. On Thu, 2011-06-02 at 16:50 -0700, Scott Garman wrote: This class is to be used by recipes that need to set up specific user/group accounts and set custom file/directory permissions. Signed-off-by: Scott Garman

Re: [OE-core] [Draft design][RFC] Running postinst at rootfs generation time

2011-06-28 Thread Richard Purdie
On Mon, 2011-06-27 at 23:11 -0500, Mark Hatle wrote: On 6/27/11 9:09 PM, Cui, Dexuan wrote: Hi all, below is an initial investigation about the task and we'll continue to further look into it. In poky we have 2 types of postinst scripts: one (type-1) can be (and has already been)

Re: [OE-core] [Draft design][RFC] Running postinst at rootfs generation time

2011-06-28 Thread Richard Purdie
Hi Dexuan, On Tue, 2011-06-28 at 10:09 +0800, Cui, Dexuan wrote: Hi all, below is an initial investigation about the task and we'll continue to further look into it. In poky we have 2 types of postinst scripts: one (type-1) can be (and has already been) run at rootfs generation time and

Re: [OE-core] [PATCH 1/3] glib-networking: Add 2.28.7 as new recipe

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 15:42 +0800, edwin.z...@intel.com wrote: From: Zhai Edwin edwin.z...@intel.com glib-networking contains the implementations of certain GLib networking features that cannot be implemented directly in GLib itself because of their dependencies. TLS/SSL support is one of

Re: [OE-core] [PATCH] gcc-cross-kernel: update to match new toolchain sysroot layout

2011-06-28 Thread Richard Purdie
On Mon, 2011-06-27 at 18:56 +0200, Koen Kooi wrote: The versioned gcc binary gets installed and the needed binutils symlinks are made. To make it fully work again the following is needed in kernel recipes/classes: PATH_prepend = ${STAGING_BINDIR_TOOLCHAIN}.gcc-cross-kernel:

Re: [OE-core] [PATCH 2/2] sanity: implement network connectivity test

2011-06-28 Thread Richard Purdie
On Sun, 2011-06-26 at 11:08 -0700, Khem Raj wrote: On 06/26/2011 10:37 AM, Joshua Lock wrote: On Sat, 2011-06-25 at 19:33 -0700, Khem Raj wrote: On 6/25/2011 5:53 PM, Saul Wold wrote: + # If no URI's set, fallback to some default ones we know of + if len(test_uris) == 0: + test_uris =

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 14:17 +0200, Koen Kooi wrote: Op 28 jun 2011, om 13:07 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-28 at 10:07 +0100, Phil Blundell wrote: Dongxiao: What Phil is referring to here is that libsotruss${PKGSUFFIX} disappeared from PACKAGES and that

Re: [OE-core] [PATCH 0/1] scripts: add PARALLEL_MAKE to BB_ENV_EXTRAWHITE

2011-06-28 Thread Richard Purdie
On Mon, 2011-06-27 at 14:11 -0700, Darren Hart wrote: The following changes since commit a1f79a7896b6411669b3ccada6204d2695e80fc5: runqueue.py: Add umask task control (2011-06-24 12:23:12 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib dvhart/pm

Re: [OE-core] [PATCH] u-boot-mkimage: bump version to 2011.03

2011-06-28 Thread Darren Hart
Hi Ilya, On 06/28/2011 02:57 AM, Ilya Yanok wrote: Hi Darren, 28.06.2011 8:09, Darren Hart wrote: These look like good changes to me, with a couple of minor things needed: 1) Please submit the version change independently from the added patches to keep things functionally distinct.

Re: [OE-core] [RFC v2 PATCH 1/9] Remove support for building 2.4 kernels

2011-06-28 Thread Jonathan Cameron
Hi Anders, All seems to work for me. For anyone just dropping these on OE, note there is a local variable of kernel.bbclass that also needs updating as per this file in meta-openembedded/meta-oe/ Signed-off-by: Anders Darander anders-7ujn0b3lyz2sbku13z4...@public.gmane.org ---

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Mark Hatle
On 6/28/11 1:45 AM, Koen Kooi wrote: Op 28 jun 2011, om 07:37 heeft Dexuan Cui het volgende geschreven: Signed-off-by: Dexuan Cui dexuan@intel.com --- meta/classes/base.bbclass | 14 +- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git

[OE-core] Heads Up: Bitbake minimum version change imminent

2011-06-28 Thread Richard Purdie
I just wanted to let people know that we have a minimum version of bitbake change imminent for OE-Core. I've already pushed the changes we need to bitbake for umask, shared work directory and multilib and updated its version to 1.13.2. I'm planning to merge patches to OE-Core which depend on

Re: [OE-core] [RFC v2 PATCH 0/9] Linux 3.0 build support

2011-06-28 Thread Bruce Ashfield
On Mon, Jun 27, 2011 at 3:39 PM, Anders Darander and...@chargestorm.se wrote: v2: Probably some more patches could be squashed together. There might also    be more places that should be addressed in these patches.    - Whitespace fixes    - Updated module-init-tools to 3.16. I'm not

Re: [OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-06-28 Thread Mark Hatle
On 6/28/11 8:04 AM, Richard Purdie wrote: Hi Scott, Sorry its taken me a while to get to this. Some comments below. I think I know the answer to a few of the issues mentioned below. Scott can correct me if I'm wrong. On Thu, 2011-06-02 at 16:50 -0700, Scott Garman wrote: This class is to

Re: [OE-core] [Draft design][RFC] Running postinst at rootfs generation time

2011-06-28 Thread Mark Hatle
On 6/28/11 8:15 AM, Richard Purdie wrote: On Mon, 2011-06-27 at 23:11 -0500, Mark Hatle wrote: On 6/27/11 9:09 PM, Cui, Dexuan wrote: Hi all, below is an initial investigation about the task and we'll continue to further look into it. In poky we have 2 types of postinst scripts: one

Re: [OE-core] [PATCH 0/4 V4] Share gcc work directories

2011-06-28 Thread Richard Purdie
Hi Robert, I just wanted to let you know that these look good, thanks. I need to get the changes into bitbake for this first (along with the umask and multilib changes), let that version sit for a vew days, them bump the version requirement of OE-Core so we can then merge these patches. They

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Cui, Dexuan
= poky DISTRO_VERSION = 1.0+snapshot-20110628 TARGET_FPU = METADATA_BRANCH = dcui/banner_v2 METADATA_REVISION = 2c2d9d7c0e942b6748bc8bd7d5980113bae9a836 meta-sugarbay = dcui/test1:76d1178ba1a43cf6457c89717134aeb9f1275fae

[OE-core] [PATCH] u-boot-mkimage: bump version to 2011.03

2011-06-28 Thread Ilya Yanok
This patch changes u-boot-mkimage version to 2011.03. Unfortunately U-Boot 2011.03 release has some problems building tools from unconfigured tree, so this patch aslo includes the backported fixes. Signed-off-by: Ilya Yanok ya...@emcraft.com --- ...Drop-config.h-include-in-tools-imximage.h.patch

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 16:52 heeft Cui, Dexuan het volgende geschreven: Mark Hatle wrote: On 6/28/11 1:45 AM, Koen Kooi wrote: Op 28 jun 2011, om 07:37 heeft Dexuan Cui het volgende geschreven: ... So it works as expected, but the output is a bit confusing. I have a few (conflicting)

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 16:27 heeft Mark Hatle het volgende geschreven: On 6/28/11 1:45 AM, Koen Kooi wrote: Op 28 jun 2011, om 07:37 heeft Dexuan Cui het volgende geschreven: Signed-off-by: Dexuan Cui dexuan@intel.com --- meta/classes/base.bbclass | 14 +- 1 files changed,

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Cui, Dexuan
Koen Kooi wrote: Op 28 jun 2011, om 16:52 heeft Cui, Dexuan het volgende geschreven: Hi, thank you very much for the suggestions! I worked out a vesion 2 patch that combines 2 and 3:

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Phil Blundell
On Tue, 2011-06-28 at 23:21 +0800, Cui, Dexuan wrote: Sorry... but to basing them on oe-core, do I need the permission to push my commits to my own branch in git://git.openembedded.org/openembedded-core-contrib? I suppose so and I should put my public key somewhere into the server? You

[OE-core] [PATCH] eglibc-locale: fix localedef packaging

2011-06-28 Thread Koen Kooi
the ${PN} still needs some checking, since it will now inheriting the default FILES_${PN} Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/recipes-core/eglibc/eglibc-locale.inc |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Mark Hatle
On 6/28/11 10:21 AM, Cui, Dexuan wrote: Koen Kooi wrote: Op 28 jun 2011, om 16:52 heeft Cui, Dexuan het volgende geschreven: Hi, thank you very much for the suggestions! I worked out a vesion 2 patch that combines 2 and 3:

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Cui, Dexuan
Mark Hatle wrote: On 6/28/11 10:21 AM, Cui, Dexuan wrote: Koen Kooi wrote: Op 28 jun 2011, om 16:52 heeft Cui, Dexuan het volgende geschreven: Hi, thank you very much for the suggestions! I worked out a vesion 2 patch that combines 2 and 3:

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 17:33 heeft Mark Hatle het volgende geschreven: On 6/28/11 10:21 AM, Cui, Dexuan wrote: Koen Kooi wrote: Op 28 jun 2011, om 16:52 heeft Cui, Dexuan het volgende geschreven: Hi, thank you very much for the suggestions! I worked out a vesion 2 patch that combines 2 and 3:

Re: [OE-core] [PATCH] eglibc-locale: fix localedef packaging

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 17:30 +0200, Koen Kooi wrote: the ${PN} still needs some checking, since it will now inheriting the default FILES_${PN} Signed-off-by: Koen Kooi k...@dominion.thruhere.net I merged a different version of this which drops PN-locale and fixes glibc too. Cheers, Richard

Re: [OE-core] [PATCH] u-boot-mkimage: bump version to 2011.03

2011-06-28 Thread Richard Purdie
On Tue, 2011-06-28 at 16:54 +0200, Ilya Yanok wrote: This patch changes u-boot-mkimage version to 2011.03. Unfortunately U-Boot 2011.03 release has some problems building tools from unconfigured tree, so this patch aslo includes the backported fixes. Signed-off-by: Ilya Yanok

Re: [OE-core] [Draft design][RFC] Running postinst at rootfs generation time

2011-06-28 Thread Hauser, Wolfgang (external)
Beside the discussed changes, the postinst scripts should be executed in the dependency order. At the time, the scripts are executed in alphabetic order, which breaks the image generation if depended packages are not in alphabetic order. e.g. busybox and busybox subpackages (busybox-mdev).

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Darren Hart
On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC meeting and Khem had expressed the need before, so I'd like to get this discussion started by using armv7a as an example. For armv7a capable cores we have the following hardware features:

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 19:36 heeft Darren Hart het volgende geschreven: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC meeting and Khem had expressed the need before, so I'd like to get this discussion started by using armv7a as an

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Darren Hart
On 06/28/2011 10:38 AM, Koen Kooi wrote: Op 28 jun 2011, om 19:36 heeft Darren Hart het volgende geschreven: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC meeting and Khem had expressed the need before, so I'd like to get this

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 21:13 heeft Darren Hart het volgende geschreven: On 06/28/2011 10:38 AM, Koen Kooi wrote: Op 28 jun 2011, om 19:36 heeft Darren Hart het volgende geschreven: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC

Re: [OE-core] [PATCH 1/1] libc-locale: split locale handling from libc recipe.

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 16:00 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-28 at 14:17 +0200, Koen Kooi wrote: Op 28 jun 2011, om 13:07 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-28 at 10:07 +0100, Phil Blundell wrote: Dongxiao: What Phil is referring to

[OE-core] Building behind a firewall/proxy

2011-06-28 Thread Joshua Lock
All, For the Yocto 1.1 release we want to ease the pain of getting set up to build behind a firewall. I have a series of patches under development to run a one hit sanity test which tries to verify the user can fetch and in the case of failure point the user to a wiki page where we'd document

Re: [OE-core] Building behind a firewall/proxy

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 22:14 heeft Joshua Lock het volgende geschreven: All, For the Yocto 1.1 release we want to ease the pain of getting set up to build behind a firewall. I have a series of patches under development to run a one hit sanity test which tries to verify the user can fetch

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Khem Raj
On Fri, Jun 24, 2011 at 7:12 AM, Mark Hatle mark.ha...@windriver.com wrote: A few, what I suspect are corrections.  (I'm going to be a bit pedantic here.) On 6/24/11 6:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC meeting and Khem had expressed the need

[OE-core] [PATCH v2] libc-{common, package}.bbclass: fix shlib renaming for the C library

2011-06-28 Thread Koen Kooi
Without this you'd end up with eglibc_2.12.ipk instead of libc6_2.12.ipk as before Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/classes/libc-common.bbclass |8 meta/classes/libc-package.bbclass |7 +-- 2 files changed, 9 insertions(+), 6 deletions(-) diff

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Khem Raj
On Tue, Jun 28, 2011 at 10:36 AM, Darren Hart dvh...@linux.intel.com wrote: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC meeting and Khem had expressed the need before, so I'd like to get this discussion started by using armv7a as an

[OE-core] [PATCH] eglibc-locale: don't make versions go backwards after split from eglibc

2011-06-28 Thread Koen Kooi
eglibc was way beyond PR = r1 at the time of the split, so increase PR to make package upgrades work Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- meta/recipes-core/eglibc/eglibc-locale.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: [OE-core] [Draft design][RFC] Running postinst at rootfs generation time

2011-06-28 Thread Saul Wold
On 06/27/2011 07:09 PM, Cui, Dexuan wrote: Hi all, below is an initial investigation about the task and we'll continue to further look into it. In poky we have 2 types of postinst scripts: one (type-1) can be (and has already been) run at rootfs generation time and the other (type-2) has to

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Khem Raj
On Tue, Jun 28, 2011 at 12:13 PM, Darren Hart dvh...@linux.intel.com wrote: On 06/28/2011 10:38 AM, Koen Kooi wrote: Op 28 jun 2011, om 19:36 heeft Darren Hart het volgende geschreven: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a bit during last nights TSC

Re: [OE-core] Tune files and knobs to turn

2011-06-28 Thread Khem Raj
On Tue, Jun 28, 2011 at 1:33 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 28 jun 2011, om 22:31 heeft Khem Raj het volgende geschreven: On Tue, Jun 28, 2011 at 10:36 AM, Darren Hart dvh...@linux.intel.com wrote: On 06/24/2011 04:54 AM, Koen Kooi wrote: Hi, We discussed tune files a

Re: [OE-core] [PATCH] eglibc-locale: fix localedef packaging

2011-06-28 Thread Koen Kooi
Op 28 jun 2011, om 18:11 heeft Richard Purdie het volgende geschreven: On Tue, 2011-06-28 at 17:30 +0200, Koen Kooi wrote: the ${PN} still needs some checking, since it will now inheriting the default FILES_${PN} Signed-off-by: Koen Kooi k...@dominion.thruhere.net I merged a different

Re: [OE-core] [RFH] Native SDK wirdness

2011-06-28 Thread Zhang, Jessica
Hi Otavio, Here's what I got when I tried the same command against my sdk tarball tar -tjf poky-eglibc-i686-i586-toolchain-gmae-1.0+snapshot-20110625.tar.bz2 |grep '\-gcc' tar: Record size = 16 blocks

Re: [OE-core] Building behind a firewall/proxy

2011-06-28 Thread Tom Rini
On 06/28/2011 01:14 PM, Joshua Lock wrote: All, For the Yocto 1.1 release we want to ease the pain of getting set up to build behind a firewall. I have a series of patches under development to run a one hit sanity test which tries to verify the user can fetch and in the case of failure

[OE-core] [PATCH 0/1] shadow-native fix for useradd

2011-06-28 Thread Scott Garman
Pseudo was recently changed so that when system() calls are made after a chroot(), the host binaries can no longer be found, breaking the system(mkdir -p) approach when useradd creates home directories. Instead, use mkdir(2) to create home directories with a helper function to ensure parent

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-28 Thread Khem Raj
On Jun 28, 2011, at 3:51 PM, Scott Garman scott.a.gar...@intel.com wrote: On 06/28/2011 03:41 PM, Khem Raj wrote: ERROR: Multiple .bb files are due to be built which each provide ssh (/home/kraj/work/angstrom/sources/openembedded-core/meta/recipes-core/dropbear/dropbear_0.52.bb

Re: [OE-core] [RFC - Staticdev 1/2] multiple recipes converted to -staticdev packages

2011-06-28 Thread Saul Wold
On 06/26/2011 12:34 AM, Koen Kooi wrote: Op 26 jun 2011, om 06:36 heeft Saul Wold het volgende geschreven: This commit adds a new base package ${PN}-staticdev to bitbake.conf which pulls in the static *.a libraries as a seperate package, it filters out the nonshared.a libraries where

Re: [OE-core] [RFH] Native SDK wirdness

2011-06-28 Thread Khem Raj
On Jun 28, 2011, at 2:31 PM, Zhang, Jessica jessica.zh...@intel.com wrote: Hi Otavio, Here's what I got when I tried the same command against my sdk tarball tar -tjf poky-eglibc-i686-i586-toolchain-gmae-1.0+snapshot-20110625.tar.bz2 |grep '\-gcc' tar: Record size = 16 blocks

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-28 Thread Graeme Gregory
On 06/29/2011 12:50 AM, Khem Raj wrote: On Jun 28, 2011, at 3:51 PM, Scott Garman scott.a.gar...@intel.com wrote: On 06/28/2011 03:41 PM, Khem Raj wrote: ERROR: Multiple .bb files are due to be built which each provide ssh

[OE-core] [PATCH 0/1] multiple recipes converted to use -staticdev

2011-06-28 Thread Saul Wold
This commit adds a new base package ${PN}-staticdev to bitbake.conf which pulls in the static *.a libraries as a seperate package, it filters out the nonshared.a libraries where appropriate. Additional this commit adds a new libdev.bbclass which provides a set of macros and variables to convert

[OE-core] [PATCH 2/2] systemtap: add sqlite3 to DEPENDS

2011-06-28 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-kernel/systemtap/systemtap_git.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index aeb87c8..f24c179 100644

[OE-core] [PATCH 1/2] multiple recipes converted to -staticdev packages

2011-06-28 Thread Saul Wold
This commit adds a new base package ${PN}-staticdev to bitbake.conf which pulls in the static *.a libraries as a seperate package, it filters out the nonshared.a libraries where appropriate. Additional this commit adds a new libdev.bbclass which provides a set of macros and variables to convert

[OE-core] [PATCH] systemtap: add sqlite3 to DEPENDS

2011-06-28 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-kernel/systemtap/systemtap_git.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index aeb87c8..f24c179

Re: [OE-core] [PATCH] fontconfig: specify font directory in EXTRA_OECONF

2011-06-28 Thread Khem Raj
On 06/27/2011 08:24 AM, Phil Blundell wrote: since, otherwise, fontconfig's builtin default may not match ${datadir}. Signed-off-by: Phil Blundellph...@gnu.org --- .../fontconfig/fontconfig_2.8.0.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH] dhcp: don't try to move files from ${sbindir} to ${base_sbindir} if they are the same

2011-06-28 Thread Khem Raj
On 06/16/2011 06:27 AM, Phil Blundell wrote: Signed-off-by: Phil Blundellph...@gnu.org Acked-by: Khem Raj raj.k...@gmail.com --- meta/recipes-connectivity/dhcp/dhcp4.inc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-connectivity/dhcp/dhcp4.inc

Re: [OE-core] [PATCH] dhcp: don't try to move files from ${sbindir} to ${base_sbindir} if they are the same

2011-06-28 Thread Saul Wold
On 06/16/2011 06:27 AM, Phil Blundell wrote: Signed-off-by: Phil Blundellph...@gnu.org --- meta/recipes-connectivity/dhcp/dhcp4.inc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-connectivity/dhcp/dhcp4.inc b/meta/recipes-connectivity/dhcp/dhcp4.inc

Re: [OE-core] [PATCH 1/1] base.bbclass: show layer's branches/revisions in the banner info

2011-06-28 Thread Khem Raj
On 06/28/2011 04:07 AM, Paul Eggleton wrote: On Tuesday 28 June 2011 07:45:09 Koen Kooi wrote: So it works as expected, but the output is a bit confusing. I have a few (conflicting) suggestions: 1) replace _BRANCH and _REVISION with ' branch' and ' revision', e.g.: meta-archos branch

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-28 Thread Khem Raj
On 06/28/2011 04:53 PM, Graeme Gregory wrote: On 06/29/2011 12:50 AM, Khem Raj wrote: On Jun 28, 2011, at 3:51 PM, Scott Garmanscott.a.gar...@intel.com wrote: On 06/28/2011 03:41 PM, Khem Raj wrote: ERROR: Multiple .bb files are due to be built which each provide ssh

Re: [OE-core] [PATCH 2/3] webkit-gtk: recommends glib-networking to access https web page

2011-06-28 Thread Zhai, Edwin
Richard Purdie wrote: On Tue, 2011-06-28 at 20:08 +0800, Zhai, Edwin wrote: Koen Kooi wrote: Op 28 jun 2011, om 10:13 heeft Zhai, Edwin het volgende geschreven: In future, other recipes besides webkit-gtk may ask for glib-networking, maybe we can change it that time? What's

Re: [OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-06-28 Thread Scott Garman
On 06/28/2011 06:04 AM, Richard Purdie wrote: Hi Scott, Sorry its taken me a while to get to this. Some comments below. Hi Richard, Thanks for the feedback. I'm hoping to get you a v2 pull request sometime tomorrow which incorporates some of your suggested changes. Mark gave good

Re: [OE-core] [PATCH 1/3] glib-networking: Add 2.28.7 as new recipe

2011-06-28 Thread Zhai, Edwin
Koen said missing of gnomebase.bbclass may be introduced by some hacks in one merge. Richard Purdie wrote: On Tue, 2011-06-28 at 15:42 +0800, edwin.z...@intel.com wrote: From: Zhai Edwin edwin.z...@intel.com glib-networking contains the implementations of certain GLib networking features

[OE-core] [PATCH 0/2] Fix prelink to avoid first boot script

2011-06-28 Thread Mark Hatle
In most cases the user will have the image-prelink enabled, which will prelink the target image at image creation time. If this is enabled we want to avoid prelinking at first boot. We do this by setting the script exit status to '0' if we detect we're on the host. Also fixes a small bug found

[OE-core] [PATCH 1/2] sstate.bbclass: Fix an issue if the config changes

2011-06-28 Thread Mark Hatle
We need to check if we know of the task type, before we attempt to process it. In order to reproduce the problem build with: PACKAGE_CLASSES = package_ipk Then change it to: PACKAGE_CLASSES = package_rpm Build again -- and then try bitbake -c cleansstate recipe Signed-off-by: Mark Hatle

[OE-core] [PATCH 2/2] prelink_git.bb: Only block the postinst script when no image-prelink

2011-06-28 Thread Mark Hatle
If image-prelink is being used, the system will automatically prelink the target image. This avoids the need to run the postinst prelink script at first boot. However, if the user has not enabled image prelinking -- then we do enable the script to run on first boot. Signed-off-by: Mark Hatle

[OE-core] [PATCH 2/2] prelink_git.bb: Only block the postinst script when no image-prelink (v2)

2011-06-28 Thread Mark Hatle
[V2 - fix a small typo in the comment] If image-prelink is being used, the system will automatically prelink the target image. This avoids the need to run the postinst prelink script at first boot. However, if the user has not enabled image prelinking -- then we do enable the script to run on

[OE-core] [PATCH 2/6] wpa-supplicant: remove the 0.6.10 version.

2011-06-28 Thread Dongxiao Xu
Remove the 0.6.10 version since now 0.7.3 is the latest stable version. Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- .../wpa-supplicant-0.6.10/99_wpa_supplicant|1 - .../wpa-supplicant-0.6.10/defaults-sane|8 - .../wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls

[OE-core] [PATCH 1/6] connman: Upgrade to version 0.75

2011-06-28 Thread Dongxiao Xu
Enable ofono plugin. Adopt some logic in meta-oe on connman plugin runtime dependency. Remove the fix-shutdown-ap-disconnect.patch since the original logic no longer exists. Add Upstream-Status information for patches. Signed-off-by: Dongxiao Xu dongxiao...@intel.com ---

[OE-core] [PATCH 4/6] connman-gnome: Add 3G configuration support

2011-06-28 Thread Dongxiao Xu
Apply 3g.patch which add cellular config option in connman-gnome. Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- .../connman/connman-gnome/3g.patch | 505 .../connman/connman-gnome_0.5.bb |8 +- 2 files changed, 510 insertions(+),

[OE-core] [PATCH 3/6] ofono: upgrade to version 0.50

2011-06-28 Thread Dongxiao Xu
Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- meta/conf/distro/include/default-versions.inc |4 meta/recipes-connectivity/ofono/ofono.inc |2 ++ meta/recipes-connectivity/ofono/ofono_0.45.bb |9 - meta/recipes-connectivity/ofono/ofono_0.50.bb | 13

[OE-core] [PATCH 0/6 v4][PULL] 3G network support

2011-06-28 Thread Dongxiao Xu
Hi, This is the 4th version of 3G patches, please help to review and pull. Changes from v3: 1) Use DISTRO_FEATURE to handle the dependency of ofono. 2) Adopt ofono 0.50 version which could work with Ericsson modem. (ofono's commit d99ca17 fixed the crash issue) Thanks, Dongxiao The

[OE-core] [PATCH 6/6] task-base: add 3G into DISTRO_FEATURE

2011-06-28 Thread Dongxiao Xu
Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- meta/conf/distro/include/default-distrovars.inc |2 +- meta/recipes-core/tasks/task-base.bb| 16 +++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/meta/conf/distro/include/default-distrovars.inc

[OE-core] [PATCH 5/6] initscript: Change some order of init scripts

2011-06-28 Thread Dongxiao Xu
Move udev script to execute ealier since module autoload needs it to create device nodes. Also move sysfs before udev which has dependency on it. Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- meta/recipes-core/initscripts/initscripts_1.0.bb |6 +++---

[OE-core] MINUTES: OE-TSC meeting 23-Jun-2011

2011-06-28 Thread Jeff Osier-Mixon
MINUTES: OE-TSC meeting 23-Jun-2011 Attendees: Richard, Tom, Khem, Koen, Mark, Stefan Notes: Jefro Agenda Action Items 01) choose a meeting chair stefan 02) new topics Discussion about more (or more complex) building before pushing changes to master (Tartarus) new features in OE-Core and

[OE-core] [PATCH 0/1][PULL] Update manual check info in distro_checking_fields.inc

2011-06-28 Thread Dongxiao Xu
Hi Saul, This pull request update the manual check fields in distro_checking_fields.inc, Please help to review and pull. Thanks, Dongxiao The following changes since commit a4f3e006e1f2fd93f156012af2a05adccf41d065: u-boot-mkimage: bump version to 2011.03 (2011-06-28 17:13:19 +0100) are

[OE-core] [PATCH 1/1] distro_tracking: update some manual checking fields

2011-06-28 Thread Dongxiao Xu
linux-firmware minicom opkg dpkg wireless-tools libgsmd libsamplerate0 Signed-off-by: Dongxiao Xu dongxiao...@intel.com --- .../conf/distro/include/distro_tracking_fields.inc | 18 +++--- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git