[OE-core] [PATCHv2 2/2] subversion: explicitly disable sasl

2013-07-06 Thread Martin Jansa
* cyrus-sasl is in meta-networking and isn't in subversion DEPENDS Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/recipes-devtools/subversion/subversion_1.6.15.bb | 1 + meta/recipes-devtools/subversion/subversion_1.7.10.bb | 1 + 2 files changed, 2 insertions(+) diff --git

[OE-core] [PATCHv2] buildhistory: Record size of installed package not compressed archive

2013-07-06 Thread Martin Jansa
* usually it's more important to know how much space will each package take on target device then size of compressed package * example for libewebkit0 with 4 different architectures, interesting that om_gta02 .ipk is bigger but it's smaller when installed before: MACHINE DEFAULTTUNE

Re: [OE-core] [PATCH 1/1] busybox: fix the on-target upgrade problem

2013-07-06 Thread Martin Jansa
On Wed, Jul 03, 2013 at 12:48:12PM +0800, qi.c...@windriver.com wrote: From: Chen Qi qi.c...@windriver.com We now can have a 'one-binary' version of busybox, or 'two-binary' version of busybox, controlled by the 'BUSYBOX_SPLIT_SUID' variable. This makes on-target upgrade a problem, as we

Re: [OE-core] [PATCH 0/4] replace genext2fs with populate-extfs.sh

2013-07-06 Thread Jonathan Liu
On 14/05/2013 3:32 PM, Robert Yang wrote: On 05/13/2013 09:22 PM, Jonathan Liu wrote: On 13/05/2013 8:50 PM, Robert Yang wrote: On 05/13/2013 05:50 PM, Jonathan Liu wrote: On 13/05/2013 7:23 PM, Robert Yang wrote: Hi Jonathan Liu, What's your configuration, please, I tried a

[OE-core] [PATCH] eglibc: Update 2.18 recipes to fix ppc/e500 failures

2013-07-06 Thread Khem Raj
This should fix the e500 errors due to bounded pointers removal Signed-off-by: Khem Raj raj.k...@gmail.com --- .../eglibc/cross-localedef-native_2.18.bb |6 +++--- meta/recipes-core/eglibc/eglibc_2.18.bb|6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-)

[OE-core] [RFC][PATCH] test-dependencies: add simple script to detect missing or autoenabled dependencies

2013-07-06 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- scripts/test-dependencies.sh | 250 +++ 1 file changed, 250 insertions(+) create mode 100755 scripts/test-dependencies.sh diff --git a/scripts/test-dependencies.sh b/scripts/test-dependencies.sh new

Re: [OE-core] [RFC][PATCH] test-dependencies: add simple script to detect missing or autoenabled dependencies

2013-07-06 Thread Martin Jansa
On Sat, Jul 06, 2013 at 11:24:46PM +0200, Martin Jansa wrote: Signed-off-by: Martin Jansa martin.ja...@gmail.com --- scripts/test-dependencies.sh | 250 +++ 1 file changed, 250 insertions(+) create mode 100755 scripts/test-dependencies.sh

Re: [OE-core] [PATCHv2 1/2] eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils

2013-07-06 Thread Chris Larson
On Sat, Jul 6, 2013 at 1:39 AM, Martin Jansa martin.ja...@gmail.com wrote: * eglibc-collateral.inc inhibits all default deps, but do_package needs objcopy: ERROR: objcopy failed with exit code 127 (cmd was 'i586-webos-linux-objcopy' --only-keep-debug

Re: [OE-core] [PATCHv2 1/2] eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils

2013-07-06 Thread Martin Jansa
On Sat, Jul 06, 2013 at 03:56:59PM -0700, Chris Larson wrote: On Sat, Jul 6, 2013 at 1:39 AM, Martin Jansa martin.ja...@gmail.com wrote: * eglibc-collateral.inc inhibits all default deps, but do_package needs objcopy: ERROR: objcopy failed with exit code 127 (cmd was

[OE-core] [RFC][PATCH 1/4] package.bbclass: move reading shlibs providers to separate function

2013-07-06 Thread Martin Jansa
* prepare for reading shlibs providers only from dependency tree of current recipe [YOCTO #4628] Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/classes/package.bbclass | 43 +++ 1 file changed, 23 insertions(+), 20 deletions(-) diff --git

[OE-core] [RFC][PATCH 2/4] package.bbclass: show warning when package is trying to provide already provided shlib

2013-07-06 Thread Martin Jansa
* move read_shlib_providers before registering package as provider and don't change provider if it already exists, show warning instead [YOCTO #4628] Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/classes/package.bbclass | 11 +-- 1 file changed, 9 insertions(+), 2

[OE-core] [RFC][PATCH 3/4] package.bbclass: add SHLIBSSEARCHDIRS to define where to search for shlib providers

2013-07-06 Thread Martin Jansa
* when package contains some files matching ^.*\.so, but in directory not default linker search paths (e.g. /opt/package/bundled-lib/libfoo.so) don't register it as libfoo provider, because it's possible that there is different package providing libfoo.so in ${libdir} and that would be

[OE-core] [RFC][PATCH 4/4] WIP: package.bbclass: add some pseudo-code to filter shlibs providers based on dependencies

2013-07-06 Thread Martin Jansa
* when library/binary in package foo created by recipe foo.bb is linked with library libabc.so provided by package libabc created by recipe libabc.bb doesn't record foo - libabc dependency if recipe foo doesn't depend on libabc * this should prevent non-deterministic shlibs providers when

[OE-core] [RFC][PATCH] SHLIBSSEARCHDIRS

2013-07-06 Thread Martin Jansa
--- meta/classes/package.bbclass | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 3f2deca..55035b5 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1322,11

[OE-core] [RFC][PATCH] base.bbclass: add binutils to BASEDEPENDS

2013-07-06 Thread Martin Jansa
* when gcc-cross is reused from the sstate cache then gcc-cross's dependency on binutils-cross.do_populate_sysroot is ignored due to being in the safe dependency list in setscene_depvalid * many packages still require binutils-cross.do_populate_sysroot to be executed before their

Re: [OE-core] [RFC][PATCH] SHLIBSSEARCHDIRS

2013-07-06 Thread Martin Jansa
On Sun, Jul 07, 2013 at 01:15:54AM +0200, Martin Jansa wrote: --- meta/classes/package.bbclass | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) Ignore this one, wrong git revision passed to send-email.. -- Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com

Re: [OE-core] [PATCHv2 1/2] eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils

2013-07-06 Thread Chris Larson
On Sat, Jul 6, 2013 at 4:08 PM, Martin Jansa martin.ja...@gmail.com wrote: In this case yes, but what about allarch recipes, creating binutils-cross dependency in their do_package task would probably make their stamps depending on architecture. def get_binutils_dep(d): if 'target' in

Re: [OE-core] [PATCHv2 1/2] eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils

2013-07-06 Thread Martin Jansa
On Sat, Jul 06, 2013 at 04:20:00PM -0700, Chris Larson wrote: On Sat, Jul 6, 2013 at 4:08 PM, Martin Jansa martin.ja...@gmail.com wrote: In this case yes, but what about allarch recipes, creating binutils-cross dependency in their do_package task would probably make their stamps depending

[OE-core] [PATCH 0/1] linux-yocto: update 3.4 to latest -stable

2013-07-06 Thread Bruce Ashfield
Saul/patch collectors, Here's an update of the 3.4 SRCREVs for the latest 3.4.52 -stable version. Build and boot tested here for linux-yocto and linux-yocto-rt. Cheers, Bruce The following changes since commit dc86293f0444384e8ae5131fdd10b6cb077164b0: bitbake: HOB:Proper handle of SIGINT

[OE-core] [PATCH 1/1] linux-yocto/3.4: update to v3.4.52

2013-07-06 Thread Bruce Ashfield
Updating the 3.4 kernel to the latest korg -stable release. Signed-off-by: Bruce Ashfield bruce.ashfi...@windriver.com --- meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb |8 meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb |6 +++---