[oe] [PATCH 4/4] Renamed prefix_native, bindir_native, etc using hyphens

2010-03-17 Thread Douglas Royds
- Avoids clashing with the machine override when MACHINE=native - bindir_cross similarly renamed for consistency Signed-off-by: Douglas Royds --- classes/cross-canadian.bbclass |2 +- classes/native.bbclass |4 +- classes/packaged-staging.bbclass

Re: [oe] [oe-commits] Paul Eggleton : opkg: update to include upstream libopkg C++ header fixes

2010-03-17 Thread Tom Rini
On Wed, 2010-03-17 at 23:34 +, git version control wrote: > Module: openembedded.git > Branch: org.openembedded.dev > Commit: c914d3308df4025d39d4fde4de198b8c392d6a41 > URL: > http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=c914d3308df4025d39d4fde4de198b8c392d6a41 > > Author:

Re: [oe] [PATCH 2/2] Renamed prefix_native, bindir_native, etc using camelCaps

2010-03-17 Thread Holger Hans Peter Freyther
On Thursday 18 March 2010 02:31:11 Douglas Royds wrote: > - Avoids clashing with the machine override when MACHINE=native > - bindir_cross similarly renamed for consistency Thank you for that much work. I think we established the usage of '-' instead of '_' to avoid clashes with the overr

[oe] [PATCH 2/2] Renamed prefix_native, bindir_native, etc using camelCaps

2010-03-17 Thread Douglas Royds
- Avoids clashing with the machine override when MACHINE=native - bindir_cross similarly renamed for consistency Signed-off-by: Douglas Royds --- classes/cross-canadian.bbclass |2 +- classes/native.bbclass |4 +- classes/packaged-staging.bbclass

Re: [oe] 'bitbake opie-image' problem

2010-03-17 Thread Paul Eggleton
Hi Jaison, If you update your git tree, opie-packagemanager should now build correctly. I didn't have a chance to test if it actually worked at runtime though, please let me know (privately) if it does or doesn't. Cheers, Paul ___ Openembedded-devel

Re: [oe] [PATCH] libunwind: new recipe

2010-03-17 Thread Khem Raj
On Wed, Mar 17, 2010 at 1:22 PM, Steffen Sledz wrote: > a portable and efficient C programming interface (API) to determine the > call-chain of a program > > Signed-off-by: Steffen Sledz > --- >  recipes/libunwind/libunwind.inc     |   13 + >  recipes/libunwind/libunwind_0.99.bb |    

Re: [oe] [PATCH 1/7] device_table_add-xsa: add dev nodes for system ace

2010-03-17 Thread Khem Raj
On Wed, Mar 17, 2010 at 3:00 PM, Adrian Alonso wrote: > Hi, > > I tested on my previous build and everything is ok (tested console-image); > > Building from scratch arise a build error with "gcc-cross_4.3.3.bb failed" > I'm going to track the changes in gcc-cross recipe to find out why is > fallin

[oe] [PATCH] grip: Upgrade to 3.3.1

2010-03-17 Thread Scott Garman
* Latest development version (should be stable, same version is in Debian Stable) Signed-off-by: Scott Garman --- recipes/grip/grip-3.3.1/no-host-includes.patch | 10 ++ recipes/grip/grip_3.3.1.bb | 18 ++ 2 files changed, 28 insertions(+), 0 del

Re: [oe] [PATCH 1/7] device_table_add-xsa: add dev nodes for system ace

2010-03-17 Thread Adrian Alonso
Hi, I tested on my previous build and everything is ok (tested console-image); Building from scratch arise a build error with "gcc-cross_4.3.3.bb failed" I'm going to track the changes in gcc-cross recipe to find out why is falling The complete error log can be found at [1]. [1] http://pastebin.

Re: [oe] openembedded to cross compile QT4 to FriendlyArm mini2440

2010-03-17 Thread Marc Reilly
> a) dowload bitbake from: > http://download.berlios.de/bitbake/bitbake-1.8.8.tar.gz Try using a later version, eg 1.8.18 (See "Version Information" http://wiki.openembedded.net/index.php/BitBake_%28user%29 ) > Traceback (most recent call last): > File "/usr/bin/bitbake", line 143, in >

[oe] [PATCH] libunwind: new recipe

2010-03-17 Thread Steffen Sledz
a portable and efficient C programming interface (API) to determine the call-chain of a program Signed-off-by: Steffen Sledz --- recipes/libunwind/libunwind.inc | 13 + recipes/libunwind/libunwind_0.99.bb |5 + 2 files changed, 18 insertions(+), 0 deletions(-) create m

Re: [oe] [PATCH] packaged-staging.bbclass: use 'os.unlink()' instead of spawning 'rm'

2010-03-17 Thread Tom Rini
On Wed, 2010-03-17 at 10:48 -0700, Tom Rini wrote: > On Wed, 2010-03-17 at 18:39 +0100, Michael 'Mickey' Lauer wrote: > > > > +def _package_unlink (f): > > > > +import os > > > > +try: > > > > + os.unlink(f) > > > > + return True > > > > +except: > > > > + return False

Re: [oe] [PATCH] packaged-staging.bbclass: use 'os.unlink()' instead of spawning 'rm'

2010-03-17 Thread Tom Rini
On Wed, 2010-03-17 at 18:39 +0100, Michael 'Mickey' Lauer wrote: > > > +def _package_unlink (f): > > > +import os > > > +try: > > > + os.unlink(f) > > > + return True > > > +except: > > > + return False > > > + > > While it won't hurt in this particular case, a catch-all 'except' > usu

Re: [oe] [PATCH] packaged-staging.bbclass: use 'os.unlink()' instead of spawning 'rm'

2010-03-17 Thread Michael 'Mickey' Lauer
> > +def _package_unlink (f): > > +import os > > +try: > > + os.unlink(f) > > + return True > > +except: > > + return False > > + While it won't hurt in this particular case, a catch-all 'except' usually is frowned upon. Better catch specific errors and let other errors be handle

[oe] [PATCH] ffmpeg: moved to native staging

2010-03-17 Thread Enrico Scholz
From: Enrico Scholz Old .inc file listed every single header which was to be staged. This causes problems when upgrading to recent 0.5.1 version or when using older versions because headers might not exist there resp. new ones need to be installed. This patch converts the .inc file to new nativ

[oe] openembedded to cross compile QT4 to FriendlyArm mini2440

2010-03-17 Thread Skan
Hello, I m using ubuntu9.10 with vmware to cross compile a Qt4 application to Qtopia for the FriendlyArm mini2440. I 've done this following a tutorial - -- a) dowload bitbake from: http://download.berlios.de/bitbake

Re: [oe] [PATCH] packaged-staging.bbclass: use 'os.unlink()' instead of spawning 'rm'

2010-03-17 Thread Tom Rini
On Tue, 2010-03-16 at 13:23 +0100, Enrico Scholz wrote: > Doing a '-c clean' operation on a staged package with very much files > (e.g. glibc) took several minutes because > > * every removed file was reported > * an 'rm' instance was spawned for every file > > This patch uses the native 'os.unli

Re: [oe] root login over serial port using shadow

2010-03-17 Thread Eric Bénard
Hi Marcin, Le 17/03/2010 15:49, Marcin Juszkiewicz a écrit : You need this commit as it moves login to /bin/ dir: commit b3045d2a282ef408f599d9a722df61e85ef636b5 Author: Koen Kooi Date: Fri Mar 5 11:33:36 2010 +0100 shadow: use u-a on binaries that conflict with util-linux-ng thanks, m

Re: [oe] [PATCH v4] Add Freescale mpc8641_hpcn demo board

2010-03-17 Thread Tom Rini
On Wed, 2010-03-17 at 16:26 +, Martyn Welch wrote: > A demo board from Freescale, based on the MPC8641D Freescale SOC. > --- Acked-by: Tom Rini > > v4: Modified to apply cleanly after xilinx patch > > v3: Modified tuning for e600 > > v2: Added tuning file for e600 as requested > > co

[oe] [PATCH v4] Add Freescale mpc8641_hpcn demo board

2010-03-17 Thread Martyn Welch
A demo board from Freescale, based on the MPC8641D Freescale SOC. --- v4: Modified to apply cleanly after xilinx patch v3: Modified tuning for e600 v2: Added tuning file for e600 as requested conf/machine/include/tune-ppce600.inc |4 conf/machine/mpc8641-hpcn.conf

Re: [oe] [PATCH v3] Add Freescale mpc8641_hpcn demo board

2010-03-17 Thread Tom Rini
On Wed, 2010-03-17 at 08:50 +, Martyn Welch wrote: > A demo board from Freescale, based on the MPC8641D Freescale SOC. Acked-by: Tom Rini > --- > > v3: Modified tuning for e600 > > v2: Added tuning file for e600 as requested > > conf/machine/include/tune-ppce600.inc |4

Re: [oe] [PATCH] grip: Upgrade to 3.3.1

2010-03-17 Thread Scott Garman
On 03/17/2010 12:13 AM, Holger Hans Peter Freyther wrote: On Wednesday 17 March 2010 07:51:01 Scott Garman wrote: * Addresses CVE-2005-0706 Signed-off-by: Scott Garman I was upgrading grip to the latest stable version yesterday, I have no issue if you want to upgrade to the latest devel versi

[oe] do_unpack

2010-03-17 Thread Chris Larson
Greetings all, The other day I threw together a proof of concept of do_unpack using the python modules for the archives.. sadly, the performance is such that we should likely stick to our current method, though it results in a lot of extra dependencies. See http://github.com/kergoth/OpenEmbedded/

Re: [oe] root login over serial port using shadow

2010-03-17 Thread Marcin Juszkiewicz
Dnia środa, 17 marca 2010 o 14:37:25 Eric Bénard napisał(a): > Hi, > > for the followinf, the distro in Angstrom. > > When using shadow as the IMAGE_LOGIN_MANAGER, login doesn't work as root > over the serial port if a password is set for root and whatever the > setting done under securretty or /

[oe] root login over serial port using shadow

2010-03-17 Thread Eric Bénard
Hi, for the followinf, the distro in Angstrom. When using shadow as the IMAGE_LOGIN_MANAGER, login doesn't work as root over the serial port if a password is set for root and whatever the setting done under securretty or /etc/security or /etc/login.defs The problem is the following : inittab

[oe] [PATCH] Make gnutls depend on gtk-doc.

2010-03-17 Thread Antonio Ospite
building gnutls_2.8.5.bb fails in do_configure with these messages: [..] | automake: unknown warning category `cross' | doc/Makefile.am:27: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL | gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL | doc/reference/Makefile.am:135: `g

Re: [oe] bitbake -b with BBCLASSEXTENDed recipes

2010-03-17 Thread Enrico Scholz
Martin Jansa writes: >> > Is it possible to implement some support for old functionality like >> > bitbake -c clean -b path.to.recipe.with.BBCLASSEXTEND.bb >> > ... >> > It's really hard to implement something like prefixing -b path with >> > "virtual:native:" >> >> Bitbake must be patched for t

Re: [oe] [PATCH] packaged-staging.bbclass: use 'os.unlink()' instead of spawning 'rm'

2010-03-17 Thread Enrico Scholz
Tom Rini writes: > On Tue, 2010-03-16 at 13:23 +0100, Enrico Scholz wrote: >> Doing a '-c clean' operation on a staged package with very much files >> (e.g. glibc) took several minutes because >> >> * every removed file was reported >> * an 'rm' instance was spawned for every file >> >> This pa

Re: [oe] [PATCH] Add pxa270 based Regulus Board

2010-03-17 Thread Ruud Althuizen
Hello balakrishnan, On Tue 16 Mar 2010 05:42 PM, balakrishnan wrote: > Regulus is pxa270 based machine, attached patches need to be reviewed and > added to oe tree. This patches are used to create u-boot, kernel and > demo-image for regulus machine. You've included vim swapfiles in the patch, plea

Re: [oe] bitbake -b with BBCLASSEXTENDed recipes

2010-03-17 Thread Martin Jansa
On Mon, Mar 15, 2010 at 05:48:52PM +0100, Enrico Scholz wrote: > Martin Jansa writes: > > > Is it possible to implement some support for old functionality like > > bitbake -c clean -b path.to.recipe.with.BBCLASSEXTEND.bb > > ... > > It's really hard to implement something like prefixing -b path w

[oe] [PATCH v3] Add Freescale mpc8641_hpcn demo board

2010-03-17 Thread Martyn Welch
A demo board from Freescale, based on the MPC8641D Freescale SOC. --- v3: Modified tuning for e600 v2: Added tuning file for e600 as requested conf/machine/include/tune-ppce600.inc |4 conf/machine/mpc8641-hpcn.conf| 26 recipes/linux/linux-2.6.33/mpc86

Re: [oe] gnome-mplayer fails to build due to no libstdc++.so.6 instaging (available in cross)

2010-03-17 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 15-03-10 23:00, Ulf Samuelsson wrote: > I get the following error message when I include gnome-mplayer in > an image derived from x11-gpe-image. > > > /arm-angstrom-linux-gnueabi/bin/ld: warning: libstdc++.so.6, needed by > /build/tmp/staging/armv

Re: [oe] [PATCH] grip: Upgrade to 3.3.1

2010-03-17 Thread Holger Hans Peter Freyther
On Wednesday 17 March 2010 07:51:01 Scott Garman wrote: > * Addresses CVE-2005-0706 > > Signed-off-by: Scott Garman I was upgrading grip to the latest stable version yesterday, I have no issue if you want to upgrade to the latest devel version, even debian is shipping that... I have some comme

Re: [oe] [PATCH 1/1] libstdc++.bb: copy libstdc++.so* to rootfs

2010-03-17 Thread Holger Hans Peter Freyther
On Wednesday 17 March 2010 07:31:48 Ulf Samuelsson wrote: > > So I would nack this change and instead figure out which C library is > > exposing C++ symbols. > > When building gnome-mplayer, it complains that "libmusicbrainz" > needs the symbols from libstdc++.so.6. Which symbols? Please mail u

Re: [oe] [PATCH] grip: Upgrade to 3.3.1

2010-03-17 Thread Scott Garman
On 03/16/2010 11:51 PM, Scott Garman wrote: * Addresses CVE-2005-0706 Just for further clarification: if you look up this CVE directly, it states that grip v3.1.2 is affected. Although if you look at this FreeBSD advisory (which Holger referenced in his earlier email), it states that grip <

Re: [oe] [PATCH 1/1] alsa-state: Add support for at91 boards

2010-03-17 Thread Ulf Samuelsson
Ulf Samuelsson skrev: > Koen Kooi skrev: >> On 15-03-10 07:55, Ulf Samuelsson wrote: >>> Marcin Juszkiewicz skrev: Dnia poniedziaBek, 15 marca 2010 o 00:29:13 Ulf Samuelsson napisaB(a): > Add ALSA configuration files for at91 boards Add bump PR of alsa-state and I will push such versi