[OE-core] [oe-core][PATCHv2 5/5] layer.conf: add keymaps to SIGGEN_EXCLUDERECIPES_ABISAFE

2012-02-25 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta/conf/layer.conf |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index dac9c97..93c087a 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -27,4 +27,5 @@ SIGGEN_EXCLUDERECIPES_ABI

[OE-core] [oe-core][PATCHv2 4/5] sstatesig: add SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS option to exclude well defined recipe->dependency

2012-02-25 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta/lib/oe/sstatesig.py |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 7b80c18..1c25823 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -33,6 +33,10 @@

[OE-core] [oe-core][PATCHv2 3/5] gdb-cross-canadian: build gdb with python support

2012-02-25 Thread Martin Jansa
From: Eric BENARD * python support is needed for providing finer scripting control in gdb, and for remote controling gdb for example from qtcreator * gdb/configure tries to autodetect python using python executable with --includes --ldflags --exec-prefix to get the right flags As it's difficult t

[OE-core] [oe-core][PATCHv2 2/5] bitbake.conf: remove TARGET_ARCH from in SDKPATH

2012-02-25 Thread Martin Jansa
* SDKPATH shouldn't depend on TARGET_ARCH as discused here: http://lists.linuxtogo.org/pipermail/openembedded-core/2012-February/018222.html * introduce SDK_NAME_PREFIX so that distributions can overwrite only this instead of whole SDK_NAME Signed-off-by: Martin Jansa --- meta/conf/bitbake.

[OE-core] [oe-core][PATCHv2 1/5] bitbake.conf: use weak assignment for BB_CONSOLELOG

2012-02-25 Thread Martin Jansa
* some people prefer subdirectory like ${TMPDIR}/cooker/${DATETIME}.log Signed-off-by: Martin Jansa --- meta/conf/bitbake.conf |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 2539ae0..55daa9e 100644 --- a/meta/conf/

[OE-core] [oe-core][PATCHv2 0/5] Pending patches

2012-02-25 Thread Martin Jansa
Patch 0003 depends on http://patchwork.openembedded.org/patch/22047/ 0001 wasn't changed from v1, but still does apply. 0004/0005 is the same as I've sent as single patches to ML before. The following changes since commit c44e51f281101c8933679f679e3d4a75a41bedf7: initscripts: mount and unmoun

Re: [OE-core] [PATCH 0/3] License Related Patches

2012-02-25 Thread Saul Wold
On 02/24/2012 02:17 PM, Beth Flanagan wrote: A few license related patches: 1. Per a request from Mark Hatle, adding the email from Mark Nudelman to me which allows us to use BSD license as opposed to the less license within the recipe. 2. Next patch looks for package level LICENSE. If it finds

Re: [OE-core] [PATCH 0/2] Pending patches in O.S. Systems' tree

2012-02-25 Thread Saul Wold
On 02/24/2012 12:50 PM, Otavio Salvador wrote: The following changes since commit 22194a04f224864dd687660e351a3a10da1f06fa: scripts/hob: Launch the new hob (2012-02-24 18:05:46 +) are available in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/O

Re: [OE-core] [PATCH v2] initscripts: mount and unmount cifs network filesystems

2012-02-25 Thread Saul Wold
On 02/24/2012 12:27 PM, Andreas Oberritter wrote: * Added cifs to mountnfs.sh and umountnfs.sh. Signed-off-by: Andreas Oberritter --- * Rebased as requested .../initscripts/initscripts-1.0/mountnfs.sh|8 +++- .../initscripts/initscripts-1.0/umountnfs.sh |2 +- meta

Re: [OE-core] [PATCH] layer.conf: use += for SIGGEN_EXCLUDERECIPES_ABISAFE and split to multiple lines

2012-02-25 Thread Saul Wold
On 02/24/2012 12:45 PM, Martin Jansa wrote: * += is important, because if oe-core is in BBLAYERS after some other layers with SIGGEN_EXCLUDERECIPES_ABISAFE it overwrites their entries Signed-off-by: Martin Jansa --- meta/conf/layer.conf | 11 ++- 1 files changed, 10 insertions(+)

Re: [OE-core] [PATCH] glib: Drop dbus dependency, it isn't useful

2012-02-25 Thread Richard Purdie
On Sat, 2012-02-25 at 20:16 +0100, Martin Jansa wrote: > On Sat, Feb 25, 2012 at 03:57:26PM +, Richard Purdie wrote: > > dbus is only needed for some of the glib tests which we don't use. We can > > therefore drop the dependency and gain some small parallelism gains. > > > > Signed-off-by: Ric

Re: [OE-core] [PATCH] glib: Drop dbus dependency, it isn't useful

2012-02-25 Thread Martin Jansa
On Sat, Feb 25, 2012 at 03:57:26PM +, Richard Purdie wrote: > dbus is only needed for some of the glib tests which we don't use. We can > therefore drop the dependency and gain some small parallelism gains. > > Signed-off-by: Richard Purdie > --- > diff --git a/meta-yocto/conf/distro/poky-tin

[OE-core] [PATCH] cross-canadian: Set STAGING_DIR_HOST correctly

2012-02-25 Thread Richard Purdie
As reported by Martin Jansa, the path to nativesdk sysroot was changing between nativesdk and cross-canadian recipes. The problem was the incorrect deinfition of STAGING_DIR_HOST in cross-canadian.bbclass. Since nothing really uses the cross-canadian output in the sysroot, only the packages, its

[OE-core] [PATCH] glib: Drop dbus dependency, it isn't useful

2012-02-25 Thread Richard Purdie
dbus is only needed for some of the glib tests which we don't use. We can therefore drop the dependency and gain some small parallelism gains. Signed-off-by: Richard Purdie --- diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf index 411347a..5d1d67a 10064

Re: [OE-core] [oe-core][PATCH 2/4] gdb-cross-canadian: use NATIVESDK paths as it happens to be here

2012-02-25 Thread Richard Purdie
On Sat, 2012-02-25 at 14:12 +0100, Martin Jansa wrote: > On Sat, Feb 25, 2012 at 01:02:48AM +, Richard Purdie wrote: > > I seem to remember strongly disagreeing with: > > > > SDK_NAME = "oecore-${SDK_ARCH}-${TARGET_ARCH}" > > SDKPATH = "/usr/local/${SDK_NAME}" > > > > that is in bitbake.conf

[OE-core] [PATCH] sstatesig: add SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS option to exclude well defined recipe->dependency

2012-02-25 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta/lib/oe/sstatesig.py |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 7b80c18..1c25823 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -33,6 +33,10 @@

Re: [OE-core] empty dirs in glib-2.0

2012-02-25 Thread Richard Purdie
On Sat, 2012-02-25 at 13:26 +0100, Kövesdi György wrote: > Hi, > > Compiling the Angstrom Linux, in the file openembedded-core/meta/recipes- > core/glib-2.0/glib-2.0_2.30.2.bb (a85f283ffae5407b23532ce2262142ee2d986af2) > there are the followings: > > do_install_append() { > # remove some unpac

Re: [OE-core] [oe-core][PATCH 2/4] gdb-cross-canadian: use NATIVESDK paths as it happens to be here

2012-02-25 Thread Martin Jansa
On Sat, Feb 25, 2012 at 01:02:48AM +, Richard Purdie wrote: > On Sat, 2012-02-25 at 01:05 +0100, Martin Jansa wrote: > > On Thu, Feb 23, 2012 at 10:27:53AM +, Richard Purdie wrote: > > > On Mon, 2012-02-13 at 16:40 +0100, Martin Jansa wrote: > > > > * seems like config/config in -L was also

[OE-core] empty dirs in glib-2.0

2012-02-25 Thread Kövesdi György
Hi, Compiling the Angstrom Linux, in the file openembedded-core/meta/recipes- core/glib-2.0/glib-2.0_2.30.2.bb (a85f283ffae5407b23532ce2262142ee2d986af2) there are the followings: do_install_append() { # remove some unpackaged files rm -f ${D}${libdir}/gdbus-2.0/codegen/*.pyc rm -f ${D}${l

Re: [OE-core] [PATCH] bzip2: split into binary and library packages

2012-02-25 Thread Koen Kooi
Op 25 feb. 2012, om 02:19 heeft Andreas Oberritter het volgende geschreven: > * Create libbz2 (and -dev, -staticdev), which can be > installed without the bzip2 executables. You need a PR bump for everything that links against libbz2 to ensure clean upgrade paths. _