Re: [OE-core] [poky] eggdbus build failure in master

2011-06-20 Thread Koen Kooi
Op 21 jun 2011, om 00:51 heeft Tom Rini het volgende geschreven: > On 06/20/2011 01:20 PM, Darren Hart wrote: >> I'm seeing a consistent eggdbus build failure that seems to be related >> to the perl-native relocation. I've cleanall'd autoconf and automake, >> native and target versions. The failu

Re: [OE-core] [PATCH 1/2] shadow-sysroot: new recipe for useradd.bbclass support

2011-06-20 Thread Koen Kooi
Op 21 jun 2011, om 02:29 heeft Scott Garman het volgende geschreven: > Packaging login.defs with base-passwd causes problems due to the > file being included in target package installs. Instead, this > shadow-sysroot recipe can be used by useradd.bbclass to put > login.defs into the target sysroo

Re: [OE-core] [PATCH 1/6] connman: Upgrade to version 0.75

2011-06-20 Thread Xu, Dongxiao
Hi Koen, > -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Koen Kooi > Sent: Friday, June 17, 2011 3:15 PM > To: Patches and discussions about the oe-core layer > Subject: Re: [OE-core] [

Re: [OE-core] [PATCH 0/6 V3] Share gcc work directories

2011-06-20 Thread Robert Yang
On 06/21/2011 05:01 AM, Khem Raj wrote: On Sun, Jun 19, 2011 at 6:48 PM, Robert Yang wrote: How does this interact with rm_work? The rm_work does not delete anything in work-shared, I think this is fine, otherwise the source can not be shared. it also limits the possibility of patching

[OE-core] [PATCH 2/2] base-passwd: remove login.defs references

2011-06-20 Thread Scott Garman
login.defs is owned by shadow-utils, and doesn't belong here. The shadow-sysroot recipe was created to handle the case this was originally added for (useradd.bbclass support). Signed-off-by: Scott Garman --- .../base-passwd/base-passwd-3.5.22/login.defs | 386 .../reci

[OE-core] [PATCH 1/2] shadow-sysroot: new recipe for useradd.bbclass support

2011-06-20 Thread Scott Garman
Packaging login.defs with base-passwd causes problems due to the file being included in target package installs. Instead, this shadow-sysroot recipe can be used by useradd.bbclass to put login.defs into the target sysroot without disturbing packages intended for target devices. Signed-off-by: Scot

[OE-core] [PATCH 0/2] login.defs move

2011-06-20 Thread Scott Garman
Hello, This pull request moves the login.defs file previously included with base-passwd into a more appropriate recipe, shadow-sysroot (I'm not married to that recipe name if someone can suggest something better). login.defs is part of shadow-utils and the copy included with base-passwd was conta

Re: [OE-core] [PATCH 1/3] qt4-tools-nativesdk: fix unpack failure due to missing g++.conf

2011-06-20 Thread Khem Raj
On 06/18/2011 11:56 AM, Paul Eggleton wrote: FILESPATHPKG was being used to in order to bring in linux.conf and g++.conf in this recipe, however this probably never worked since FILESPATHPKG always has the MACHINE appended to it and these are not machine-specific files. FILESPATHPKG is not supp

Re: [OE-core] RFD: Recipe variants, multilib and package handling

2011-06-20 Thread Tom Rini
On 06/13/2011 04:52 AM, Richard Purdie wrote: [snip] > Discussion > == > > I don't think option a) above is viable and the current plan implies > we'd do b) but its extremely ugly. I'm therefore tempted to look more > seriously at c). The bigger issues would appear to be: > > * It breaks

Re: [OE-core] [PATCH 0/6 V3] Share gcc work directories

2011-06-20 Thread Khem Raj
On Sun, Jun 19, 2011 at 6:48 PM, Robert Yang wrote: >> How does this interact with rm_work? >> > > The rm_work does not delete anything in work-shared, I think this is fine, > otherwise the source can not be shared. > it also limits the possibility of patching the sources differently if need be.

[OE-core] MINUTES: OE-TSC meeting 16-Jun-2011

2011-06-20 Thread Jeff Osier-Mixon
oe-tsc minutes, 16-Jun-2011 Attending: Koen, Khem, Tom, Richard, Mark Apologies: Stefan Notes: Jefro Agenda 01) choose a meeting chair Tom 02) topics khem: fallback source mirror for oe-core premirrors? who maintains no-longer-upstream mirror? kitchen-sink mirror is not a benefit for oe

Re: [OE-core] Linux 3.0-rcX (was Re: [RFC] qemu* kernel configs)

2011-06-20 Thread Anders Darander
On 20 jun 2011, at 21:19, "Bruce Ashfield" wrote: > On Mon, Jun 20, 2011 at 2:44 PM, Anders Darander > wrote: >> I'm currently just curious, as I've played a little with 3.0-rcX in my >> sparetime, and I've got a patch series in a local tree that at least >> builds 3.0-rcX (and also removes s

Re: [OE-core] Linux 3.0-rcX (was Re: [RFC] qemu* kernel configs)

2011-06-20 Thread Bruce Ashfield
On Mon, Jun 20, 2011 at 2:44 PM, Anders Darander wrote: > * Bruce Ashfield [110614 17:13]: >> Thanks for the breakdown, it definitely helps. Now that I've got some >> 3.0-rcX items done, and recipe renaming behind me, I'll have a look >> at these and see how best to incorporate the configs. > > J

[OE-core] Linux 3.0-rcX (was Re: [RFC] qemu* kernel configs)

2011-06-20 Thread Anders Darander
* Bruce Ashfield [110614 17:13]: > Thanks for the breakdown, it definitely helps. Now that I've got some > 3.0-rcX items done, and recipe renaming behind me, I'll have a look > at these and see how best to incorporate the configs. Just curious, what 3.0-rcX items have you done? Will you submit pa

[OE-core] [PATCH 2/2] sanity: implement network connectivity test

2011-06-20 Thread Joshua Lock
Sanity test to verify files can be fetched from the network using git, http and https fetchers point users at a page to help get set up in the case of a failure. Addresses [YOCTO #933] Signed-off-by: Joshua Lock --- meta/classes/sanity.bbclass | 34 ++ 1 files

[OE-core] [PATCH 1/2] sanity.bbclass: pass the data object to the less frequent test harnesses

2011-06-20 Thread Joshua Lock
By passing the data object to the less frequently run test harnesses (check_sanity_tmpdir_change(), check_sanity_sstate_dir_change() and check_sanity_version_change()) we can run tests against BitBake data here too. Signed-off-by: Joshua Lock --- meta/classes/sanity.bbclass | 16 --

[OE-core] [PATCH 0/2] sanity: implement network connectivity test v2

2011-06-20 Thread Joshua Lock
v2 of this change set based on feedback from Jeremy Puhlman. Changes since v1: * Allow checked URI's to be configurable. Note: I opted to leave the fallback hard coded. I can certainly remove this and add them toa configuration file somewhere if desired. If this is requested I'll probably remove t

Re: [OE-core] [PATCH 0/1] More LICENSE cleanup and additional common-licenses

2011-06-20 Thread Khem Raj
On Mon, Jun 20, 2011 at 9:00 AM, Flanagan, Elizabeth wrote: > Khem, > > Yes, this should correct it from complaining about not having that > license. GPL-3.0-with-GCC-exception is the correct text for > GCCRUNTIMELIBRARYEXCEPTION and this patch changes the license over to > that naming convention.

Re: [OE-core] [RFC PATCH 2/2] sanity: implement network connectivity test

2011-06-20 Thread Joshua Lock
On Sun, 2011-06-19 at 08:03 -0700, Jeremy Puhlman wrote: > > +test_uris= ["http://yoctoproject.org/about";, > > + > > "https://eula-downloads.yoctoproject.org/crownbay/crownbay-bernard-5.0.0";, > > + > > "git://git.yoctoproject.org/yocto-firewall-test;protocol=gi

Re: [OE-core] [PATCH 0/1] More LICENSE cleanup and additional common-licenses

2011-06-20 Thread Flanagan, Elizabeth
Khem, Yes, this should correct it from complaining about not having that license. GPL-3.0-with-GCC-exception is the correct text for GCCRUNTIMELIBRARYEXCEPTION and this patch changes the license over to that naming convention. The parser chokes on portions of fields like "GCC RUNTIME LIBRARY EXCEP

Re: [OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Koen Kooi
Op 20 jun 2011, om 15:55 heeft Mark Hatle het volgende geschreven: > On 6/20/11 8:31 AM, Koen Kooi wrote: >> >> Op 20 jun 2011, om 15:29 heeft Phil Blundell het volgende geschreven: >> >>> On Mon, 2011-06-20 at 08:23 -0500, Mark Hatle wrote: (The minor cases are primarily firmware loaded i

Re: [OE-core] OE Changelog for 2011-06-6 to 2011-06-13

2011-06-20 Thread Paul Eggleton
On Monday 20 June 2011 14:48:45 Cliff Brake wrote: > Can you describe how the bitbake and oe-core directories are > synchronized to content in the poky repo? Sure. Richard can correct me on this, but my understanding is at the moment he has a bunch of scripts that grab changes from the local clon

Re: [OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Mark Hatle
On 6/20/11 8:31 AM, Koen Kooi wrote: > > Op 20 jun 2011, om 15:29 heeft Phil Blundell het volgende geschreven: > >> On Mon, 2011-06-20 at 08:23 -0500, Mark Hatle wrote: >>> (The minor cases are primarily firmware loaded into off-board cards in PCI >>> chasis and such.. occasionally these firmware

Re: [OE-core] OE Changelog for 2011-06-6 to 2011-06-13

2011-06-20 Thread Cliff Brake
On Sat, Jun 18, 2011 at 3:34 PM, Chris Larson wrote: > Speaking of which, if we do that, might be a good idea to add bitbake > itself specifically, in case any of the changes to master will impact > the userbase. Done, thanks. Cliff -- = http://bec-systems.com _

Re: [OE-core] OE Changelog for 2011-06-6 to 2011-06-13

2011-06-20 Thread Cliff Brake
On Sat, Jun 18, 2011 at 1:40 PM, Paul Eggleton wrote: > On Saturday 18 June 2011 18:29:48 cliff.br...@gmail.com wrote: >> meta-yocto: git://git.yoctoproject.org/poky >>... >> >> Changelog for meta-yocto: >> > > This clearly contains more than ju

Re: [OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Koen Kooi
Op 20 jun 2011, om 15:29 heeft Phil Blundell het volgende geschreven: > On Mon, 2011-06-20 at 08:23 -0500, Mark Hatle wrote: >> (The minor cases are primarily firmware loaded into off-board cards in PCI >> chasis and such.. occasionally these firmware are ELF and of an architecture >> not >> the

Re: [OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Phil Blundell
On Mon, 2011-06-20 at 08:23 -0500, Mark Hatle wrote: > (The minor cases are primarily firmware loaded into off-board cards in PCI > chasis and such.. occasionally these firmware are ELF and of an architecture > not > the same as the host.. it's rare, but I have seen it before.) Shouldn't those f

Re: [OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Mark Hatle
On 6/20/11 2:41 AM, Koen Kooi wrote: > Hi, > > I was building qt this weekend and I noticed this one: > > WARNING: QA Issue: Architecture did not match (40 to 62) on > /work/armv7a-angstrom-linux-gnueabi/qt4-embedded-4.7.3-r26.1/packages-split/qt4-embedded-tools/usr/bin/moc > WARNING: QA Issue:

Re: [OE-core] [PATCH 1/1] sanity.bbclass: only run check_pseudo_wrapper for bitbake

2011-06-20 Thread Paul Eggleton
On Monday 20 June 2011 05:25:03 Dexuan Cui wrote: > This patch eliminates the warning "not been run using the bitbake > wrapper..." when we run bitbake-layers. > > Thanks Paul Eggleton for suggesting doing this in sanity.bbclass. > > Signed-off-by: Dexuan Cui > --- > meta/classes/sanity.bbclass

Re: [OE-core] BUG: intltool depends on libxml-parser-perl to be installed on host

2011-06-20 Thread Otavio Salvador
On Sun, Jun 19, 2011 at 22:28, Cui, Dexuan wrote: > And I guess you're using incremental building? Does building from scratch > work? No; I got it when rebuilding from scratch. into host system to it to build. >>> >>> Do the DEPENDS look right?  Maybe this needs the class for bringing >>>

Re: [OE-core] 'elfutils' needed to build kernel (perf), but not listed in DEPENDS

2011-06-20 Thread Richard Purdie
On Mon, 2011-06-20 at 13:09 +0200, Koen Kooi wrote: > Hi, > > I finally tracked down the heisenbug that was causing kernel builds to fail: > kernel*bbclass has no DEPENDS on elfutils, but it still tries to build perf. > > While grepping I also stumbled accross this gem: > > image-swab.bbclass:P

[OE-core] 'elfutils' needed to build kernel (perf), but not listed in DEPENDS

2011-06-20 Thread Koen Kooi
Hi, I finally tracked down the heisenbug that was causing kernel builds to fail: kernel*bbclass has no DEPENDS on elfutils, but it still tries to build perf. While grepping I also stumbled accross this gem: image-swab.bbclass:PARALLEL_MAKE_pn-elfutils = "" Parallel make fails only when using s

[OE-core] [PATCH 0/1]distrodata.bbclass:Get the extend recipe's information from nonbbextended recipe

2011-06-20 Thread Mei Lei
Hi Saul, This patch will fix the issue that "native" and "nativesdk" and some other extend recipes colud not get some information(like matainer information or laskchecktime). Please review it. Thanks, Lei The following changes since commit 2163461ec94528ecf046a04edc5db3d2dd3a6b8

[OE-core] [PATCH 1/1] distrodata.bbclass: Get the extend recipe's information from non bbextended recipe

2011-06-20 Thread Mei Lei
This patch will check whether the recipe is an extened recipe, if yes, some informaiton couldn't be got, so collect those information(like maintainer information or lastcheckversion) from non bbextended recipe. Signed-off-by: Mei Lei --- meta/classes/distrodata.bbclass | 46 +

[OE-core] [PATCH] glib-2.0 2.28.x: update to 2.28.8

2011-06-20 Thread Koen Kooi
Signed-off-by: Koen Kooi --- ...003-gatomic-proper-pointer-get-cast.patch.patch | 28 .../0005-glib-mkenums-interpreter.patch.patch | 25 + meta/recipes-core/glib-2.0/glib-2.0_2.28.6.bb | 18 meta/recipes-core/glib-2.0/glib-2.0_2.2

[OE-core] Architecture mismatch QA check not fatal?

2011-06-20 Thread Koen Kooi
Hi, I was building qt this weekend and I noticed this one: WARNING: QA Issue: Architecture did not match (40 to 62) on /work/armv7a-angstrom-linux-gnueabi/qt4-embedded-4.7.3-r26.1/packages-split/qt4-embedded-tools/usr/bin/moc WARNING: QA Issue: Architecture did not match (40 to 62) on /work/arm