Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Khem Raj
On (17/05/11 01:13), Richard Purdie wrote: > On Sun, 2011-05-15 at 23:04 -0700, Khem Raj wrote: > > Do not define DEPLOY_DIR_IMAGE > > Append -uclibc to STAGING_DIR_TARGET only for target recipe and cross > > recipes > > Append -uclibc to STAGING_DIR_HOST only for target recipes. > > > > These cha

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Richard Purdie
On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: > I think we need to globalize libc variable like MACHINE or MULTIMACHINE > and we could check if PREFERRED_PROVIDER_virtual/libc == TCLIBC or not > in base.bbclass for sanity. Something like attached patch might be > able to do it Having assessed

[OE-core] [PATCH 00/15] 18-May-2011 Consolidated Pull

2011-05-18 Thread Saul Wold
From: Saul Wold Richard, This requests includes the removal of clutter, yaffs and older gcc version, along with the GCC 4.6 Update for x86 and arm. There is the start of the meta-skeleton layer, which I believe we want to be part of oe-core for solid examples to developers. As of this writing

[OE-core] [PATCH 06/15] Add the layer meta-skeleton

2011-05-18 Thread Saul Wold
From: Robert Yang Add the layer meta-skeleton, it will be used to place the various canonical examples. Signed-off-by: Robert Yang --- meta-skeleton/conf/layer.conf | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 meta-skeleton/conf/layer.conf diff --gi

[OE-core] [PATCH 07/15] Cleanup the whitespace in functions

2011-05-18 Thread Saul Wold
From: Robert Yang Cleanup the whitespace in functions, replace the 4 whitespaces indent with tab. Signed-off-by: Robert Yang --- .../initscripts/initscripts-1.0/functions | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/meta/recipes-core/initscripts/i

[OE-core] [PATCH 01/15] yaffs2: Remove yaffs2 from oe-core

2011-05-18 Thread Saul Wold
From: Saul Wold Move to meta-extras Also remove yaffs2 from image_types.bbclass Signed-off-by: Saul Wold --- meta/classes/image_types.bbclass |3 - .../yaffs2/files/mkyaffs2image.patch | 351 .../yaffs2/files/yaffs2-unioob.patch

[OE-core] [PATCH 12/15] Couple minor fixes for the OECORE rename

2011-05-18 Thread Saul Wold
From: Jessica Zhang Signed-off-by: Jessica Zhang --- meta/classes/toolchain-scripts.bbclass |6 +++--- meta/conf/bitbake.conf |2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/classes/toolchain-scripts.bbclass b/meta/classes/toolchain-scripts.bb

[OE-core] [PATCH 04/15] task-core-clutter: Update to 1.6

2011-05-18 Thread Saul Wold
From: Saul Wold Removed clutter-gtk and box2d Signed-off-by: Saul Wold --- meta/recipes-graphics/tasks/task-core-clutter.bb | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/recipes-graphics/tasks/task-core-clutter.bb b/meta/recipes-graphics/tasks/task-c

[OE-core] [PATCH 11/15] recipes: add Upstream-Status to various recipe patches

2011-05-18 Thread Saul Wold
From: Scott Garman Add Upstream-Status tag to patches for the following recipes: apmd insserv linuxdoc-tools openjade sgmlspl at sudo Signed-off-by: Scott Garman --- meta/recipes-bsp/apmd/apmd-3.2.2-14/libtool.patch | 28 +++ meta/recipes-bsp/apmd/apmd-3.2.2-14/unlinux.patc

[OE-core] [PATCH 15/15] gst-openmax: Add patch for GCC 4.6.0

2011-05-18 Thread Saul Wold
From: Saul Wold Signed-off-by: Saul Wold --- .../gstreamer/gst-openmax/gcc_4.6.patch| 18 ++ .../gstreamer/gst-openmax_0.10.1.bb|6 -- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 meta/recipes-multimedia/gstreamer/gs

[OE-core] [PATCH 10/15] tcmode-default: switch to gcc 4.6.0 for x86, x86-64 & arm

2011-05-18 Thread Saul Wold
From: Nitin A Kamble mips & ppc are not ready yet. Waiting for kernel issues to be fixed. Signed-off-by: Nitin A Kamble --- meta/conf/distro/include/tcmode-default.inc |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/conf/distro/include/tcmode-default.inc b

[OE-core] [PATCH 14/15] qemu: Fix Dependency and compatible machines

2011-05-18 Thread Saul Wold
From: Saul Wold add DEFAULT_PREFERENCE = "-1" to disable git recipe Added libx11 for GL support to DEPENDS Use BROKEN to disable qemuarm and qemumips world build of qemu target Signed-off-by: Saul Wold --- meta/recipes-devtools/qemu/qemu.inc | 10 +++--- meta/recipes-devtools/qemu/

[OE-core] [PATCH 05/15] world-broken: remove non-existent items

2011-05-18 Thread Saul Wold
From: Saul Wold Signed-off-by: Saul Wold --- meta/conf/distro/include/world-broken.inc |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/meta/conf/distro/include/world-broken.inc b/meta/conf/distro/include/world-broken.inc index 4ae7650..da9b1e4 100644 --- a/meta/con

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Khem Raj
On (18/05/11 08:57), Richard Purdie wrote: > On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: > > I think we need to globalize libc variable like MACHINE or MULTIMACHINE > > and we could check if PREFERRED_PROVIDER_virtual/libc == TCLIBC or not > > in base.bbclass for sanity. Something like attac

[OE-core] [PATCH 03/15] clutter: Clean up old recipes

2011-05-18 Thread Saul Wold
From: Saul Wold clutter-1.4 is moved to meta-extras clutter-box2d is migrated to latest 1.6 version Signed-off-by: Saul Wold --- meta/recipes-graphics/clutter/clutter-1.4_1.4.2.bb | 25 meta/recipes-graphics/clutter/clutter-box2d_git.bb |4 +- .../clutter/clutter-gst

[OE-core] [PATCH 08/15] Add pidofproc to ${sysconfdir}/init.d/functions

2011-05-18 Thread Saul Wold
From: Robert Yang Add pidofproc to ${sysconfdir}/init.d/functions, this is used for getting the pid of the process. It uses pidof to implement currently, it may also use the pidfile or ps to implement in the future. Signed-off-by: Robert Yang --- .../initscripts/initscripts-1.0/functions

[OE-core] [PATCH 09/15] Add a skeleton for init scripts

2011-05-18 Thread Saul Wold
From: Robert Yang Add a skeleton for init scripts, the original structure is from /etc/init.d/skeleton of Ubuntu 10.10, it is in sysvinit_2.87dsf, so add the COPYRIGHT(GPLv2) of sysvinit_2.87dsf. Modified the original skeleton a lot to make it as easy as possible, just use posix shell command, an

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Koen Kooi
Op 18 mei 2011, om 10:12 heeft Khem Raj het volgende geschreven: > On (18/05/11 08:57), Richard Purdie wrote: >> On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: >>> I think we need to globalize libc variable like MACHINE or MULTIMACHINE >>> and we could check if PREFERRED_PROVIDER_virtual/libc

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Frans Meulenbroeks
2011/5/18 Richard Purdie > On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: > > I think we need to globalize libc variable like MACHINE or MULTIMACHINE > > and we could check if PREFERRED_PROVIDER_virtual/libc == TCLIBC or not > > in base.bbclass for sanity. Something like attached patch might

[OE-core] [PATCH 0/3] Qt4 cleanup

2011-05-18 Thread Paul Eggleton
From: Paul Eggleton Remove Qt 4.6.3 in favour of 4.7.3 (which should be binary compatible with 4.6.x), add Upstream-Status to remaining patches and re-enable some patches that were missed with the original upgrade to 4.7.x. Pull URL: git://git.openembedded.org/openembedded-core-contrib Branch:

[OE-core] [PATCH 2/3] qt4: add comments and Upstream-Status to all patches

2011-05-18 Thread Paul Eggleton
From: Paul Eggleton Signed-off-by: Paul Eggleton --- meta/recipes-qt/qt4/files/0004-no-qmake.patch |1 + .../qt4/files/0006-freetype-host-includes.patch|3 ++- meta/recipes-qt/qt4/files/0008-qt-lib-infix.patch |7 ++- meta/recipes-qt/qt4/files/0009-support-2bpp.patch

[OE-core] [PATCH 1/3] qt4: remove Qt 4.6.3

2011-05-18 Thread Paul Eggleton
From: Paul Eggleton We should only have one version of Qt4 supported in oe-core. Signed-off-by: Paul Eggleton --- meta/recipes-qt/qt4/files/0001-cross-compile.patch | 36 -- .../qt4/files/0002-fix-resinit-declaration.patch | 22 .../files/0010-no-simpledecoration-example.patch

[OE-core] [PATCH 3/3] qt4: re-enable two 4.6.x patches in 4.7.3

2011-05-18 Thread Paul Eggleton
From: Paul Eggleton Two patches that were being applied in 4.6.x are now applied for 4.7.3. The functions of these two patches are: * Add support for 2bpp (only affects qt4-embedded) * Use correct infix on QtUiTools library (only affects qt4-embedded as qt4-x11-free does not define an infix)

Re: [OE-core] [PATCH 0/3] Qt4 cleanup

2011-05-18 Thread Koen Kooi
Op 18 mei 2011, om 11:08 heeft Paul Eggleton het volgende geschreven: > From: Paul Eggleton > > Remove Qt 4.6.3 in favour of 4.7.3 (which should be binary compatible with > 4.6.x), add Upstream-Status to remaining patches and re-enable some patches > that were missed with the original upgrade t

[OE-core] dpkg's admindir: /var/dpkg or /var/lib/dpkg?

2011-05-18 Thread Cui, Dexuan
Hi, I happened to find a bug: in target, "dpkg --list" shows "dpkg-query: failed to open package info file `/var/lib/dpkg/status' for reading: No such file or directory" Actually the files(status and available) does exist, but not in /var/lib/dpkg/ -- they're in /var/dpkg/. "ln -s /var/dpkg/{s

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 1:47 AM, Koen Kooi wrote: > > Op 18 mei 2011, om 10:12 heeft Khem Raj het volgende geschreven: > >> On (18/05/11 08:57), Richard Purdie wrote: >>> On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: I think we need to globalize libc variable like MACHINE or MULTIMACHINE

Re: [OE-core] [PATCH 2/2] tclibc-uclibc.inc: Append -uclibc only to target recipes

2011-05-18 Thread Richard Purdie
On Wed, 2011-05-18 at 10:48 +0200, Frans Meulenbroeks wrote: > 2011/5/18 Richard Purdie > > > On Wed, 2011-05-18 at 00:49 -0700, Khem Raj wrote: > > > I think we need to globalize libc variable like MACHINE or MULTIMACHINE > > > and we could check if PREFERRED_PROVIDER_virtual/libc == TCLIBC or n

Re: [OE-core] [RFC PATCH] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-18 Thread Richard Purdie
On Tue, 2011-05-17 at 16:37 -0700, Darren Hart wrote: > > On 05/17/2011 04:15 PM, Richard Purdie wrote: > > On Tue, 2011-05-17 at 16:00 -0700, Darren Hart wrote: > >> oe-core does not define any machines, so it does not make sense to > >> add machine specific information in the oe-core u-boot reci

[OE-core] [PATCH 0/1][v3] Automatically generate package repos for rpmand deb [bug #1024]

2011-05-18 Thread Dexuan Cui
From: Dexuan Cui This was made to address http://bugzilla.yoctoproject.org/show_bug.cgi?id=1024. Thanks a lot to RP and Saul's suggestions, the patch becomes much cleaner now. As to DEB, I found currently in target, some important config files, like /etc/apt/sources.list, for deb/apt are missin

[OE-core] [PATCH 1/1][RFC][v3] package-index.bb: add support for rpm and deb.

2011-05-18 Thread Dexuan Cui
From: Dexuan Cui [YOCTO #1024] Currently package-index.bb only supports ipk. This commit adds the support for rpm and deb, too. -- How to generate and use repos: 1) run "bitbake package-index" after building some target, e.g., core-image-sato-sdk; 2) export ${DEPLOY

Re: [OE-core] [PATCH 00/15] 18-May-2011 Consolidated Pull

2011-05-18 Thread Richard Purdie
On Wed, 2011-05-18 at 01:17 -0700, Saul Wold wrote: > This requests includes the removal of clutter, yaffs and older > gcc version, along with the GCC 4.6 Update for x86 and arm. > > There is the start of the meta-skeleton layer, which I believe > we want to be part of oe-core for solid examples t

Re: [OE-core] dpkg's admindir: /var/dpkg or /var/lib/dpkg?

2011-05-18 Thread Mark Hatle
On 5/18/11 4:27 AM, Cui, Dexuan wrote: > Hi, I happened to find a bug: in target, "dpkg --list" shows "dpkg-query: > failed to open package info file `/var/lib/dpkg/status' for reading: No such > file or directory" > > Actually the files(status and available) does exist, but not in > /var/lib/

Re: [OE-core] [PATCH 0/3] Qt4 cleanup

2011-05-18 Thread Richard Purdie
On Wed, 2011-05-18 at 10:08 +0100, Paul Eggleton wrote: > From: Paul Eggleton > > Remove Qt 4.6.3 in favour of 4.7.3 (which should be binary compatible with > 4.6.x), add Upstream-Status to remaining patches and re-enable some patches > that were missed with the original upgrade to 4.7.x. > > Pu

[OE-core] [PATCH 1/5] diffutils: fix libc overrides

2011-05-18 Thread Koen Kooi
Signed-off-by: Koen Kooi --- meta/recipes-extended/diffutils/diffutils_2.8.1.bb |2 +- meta/recipes-extended/diffutils/diffutils_3.0.bb |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/diffutils/diffutils_2.8.1.bb b/meta/recipes-extended/diffu

[OE-core] [PATCH 2/5] findutils: fix libc overrides

2011-05-18 Thread Koen Kooi
Signed-off-by: Koen Kooi --- meta/recipes-extended/findutils/findutils.inc |2 +- .../recipes-extended/findutils/findutils_4.2.31.bb |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/findutils/findutils.inc b/meta/recipes-extended/findutils/

[OE-core] [PATCH 4/5] sysstat: fix libc overrides

2011-05-18 Thread Koen Kooi
Signed-off-by: Koen Kooi --- meta/recipes-extended/sysstat/sysstat.inc |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc index a4cad0e..4756016 100644 --- a/meta/recipes-extended/sysst

[OE-core] [PATCH 3/5] lsof: fix libc overrides

2011-05-18 Thread Koen Kooi
Signed-off-by: Koen Kooi --- meta/recipes-extended/lsof/lsof_4.84.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/lsof/lsof_4.84.bb b/meta/recipes-extended/lsof/lsof_4.84.bb index 960d837..9e76096 100644 --- a/meta/recipes-extended/lsof/lsof_4

[OE-core] [PATCH 5/5] tcp-wrappers: fix libc overrides

2011-05-18 Thread Koen Kooi
Signed-off-by: Koen Kooi --- .../tcp-wrappers/tcp-wrappers_7.6.bb |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb b/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb index daaa2f7..d5e334e 100644

Re: [OE-core] [PATCH 00/15] 18-May-2011 Consolidated Pull

2011-05-18 Thread Otavio Salvador
On Wed, May 18, 2011 at 10:30, Richard Purdie wrote: > On Wed, 2011-05-18 at 01:17 -0700, Saul Wold wrote: >> This requests includes the removal of clutter, yaffs and older >> gcc version, along with the GCC 4.6 Update for x86 and arm. >> >> There is the start of the meta-skeleton layer, which I b

Re: [OE-core] [PATCH 00/15] 18-May-2011 Consolidated Pull

2011-05-18 Thread Bruce Ashfield
On Wed, May 18, 2011 at 9:50 AM, Otavio Salvador wrote: > On Wed, May 18, 2011 at 10:30, Richard Purdie > wrote: >> On Wed, 2011-05-18 at 01:17 -0700, Saul Wold wrote: >>> This requests includes the removal of clutter, yaffs and older >>> gcc version, along with the GCC 4.6 Update for x86 and arm

Re: [OE-core] [PATCH] rootfs_ipk: respect ONLINE_PACKAGE_MANAGEMENT

2011-05-18 Thread Phil Blundell
On Tue, 2011-05-17 at 17:22 +0100, Richard Purdie wrote: > On Tue, 2011-05-17 at 15:50 +0100, Phil Blundell wrote: > > I guess I could teach remove_packaging_data_files() to not create the > > empty directory if O_P_M=="none". Would you be happier with that? > > Mostly. The question remains what

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Phil Blundell
On Tue, 2011-05-17 at 13:57 -0700, Khem Raj wrote: > With default-setup being pulled in via bitbake.conf and task-core-boot > being pulled into all images in distros, we need > to have some variables that distro's can override if need be > This is a backport from angstrom/OE. It will help distros w

[OE-core] [PATCH 2/2] linux-yocto/meta-yocto: fix gcc 4.6.0 compilation failures

2011-05-18 Thread Bruce Ashfield
Fixes gcc 4.6.0 compliation issues by importing the upstream change: Author: Michal Marek Date: Mon May 2 12:13:01 2011 + kbuild: Fix passing -Wno-* options to gcc 4.4+ Starting with 4.4, gcc will happily accept -Wno- in the cc-option test and complain late

[OE-core] [PATCH 0/2] linux-yocto: fix gcc 4.6.0 compilation failures

2011-05-18 Thread Bruce Ashfield
Repeating the patch contents here, since that's the whole story: Fixes bug: [YOCTO #1035] Fixes bug: [YOCTO #1036] Fixes gcc 4.6.0 compliation issues by importing the upstream change: Author: Michal Marek Date: Mon May 2 12:13:01 2011 + kbuild: Fix passing -Wno-* options to gcc 4

[OE-core] [PATCH 0/2] linux-yocto: fix gcc 4.6.0 compilation failures

2011-05-18 Thread Bruce Ashfield
>From 92ad9ce8e770b46df38ed015486c76efe502f382 Mon Sep 17 00:00:00 2001 Message-Id: <92ad9ce8e770b46df38ed015486c76efe502f382.1305736112.git.bruce.ashfi...@windriver.com> In-Reply-To: References: From: Bruce Ashfield Date: Wed, 18 May 2011 12:07:44 -0400 Subject: [PATCH 1/2] linux-yocto: fix gc

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 8:53 AM, Phil Blundell wrote: > On Tue, 2011-05-17 at 13:57 -0700, Khem Raj wrote: >> With default-setup being pulled in via bitbake.conf and task-core-boot >> being pulled into all images in distros, we need >> to have some variables that distro's can override if need be >

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Phil Blundell
On Wed, 2011-05-18 at 09:40 -0700, Khem Raj wrote: > Problem I have is, I dont want udev in RDEPENDS which is added by > task-core-boot > and task-core-boot is added to DISTRO_EXTRA_RDEPENDS through > default-distrovars.inc -> defaultsetup.conf -> bitbake.conf > > and my distro adds DISTRO_EXTRA_R

[OE-core] [PATCH (v2,resend) 1/3] oe.classutils: add module

2011-05-18 Thread Chris Larson
From: Chris Larson This adds a ClassRegistry utility metaclass, as maintaining a class registry is a fairly common thing to do. Signed-off-by: Chris Larson --- meta/lib/oe/classutils.py | 43 +++ 1 files changed, 43 insertions(+), 0 deletions(-) creat

[OE-core] [PATCH (v2,resend) 0/3] Rework the devshell

2011-05-18 Thread Chris Larson
From: Chris Larson - Adds a utility metaclass for maintaining class registries - Shifts the handling of spawning a terminal into a new 'terminal' python module - Automatically selects an appropriate terminal based on what you have available on your machine - Still allows manual selection, but i

[OE-core] [PATCH (v2, resend) 2/3] Rework how the devshell functions

2011-05-18 Thread Chris Larson
From: Chris Larson In the new implementation, each known terminal is defined as a class in oe.terminal, as a subclass of bb.process.Popen. It obeys the OE_TERMINAL variable, which is a 'choice' typed variable. This variable may be 'auto', 'none', or any of the names of the defined terminals. Whe

[OE-core] [PATCH (v2, resend) 3/3] oe.terminal: improve how we spawn screen

2011-05-18 Thread Chris Larson
From: Chris Larson - Name the screen session 'devshell', to avoid confusion if running bitbake itself under a screen session. - Display a warning message when spawning screen, so it's clear to the user that screen has been run (otherwise do_devshell just appears to hang). Signed-off-by: Chri

[OE-core] [PATCH v2 00/15] *-pull-request: cleanup and overhaul

2011-05-18 Thread Darren Hart
This series was reviewed and received several Acks, now included, and no suggestions for change. It is now ready to be pulled into oe-core. Before merging into the poky/meta dir, poky/meta needs to be synced with oe-core. It is missing the following commit from oe-core: commit 84e07ef76bf4f484a2d5

[OE-core] [PATCH 03/15] create-pull-request: use git request-pull and arbitrary remotes

2011-05-18 Thread Darren Hart
Allow for arbitrary remotes via a new -u argument. Remove the hard coded references to the pokylinux repositories. Create the WEB_URL from known remotes. Future patches can add additional WEB_URL mappings for remotes like Git Hub, Gitorious, and kernel.org. Rather than duplicating the git request-

[OE-core] [PATCH 08/15] send-pull-request: fix greedy auto-cc regex

2011-05-18 Thread Darren Hart
A greedy regular expression caused emails to be harvested from patches that were quoted in the commit message. Ensure only tags that start at the beginning of the line are considered for harvesting. NOTE: users are still responsible for verifying the recipients list and to ensure they do not

[OE-core] [PATCH 01/15] create-pull-request: alphabetize arguments

2011-05-18 Thread Darren Hart
Some initial cleanup prior to a significant overhaul. Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/create-pull-request | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/create-pull-request b/scripts/create-pull-req

[OE-core] [PATCH 02/15] create-pull-request: whitespace cleanup

2011-05-18 Thread Darren Hart
Indent with tabs, not spaces, to be consistent with other bash scripts. Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/create-pull-request | 78 +- 1 files changed, 39 insertions(+), 39 deletions(-) diff --git a/s

[OE-core] [PATCH 14/15] send-pull-request: streamline git-send-email usage

2011-05-18 Thread Darren Hart
The script was sending one patch at a time, which defeats the internal confirmation mechanism of git-send-email (which would otherwise allow the user to send all patches or abort immediately). Rework the sending logic to use no more than two commands. Use two commands when the cover letter is to b

[OE-core] [PATCH 04/15] create-pull-request: rewrite known private URLs to public URLs

2011-05-18 Thread Darren Hart
Rather than requiring users to have public remotes and private remotes when their development remotes are ssh based (and therefor unsuitable for a pull request URL), rewrite the ones we know about from ssh://git@ to git://. As the remote url vary from remote to remote, do the REMOTE_REPO regex per

[OE-core] [PATCH 15/15] *pull-request: add copyright, license, and descriptions

2011-05-18 Thread Darren Hart
Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/create-pull-request | 26 ++ scripts/send-pull-request | 25 + 2 files changed, 51 insertions(+), 0 deletions(-) diff --git a/scripts/create-pull-request b

[OE-core] [PATCH 13/15] create-pull-request: add untested oe repository support

2011-05-18 Thread Darren Hart
Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/create-pull-request |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/scripts/create-pull-request b/scripts/create-pull-request index a9cf6f9..634a289 100755 --- a/scripts/create-pu

[OE-core] [PATCH 09/15] send-pull-request: don't send all patches to everyone even with -a

2011-05-18 Thread Darren Hart
Rather than sending every patch to every recipient of the entire series when -a is used, only send the cover letter to everyone and use git's --signed-off-by-cc feature to generate an auto cc list for the individual patches. Add a -c option to use --signed-off-by-cc to auto cc recipeients at the i

[OE-core] [PATCH 07/15] send-pull-request: remove local mta support

2011-05-18 Thread Darren Hart
There is no real value in supporting sendmail directly when git can be configured to use it. The script used to generate the pull request mails relies heavily on git, so doing so here does not impose any additional dependencies and it greatly reduces the complexity of this script. Signed-off-by: D

[OE-core] [PATCH 11/15] create-pull-request: do not check certificate

2011-05-18 Thread Darren Hart
From: Otavio Salvador Some remotes can use HTTPS and we don't need to check the certificate of the host so wget call is changed to avoid it. Signed-off-by: Otavio Salvador Signed-off-by: Darren Hart --- scripts/create-pull-request |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) d

[OE-core] [PATCH 06/15] send-pull-request: whitespace cleanup

2011-05-18 Thread Darren Hart
Indent with tabs, not spaces, for consistency with other bash scripts. Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/send-pull-request | 250 ++-- 1 files changed, 125 insertions(+), 125 deletions(-) diff --git a/

Re: [OE-core] [PATCH] distro/defaultsetup.conf: Append TCLIBC to TMPDIR by default

2011-05-18 Thread Khem Raj
On Tue, May 17, 2011 at 3:48 AM, Koen Kooi wrote: > From: Richard Purdie > > The current solutions to share uclibc, eglibc and glibc builds in the > same tree all have various issues associated with them. Appending the > suffix to TMPDIR seems like the best solution since sstate (which > defaults

[OE-core] [PATCH 12/15] create-pull-request: add GitHub remote support

2011-05-18 Thread Darren Hart
From: Otavio Salvador Signed-off-by: Otavio Salvador Signed-off-by: Darren Hart --- scripts/create-pull-request |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 9dbd55a..a9cf6f9 100755 --- a/scripts/c

[OE-core] [PATCH 10/15] send-pull-request: verify git sendemail config

2011-05-18 Thread Darren Hart
Perform a quick sanity check to be able to direct users to configure git.sendemail if they haven't yet. Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/send-pull-request | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a

[OE-core] [PATCH 05/15] create-pull-request: provide an RFC mode via -c argument

2011-05-18 Thread Darren Hart
Currently it is difficult to know if a pull request is being sent for review or just to be pulled. Add a -c argument to add RFC to the subject prefix and a blurb requesting review to the cover letter. Signed-off-by: Darren Hart Acked-by: Joshua Lock Acked-by: Otavio Salvador Cc: Richard Purdie

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Koen Kooi
Op 18 mei 2011, om 19:08 heeft Phil Blundell het volgende geschreven: > On Wed, 2011-05-18 at 09:40 -0700, Khem Raj wrote: >> Problem I have is, I dont want udev in RDEPENDS which is added by >> task-core-boot >> and task-core-boot is added to DISTRO_EXTRA_RDEPENDS through >> default-distrovars.i

Re: [OE-core] [PATCH 14/15] send-pull-request: streamline git-send-email usage

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 10:18 AM, Darren Hart wrote: > The script was sending one patch at a time, which defeats the internal > confirmation mechanism of git-send-email (which would otherwise allow > the user to send all patches or abort immediately). > > Rework the sending logic to use no more th

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Leon Woestenberg
Hello, On Wed, May 18, 2011 at 7:29 PM, Koen Kooi wrote: > > Op 18 mei 2011, om 19:08 heeft Phil Blundell het volgende geschreven: > >> On Wed, 2011-05-18 at 09:40 -0700, Khem Raj wrote: >>> Problem I have is, I dont want udev in RDEPENDS which is added by >>> task-core-boot >>> and task-core-boo

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 10:52 AM, Leon Woestenberg wrote: > Hello, > > On Wed, May 18, 2011 at 7:29 PM, Koen Kooi wrote: >> >> Op 18 mei 2011, om 19:08 heeft Phil Blundell het volgende geschreven: >> >>> On Wed, 2011-05-18 at 09:40 -0700, Khem Raj wrote: Problem I have is, I dont want udev i

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Koen Kooi
Op 18 mei 2011, om 20:07 heeft Khem Raj het volgende geschreven: > On Wed, May 18, 2011 at 10:52 AM, Leon Woestenberg > wrote: >> Hello, >> >> On Wed, May 18, 2011 at 7:29 PM, Koen Kooi >> wrote: >>> >>> Op 18 mei 2011, om 19:08 heeft Phil Blundell het volgende geschreven: >>> On Wed,

[OE-core] [PATCH] default-distrovars: do not force usage of task-core-boot

2011-05-18 Thread Koen Kooi
DISTROs are free to opt for task-base without task-core-boot at image time. Signed-off-by: Koen Kooi --- meta/conf/distro/include/default-distrovars.inc |1 - meta/recipes-core/tasks/task-base.bb|2 +- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/meta/conf/d

[OE-core] [PATCH 0/1] [RFC] utils.bbclass: fix problem with perl and wrapper

2011-05-18 Thread Saul Wold
From: Saul Wold Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: sgw/patch Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgw/patch Thanks, Saul Wold --- Saul Wold (1): utils.bbclass: modify create_wrapper to correctly follow symlinks meta/classes/utils.b

[OE-core] [PATCH 1/1] utils.bbclass: modify create_wrapper to correctly follow symlinks

2011-05-18 Thread Saul Wold
From: Saul Wold This ensures you look up the symbolic link to get the full path Signed-off-by: Saul Wold --- meta/classes/utils.bbclass |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 6bcaf86..a789d41 1006

Re: [OE-core] [PATCH 09/15] send-pull-request: don't send all patches to everyone even with -a

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 10:18 AM, Darren Hart wrote: > Rather than sending every patch to every recipient of the entire series when > -a is used, only send the cover letter to everyone and use git's > --signed-off-by-cc feature to generate an auto cc list for the individual > patches. > > Add a -c

Re: [OE-core] [PATCH 1/1] utils.bbclass: modify create_wrapper to correctly follow symlinks

2011-05-18 Thread Koen Kooi
Op 18 mei 2011, om 20:23 heeft Saul Wold het volgende geschreven: > From: Saul Wold > > This ensures you look up the symbolic link to get the full path > > Signed-off-by: Saul Wold > --- > meta/classes/utils.bbclass |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git

[OE-core] [PATCH 0/1] utils.bbclass: fix for create_wrapper

2011-05-18 Thread Saul Wold
From: Saul Wold Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: sgw/patch Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgw/patch Thanks, Saul Wold --- Saul Wold (1): utils.bbclass: modify create_wrapper to correctly follow symlinks meta/classes/utils.b

[OE-core] [PATCH 1/1] utils.bbclass: modify create_wrapper to correctly follow symlinks

2011-05-18 Thread Saul Wold
From: Saul Wold This ensures you look up the symbolic link to get the full path Signed-off-by: Saul Wold --- meta/classes/utils.bbclass |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 6bcaf86..1965d2f 1006

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Martin Jansa
On Wed, May 18, 2011 at 07:52:50PM +0200, Leon Woestenberg wrote: > Hello, > > On Wed, May 18, 2011 at 7:29 PM, Koen Kooi wrote: > > > > Op 18 mei 2011, om 19:08 heeft Phil Blundell het volgende geschreven: > > > >> On Wed, 2011-05-18 at 09:40 -0700, Khem Raj wrote: > >>> Problem I have is, I don

Re: [OE-core] Is BBCLASSEXTEND in .bbappend supposed to work?

2011-05-18 Thread Simon Busch
On 18.04.2011 14:17, Gary Thomas wrote: > On 04/18/2011 05:34 AM, Koen Kooi wrote: >> >> Op 18 apr 2011, om 13:28 heeft Richard Purdie het volgende geschreven: >> >>> On Mon, 2011-04-18 at 12:55 +0200, Koen Kooi wrote: Martin did some Xorg cleanup in meta-oe today and we're seeing some st

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Phil Blundell
On Wed, 2011-05-18 at 11:07 -0700, Khem Raj wrote: > there are certain common parts that can be abstracted > and can be maintained in oe-core so everyone benefits > from it and certain image specific parts can be done in > distros. So keeping common parts in core would still > be better IMO Which

Re: [OE-core] [PATCH 1/1] default-distrovars.inc, task-core-boot.bb: Create distro overridable varibales

2011-05-18 Thread Khem Raj
On Wed, May 18, 2011 at 1:12 PM, Phil Blundell wrote: > On Wed, 2011-05-18 at 11:07 -0700, Khem Raj wrote: >> there are certain common parts that can be abstracted >> and can be maintained in oe-core so everyone benefits >> from it and certain image specific parts can be done in >> distros. So kee

[OE-core] [PATCH 4/5] Shift oe import logic out of the event handler

2011-05-18 Thread Chris Larson
From: Chris Larson This can be useful if we need the imports from another config parsed event handler, and can't rely upon the base one running before that one. Signed-off-by: Chris Larson --- meta/classes/base.bbclass | 33 ++--- 1 files changed, 18 insertions(+)

[OE-core] [PATCH 0/5] Variable typing & reworked imports handling

2011-05-18 Thread Chris Larson
From: Chris Larson Pull URL: git://git.openembedded.org/openembedded-core-contrib Branch: kergoth/oe-sync-base Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kergoth/oe-sync-base Thanks, Chris Larson --- Chris Larson (5): Implement variable typing (sy

[OE-core] [PATCH 1/5] Implement variable typing (sync from OE)

2011-05-18 Thread Chris Larson
From: Chris Larson This implementation consists of two components: - Type creation python modules, whose job it is to construct objects of the defined type for a given variable in the metadata - typecheck.bbclass, which iterates over all configuration variables with a type defined and uses o

[OE-core] [PATCH 3/5] base.bbclass: switch to current OE's imports handling

2011-05-18 Thread Chris Larson
From: Chris Larson The current mechanism makes it easier for classes to add new oe modules to be automatically imported, and thereby made available to python snippets (${@}). Signed-off-by: Chris Larson --- meta/classes/base.bbclass | 22 +- 1 files changed, 9 insertions(

[OE-core] [PATCH 2/5] oe.data: expand the flags

2011-05-18 Thread Chris Larson
From: Chris Larson Signed-off-by: Chris Larson --- meta/lib/oe/data.py |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/meta/lib/oe/data.py b/meta/lib/oe/data.py index 8b7c3cd..4b4d03e 100644 --- a/meta/lib/oe/data.py +++ b/meta/lib/oe/data.py @@ -6,6 +6,11 @@ def ty

[OE-core] [PATCH 5/5] base.bbclass: use oe.data for OE_IMPORTS

2011-05-18 Thread Chris Larson
From: Chris Larson Signed-off-by: Chris Larson --- meta/classes/base.bbclass |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 391545c..7950bc3 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bb

[OE-core] [PATCH 3/5] packagedata: don't choke on empty PACKAGES

2011-05-18 Thread Chris Larson
From: Chris Larson Signed-off-by: Chris Larson --- meta/lib/oe/packagedata.py |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/lib/oe/packagedata.py b/meta/lib/oe/packagedata.py index 7f0a89d..ee10a23 100644 --- a/meta/lib/oe/packagedata.py +++ b/meta/lib/oe/packa

[OE-core] [PATCH 0/5] Switch to OE's implementation of IMAGE_FEATURES

2011-05-18 Thread Chris Larson
From: Chris Larson This version uses variables to define the groups of packages rather than calls to base_contains. Note: this applies on top of kergoth/oe-sync-base. Example: PACKAGE_GROUP_stuff_i_like = "openssh nano foo" IMAGE_FEATURES += "stuff_i_like" Pull URL: git://git.openembedded.or

[OE-core] [PATCH 1/5] oe.packagegroup: add code for package groups (sync from OE)

2011-05-18 Thread Chris Larson
From: Chris Larson This includes some utility functions for dealing with groups of packages defined in the metadata. Metadata syntax: PACKAGE_GROUP_ = "" If the packages in the group are optional: PACKAGE_GROUP_[optional] = "1" Signed-off-by: Chris Larson --- meta/classes/base.bbcl

[OE-core] [PATCH 5/5] Use oe.data for IMAGE_FEATURES

2011-05-18 Thread Chris Larson
From: Chris Larson Signed-off-by: Chris Larson --- meta/classes/image.bbclass | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 3c62688..6b4e01e 100644 --- a/meta/classes/image.bbclass +++ b/meta/cla

[OE-core] [PATCH 4/5] image.bbclass: switch to OE's IMAGE_FEATURES

2011-05-18 Thread Chris Larson
From: Chris Larson Currently, all image features are assumed to be package groups defined with oe.packagegroup (PACKAGE_GROUP_ = ""). Signed-off-by: Chris Larson --- meta/classes/core-image.bbclass | 112 ++- meta/classes/image.bbclass | 41 +

[OE-core] [PATCH 2/5] Move packagedata code into oe.packagedata (sync from OE)

2011-05-18 Thread Chris Larson
From: Chris Larson Signed-off-by: Chris Larson --- meta/classes/package.bbclass |4 +- meta/classes/package_rpm.bbclass |3 +- meta/classes/packagedata.bbclass | 68 ++--- meta/lib/oe/packagedata.py | 106 ++ 4 files c

[OE-core] [PATCH 0/1] u-boot: update SRCREV to 2011.03

2011-05-18 Thread Darren Hart
From: Darren Hart Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: dvhart/beagle Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/beagle Thanks, Darren Hart --- Darren Hart (1): u-boot: update SRCREV to 2011.03 meta/recipes-bsp/uboot/u-boot_git.bb |

[OE-core] [PATCH 1/1] u-boot: update SRCREV to 2011.03

2011-05-18 Thread Darren Hart
From: Darren Hart Fixes [YOCTO 1029] u-boot 2010.12 fails to run on the Beagleboard C4 and xM Rev A boards. Commit 55aacbc30e48f6f8a73fb989a58625e70887bc01 suggests there was a mixup during development, as the MD5SUM change is from the 2011.03 SRCREV back to the 2010.12. Chances are a patch was

Re: [OE-core] Is BBCLASSEXTEND in .bbappend supposed to work?

2011-05-18 Thread Gary Thomas
On 05/18/2011 01:47 PM, Simon Busch wrote: On 18.04.2011 14:17, Gary Thomas wrote: On 04/18/2011 05:34 AM, Koen Kooi wrote: Op 18 apr 2011, om 13:28 heeft Richard Purdie het volgende geschreven: On Mon, 2011-04-18 at 12:55 +0200, Koen Kooi wrote: Martin did some Xorg cleanup in meta-oe toda

[OE-core] [PATCH 00/30] 18-May-2011 Consolidated Pull

2011-05-18 Thread Saul Wold
This has a few core fixes to master for broken builds, utils.bbclass address the perl failure and qt4-tools-native address a qt4 failure. Additional this has Darren's new create/send pull request along with fixes for 4.6 and libc overrides. Thanks Sau! The following changes since commit 1eb02

  1   2   >