Re: [oe] openssl-native-1.0.0d-r14.0 compile fails

2011-06-22 Thread A. Schallenberg
Hello, thank you, Henning, for pointing me to the correct directory. Its contents are: openssl-1.0.0d> ls ACKNOWLEDGMENTS apps bugs certs CHANGES CHANGES.SSLeay config Configure crypto demos doc engines e_os2.h e_os.h FAQ include INSTALL install.com INSTALL.DJGPP INSTALL.MacOS INSTALL.NW INSTALL.

[oe] [PATCH] classes/native*.bbclass: fix error during parse with bitbake master

2011-06-22 Thread Paul Eggleton
Fixes "AttributeError: 'NoneType' object has no attribute 'split'" during parsing with bitbake master. We should not be calling explode_deps with None as the argument, so check for that before calling it. Signed-off-by: Paul Eggleton --- classes/native.bbclass|5 - classes/nativesdk.

Re: [oe] [PATCH] classes/native*.bbclass: fix error during parse with bitbake master

2011-06-22 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22-06-11 11:13, Paul Eggleton wrote: > Fixes "AttributeError: 'NoneType' object has no attribute 'split'" during > parsing with bitbake master. We should not be calling explode_deps with > None as the argument, so check for that before calling it. >

Re: [oe] [PATCH] classes/native*.bbclass: fix error during parse with bitbake master

2011-06-22 Thread Phil Blundell
On Wed, 2011-06-22 at 10:13 +0100, Paul Eggleton wrote: > depends = bb.data.getVar("DEPENDS_virtclass-native", d, True) > -deps = bb.utils.explode_deps(depends) > +if depends: > +deps = bb.utils.explode_deps(depends) > +else: > +deps = [] Ca

[oe] [PATCH v2] classes/native*.bbclass: fix error during parse with bitbake master

2011-06-22 Thread Paul Eggleton
Fixes "AttributeError: 'NoneType' object has no attribute 'split'" during parsing with bitbake master. We should not be calling explode_deps with None as the argument, so ensure the value isn't None. Signed-off-by: Paul Eggleton --- classes/native.bbclass|2 +- classes/nativesdk.bbclass

Re: [oe] [PATCH v3] linphone: added recipe for v3.4.3

2011-06-22 Thread Guillaume BERAUDO
Hi all, What is the process for getting this patch merged? Regards, Guillaume Le Wed, 15 Jun 2011 11:02:21 +0200, Guillaume Beraudo a écrit : > Recipe support linphone built with video support and without GTK. > > * included IGEPv2 specific patch to get audio playback at 8KHz rate. > * inc

Re: [oe] [PATCH v3] linphone: added recipe for v3.4.3

2011-06-22 Thread Khem Raj
On 06/22/2011 04:16 AM, Guillaume BERAUDO wrote: Hi all, What is the process for getting this patch merged? send pull request for meta-oe Regards, Guillaume Le Wed, 15 Jun 2011 11:02:21 +0200, Guillaume Beraudo a écrit : Recipe support linphone built with video support and without GT

[oe] [PATCH v2] conf/bitbake: improve compression image handling and adapt linux-kexecboot.inc

2011-06-22 Thread Denis 'GNUtoo' Carikli
From: Otavio Salvador * add GZIP_COMPRESSION_LEVEL * add BZIP2_COMPRESSION_LEVEL * use xz-native to generate lzma images Kexecboot.inc needed to be adjusted in order to reflect the dependency change from lzma-native to xz-native The initramfs.cpio.gz were tested with linux-kexecboot on nok

Re: [oe] [PATCH v2] conf/bitbake: improve compression image handling and adapt linux-kexecboot.inc

2011-06-22 Thread Phil Blundell
On Wed, 2011-06-22 at 17:57 +0200, Denis 'GNUtoo' Carikli wrote: > @@ -150,6 +150,8 @@ QEMU_OPTIONS_armv7a = "-cpu cortex-a8" > # default compression levels > XZ_COMPRESSION_LEVEL ?= "-e -9" > LZMA_COMPRESSION_LEVEL ?= "-e -9" > +GZIP_COMPRESSION_LEVEL ?= "-9" > +BZIP2_COMPRESSION_LEVEL ?= "-9

[oe] [PATCH v3] conf/bitbake: improve compression image handling and adapt linux-kexecboot.inc

2011-06-22 Thread Denis 'GNUtoo' Carikli
From: Otavio Salvador We now use xz-native to generate lzma images Kexecboot.inc needed to be adjusted in order to reflect the dependency change from lzma-native to xz-native The initramfs.cpio.gz were tested with linux-kexecboot on nokia900. Signed-off-by: Otavio Salvador Signed-off-by: De

[oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Jeff Lance
* Modify to use arago MACHINE name for platforms * Add all Sitara platforms * Update SRCREV to 41 Signed-off-by: Jeff Lance --- recipes/ti/matrix-tui.inc| 12 +++- recipes/ti/matrix-tui_1.1.bb |4 ++-- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/recipes/ti/m

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22-06-11 21:02, Jeff Lance wrote: > * Modify to use arago MACHINE name for platforms This seems to use OE machine names, not arago ones. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Darwin) iD8DBQFOAlU7MkyGM64RGpERArNMAKCKDhoL6RlXDoer6iTxS

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Denys Dmytriyenko
On Wed, Jun 22, 2011 at 10:48:59PM +0200, Koen Kooi wrote: > On 22-06-11 21:02, Jeff Lance wrote: > > * Modify to use arago MACHINE name for platforms > > This seems to use OE machine names, not arago ones. Technically correct. But since Arago is just an OE distro, the machine names are the same

Re: [oe] [PATCH v3] conf/bitbake: improve compression image handling and adapt linux-kexecboot.inc

2011-06-22 Thread Andrea Adami
... -IMAGE_CMD_cpio.lzma = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio -o -H newc | lzma -c ${LZMA_COMPRESSION_LEVEL} >${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.lzma) ${EXTRA_IMAGECMD}" +IMAGE_CMD_cpio.lzma = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio -o -H new

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22-06-11 23:08, Denys Dmytriyenko wrote: > On Wed, Jun 22, 2011 at 10:48:59PM +0200, Koen Kooi wrote: >> On 22-06-11 21:02, Jeff Lance wrote: >>> * Modify to use arago MACHINE name for platforms >> >> This seems to use OE machine names, not arago on

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Denys Dmytriyenko
On Wed, Jun 22, 2011 at 02:02:01PM -0500, Jeff Lance wrote: > * Modify to use arago MACHINE name for platforms > * Add all Sitara platforms > * Update SRCREV to 41 > > Signed-off-by: Jeff Lance Jeff, See my coments below. > --- > recipes/ti/matrix-tui.inc| 12 +++- > recipes/ti

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Maupin, Chase
> -Original Message- > From: openembedded-devel-boun...@lists.openembedded.org > [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of > Denys Dmytriyenko > Sent: Wednesday, June 22, 2011 4:11 PM > To: openembedded-devel@lists.openembedded.org > Cc: Lance, Jeff > Subject:

[oe] libshiboken: Do not override `DEPENDS`

2011-06-22 Thread Paul Menzel
Date: Mon, 20 Jun 2011 18:01:13 +0200 This is a fix up for commit 1b9260e7 [1]. commit 1b9260e7a6c756d6938821f013a41c371065980a Author: Paul Menzel Date: Sun Jun 19 11:45:37 2011 +0200 shiboken: Add `apiextrator-native` to `DEPENDS` This commit does

[oe] libfso-qt-embedded: Do not override `DEPENDS`

2011-06-22 Thread Paul Menzel
Date: Wed, 22 Jun 2011 23:41:38 +0200 Using `=` instead of `+=` overrides the dependencies declared in `libfso-qt.inc`. Task configure therefore fails with the following errors. 1. `fso-specs` is not found. checking for SPECS... no configure: error: Package requirements (fso-sp

[oe] [meta-oe][PATCH] kernel.bbclass: Stage System.map with KERNEL_VERSION suffix

2011-06-22 Thread Tom Rini
Without this, images will fail now that kernel-abiversion is back. Signed-off-by: Tom Rini --- meta-oe/classes/kernel.bbclass |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass index 743ca68..ecd3313 100644 ---

Re: [oe] [PATCH 1/1] matrix-tui: Update to arago toolchain

2011-06-22 Thread Denys Dmytriyenko
On Wed, Jun 22, 2011 at 05:17:48PM -0500, Maupin, Chase wrote: > > > @@ -28,7 +21,7 @@ S = "${WORKDIR}/trunk" > > > #INITSCRIPT_PARAMS = "defaults 99" > > > > > > do_configure() { > > > - sed -i -e 's:PATH=${LINUX_DEVKIT_PATH}/arm-none-linux- > > gnueabi:PATH ?= ${LINUX_DEVKIT_PATH}/arm-none-linu

[oe] [PATCH] linux-omap: Disable UART sleep timeout to avoid serial port problems on wakeup.

2011-06-22 Thread Joel A Fernandes
linux-omap: Disable UART sleep timeout to avoid serial port problems on wakeup. Signed-off-by: Joel A Fernandes --- ...0046-ARM-OMAP-beagle-disable-uart-timeout.patch | 21 recipes/linux/linux-omap-psp_2.6.32.bb |1 + 2 files changed, 22 insertions(+),