Re: [oe] a38e7ff2810e55455c7ff7b01d4882344b420e18 breaks build and packaged-staging, among other things

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 26-04-10 00:35, Michael 'Mickey' Lauer wrote: > Am Sonntag, den 25.04.2010, 21:38 +0200 schrieb Koen Kooi: >> bitbake something-depending-on-vala-stuf >> >> is now broken because bitbake will run >> something-depending-on-vala-stuf.do_configure and

Re: [oe] The coreutils-native race...

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 25-04-10 21:57, Tom Rini wrote: > On Sun, 2010-04-25 at 21:28 +0200, Koen Kooi wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> On 25-04-10 19:48, Tom Rini wrote: >>> Hey all. I thought I would try and explain what Chris has been up

Re: [oe] a38e7ff2810e55455c7ff7b01d4882344b420e18 breaks build and packaged-staging, among other things

2010-04-25 Thread Michael 'Mickey' Lauer
Am Sonntag, den 25.04.2010, 21:38 +0200 schrieb Koen Kooi: > bitbake something-depending-on-vala-stuf > > is now broken because bitbake will run > something-depending-on-vala-stuf.do_configure and compile after > vala-stuff.do_populate_staging and the vapi files will NOT be there. Can you give a

Re: [oe] The coreutils-native race...

2010-04-25 Thread Yuri Bushmelev
В сообщении от Понедельник 26 апреля 2010 Roman I Khimov написал(a): > В сообщении от Воскресенье 25 апреля 2010 21:48:59 автор Tom Rini написал: > I guess, if we can solve it with python, it's the best option. If not, > then we can try to remove coreutils-native from base dependencies and > see h

Re: [oe] The coreutils-native race...

2010-04-25 Thread Tom Rini
On Mon, 2010-04-26 at 00:42 +0400, Roman I Khimov wrote: > В сообщении от Воскресенье 25 апреля 2010 21:48:59 автор Tom Rini написал: > > Right now, with a big enough BB_NUM_THREADS we can get into a race where > > coreutils-native is installing programs and elsewhere we are in a > > do_fetch and e

Re: [oe] The coreutils-native race...

2010-04-25 Thread Roman I Khimov
В сообщении от Воскресенье 25 апреля 2010 21:48:59 автор Tom Rini написал: > Right now, with a big enough BB_NUM_THREADS we can get into a race where > coreutils-native is installing programs and elsewhere we are in a > do_fetch and either trying to use 'cp' or 'md5sum', and blam, we try and > invo

Re: [oe] The coreutils-native race...

2010-04-25 Thread Tom Rini
On Sun, 2010-04-25 at 21:28 +0200, Koen Kooi wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 25-04-10 19:48, Tom Rini wrote: > > Hey all. I thought I would try and explain what Chris has been up to > > with at least some of the base.bbclass changes (the ones related to > > md5sum

Re: [oe] a38e7ff2810e55455c7ff7b01d4882344b420e18 breaks build and packaged-staging, among other things

2010-04-25 Thread Graeme Gregory
Im sorry I dont know vala at all, but should those VAPI files be put into -dev packages? basicall add a do_install_append and a FILES= Doing so would make them appear automagically in staging anyway. Graeme On Sun, Apr 25, 2010 at 09:38:24PM +0200, Koen Kooi wrote: > -BEGIN PGP SIGNED MESSAG

[oe] a38e7ff2810e55455c7ff7b01d4882344b420e18 breaks build and packaged-staging, among other things

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Looking at http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=a38e7ff2810e55455c7ff7b01d4882344b420e18 I see: - -do_stage_append() { +vala_do_stage_vapi() { install -d ${STAGING_DATADIR_NATIVE}/vala/vapi for VALAFILE in

Re: [oe] The coreutils-native race...

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 25-04-10 19:48, Tom Rini wrote: > Hey all. I thought I would try and explain what Chris has been up to > with at least some of the base.bbclass changes (the ones related to > md5sum and cp). > > Right now, with a big enough BB_NUM_THREADS we can g

Re: [oe] [PATCH 3/4] mplayer_svn : fix compilation problem

2010-04-25 Thread Eric Bénard
Le 25/04/2010 16:24, GNUtoo a écrit : On Sun, 2010-04-25 at 15:39 +0200, GNUtoo wrote: On Sat, 2010-04-24 at 15:14 +0200, Eric Benard wrote: this patch fix the following error (met for a x86 target) : it also fails to load libXss.so.1 I finally found out the package generating libXss.so.1: it

[oe] [PATCH v2] kernel.class : fix for recent kernel on x86

2010-04-25 Thread Eric Benard
- bitbake linux for a x86 machine fails with the following message : cp: target `.../image/kernel//include/asm-x86/' is not a directory so create $kerneldir/include/asm-x86 before trying to copy something in this directory. - make headers_install fails because of missing directories in include (t

Re: [oe] The coreutils-native race...

2010-04-25 Thread Phil Blundell
On Sun, 2010-04-25 at 10:48 -0700, Tom Rini wrote: > Hey all. I thought I would try and explain what Chris has been up to > There's a few ways out of this: > 1) Don't rely on 'cp' and 'md5sum' anymore but use python for it. > 2) Make an oe_cp and oe_md5sum to go with oe_sha256sum > 3) IIRC, the bi

[oe] The coreutils-native race...

2010-04-25 Thread Tom Rini
Hey all. I thought I would try and explain what Chris has been up to with at least some of the base.bbclass changes (the ones related to md5sum and cp). Right now, with a big enough BB_NUM_THREADS we can get into a race where coreutils-native is installing programs and elsewhere we are in a do_fe

Re: [oe] [PATCH 3/4] mplayer_svn : fix compilation problem

2010-04-25 Thread GNUtoo
I also had to bitbake and install libxxf86dga_1.1.1.bb. Now it works. Thanks ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

Re: [oe] [PATCH 3/4] mplayer_svn : fix compilation problem

2010-04-25 Thread GNUtoo
On Sun, 2010-04-25 at 15:39 +0200, GNUtoo wrote: > On Sat, 2010-04-24 at 15:14 +0200, Eric Benard wrote: > > this patch fix the following error (met for a x86 target) : > it also fails to load libXss.so.1 I finally found out the package generating libXss.so.1: it's recipes/xorg-lib/libxscrnsaver_1.

Re: [oe] [PATCH 3/4] mplayer_svn : fix compilation problem

2010-04-25 Thread GNUtoo
On Sat, 2010-04-24 at 15:14 +0200, Eric Benard wrote: > this patch fix the following error (met for a x86 target) : it also fails to load libXss.so.1 Thanks a lot for the patch by the way. Denis. ___ Openembedded-devel mailing list Openembedded-devel

Re: [oe] [PATCH 3/4] mplayer_svn : fix compilation problem

2010-04-25 Thread GNUtoo
On Sat, 2010-04-24 at 15:14 +0200, Eric Benard wrote: > this patch fix the following error (met for a x86 target) : > > | loader/module.o: In function `MODULE_GetProcAddress': > | module.c:(.text+0x125): undefined reference to `report_entry' > | module.c:(.text+0x12f): undefined reference to `repo

Re: [oe] problem with modifications to base.bbclass

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I was about to send a mail saying "it looks better, but libpam-base-files fails", but you hit the error sooner than me :) regards, Koen On 25-04-10 01:54, David Hemmo wrote: > Thank you Chris, things are going further. > > Unfortunately something

Re: [oe] [RFC][PATCH] Topas910 kernel upgrade to 2.6.32 and initial u-boot support

2010-04-25 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 25-04-10 00:16, Matthias Günther wrote: > Hi oe list. > > I've attached patches for the topas910 machine. Please let me know your > comments. They look good, although I'm slightly worred about using the github patch feature with checkums. If gith