Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Koen Kooi
Op 27 mei 2011, om 01:33 heeft Richard Purdie het volgende geschreven: > On Thu, 2011-05-26 at 13:41 -0700, nitin.a.kam...@intel.com wrote: > >> --- >> meta/recipes-graphics/mesa/mesa-xlib_7.10.2.bb |3 +++ >> 1 files changed, 3 insertions(+), 0 deletions(-) >> >> diff --git a/meta/recipes-g

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Richard Purdie
On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote: > On 05/26/2011 04:24 PM, Richard Purdie wrote: > > On Thu, 2011-05-26 at 14:12 -0700, Darren Hart wrote: > >> Note: I used bb.note() instead of bb.debug() to ensure the message at least > >> makes it to the console. From what I could gath

Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 09:14 +0200, Koen Kooi wrote: > Op 27 mei 2011, om 01:33 heeft Richard Purdie het volgende geschreven: > > > On Thu, 2011-05-26 at 13:41 -0700, nitin.a.kam...@intel.com wrote: > > I've suggested something like: > > > > TARGET_CC_ARCH_arm_pn-mesa-xlib := > > "${@'${TARGET_CC

[OE-core] [PATCH] libcap: add native BBCLASSEXTEND to fix gnutls-native after ffc32d6436bcd11bd9a431affb9d2508fdb3992e

2011-05-27 Thread Martin Jansa
Signed-off-by: Martin Jansa --- meta/recipes-support/libcap/libcap.inc |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/meta/recipes-support/libcap/libcap.inc b/meta/recipes-support/libcap/libcap.inc index 292fa78..1b4c0bc 100644 --- a/meta/recipes-support/libcap/libca

Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 09:54 +0100, Richard Purdie wrote: > Good question. I guess you're just changing the gcc version but using > the rest of that file? > > This is a tricky problem as we do want to include that for anyone using > gcc 4.6 as otherwise things break but as you say, can't impact som

[OE-core] [PATCH] avahi: enable systemd support, but package systemd files seperately

2011-05-27 Thread Koen Kooi
Systemd support in avahi only affects 'make install', so no changes for sysvinit based systems Signed-off-by: Koen Kooi --- meta/recipes-connectivity/avahi/avahi.inc |9 +++-- meta/recipes-connectivity/avahi/avahi_0.6.30.bb |2 +- 2 files changed, 8 insertions(+), 3 deletions(

Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-27 Thread Phil Blundell
On Thu, 2011-05-26 at 20:16 -0700, Darren Hart wrote: > So by changing from split() to split(":") we change the behavior of > split when operating on empty strings, requiring us to special case the > output. Rather obnoxious wouldn't you say? Yes, that is an annoying misfeature. The other related

Re: [OE-core] [PATCH] avahi: enable systemd support, but package systemd files seperately

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 11:32 +0200, Koen Kooi wrote: > Systemd support in avahi only affects 'make install', so no changes for > sysvinit based systems > > Signed-off-by: Koen Kooi > --- > meta/recipes-connectivity/avahi/avahi.inc |9 +++-- > meta/recipes-connectivity/avahi/avahi_0

Re: [OE-core] [PATCH] libcap: add native BBCLASSEXTEND to fix gnutls-native after ffc32d6436bcd11bd9a431affb9d2508fdb3992e

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 10:59 +0200, Martin Jansa wrote: > Signed-off-by: Martin Jansa > --- > meta/recipes-support/libcap/libcap.inc |4 > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/meta/recipes-support/libcap/libcap.inc > b/meta/recipes-support/libcap/libcap.inc

[OE-core] [PATCH] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Koen Kooi
This fixes dbus usage in non-sysV init systems. Signed-off-by: Koen Kooi --- meta/recipes-core/dbus/dbus.inc |4 meta/recipes-core/dbus/dbus_1.4.1.bb |2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/d

Re: [OE-core] [PATCH] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Koen Kooi
For the attentive reader, the sysV script still has the check for the dir, so it will get created if it fails for some reason in the postinst. Cleaning up the sysV cript is a bigger task for another day. Op 27 mei 2011, om 15:40 heeft Koen Kooi het volgende geschreven: > This fixes dbus usage i

Re: [OE-core] [PATCH] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 15:40 +0200, Koen Kooi wrote: > + mkdir -p $UUIDDIR || true Why "|| true"? If this creation fails then the following chown will surely fail as well, except with a different and less illuminating error message. > + chown "$MESSAGEUSER"."$MESSAGEUSER" "$UUIDDIR" The

Re: [OE-core] [PATCH] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Koen Kooi
Op 27 mei 2011, om 15:47 heeft Phil Blundell het volgende geschreven: > On Fri, 2011-05-27 at 15:40 +0200, Koen Kooi wrote: >> +mkdir -p $UUIDDIR || true > > Why "|| true"? If this creation fails then the following chown will > surely fail as well, except with a different and less illuminat

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Darren Hart
On 05/27/2011 01:40 AM, Richard Purdie wrote: > On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote: >> On 05/26/2011 04:24 PM, Richard Purdie wrote: >>> On Thu, 2011-05-26 at 14:12 -0700, Darren Hart wrote: Note: I used bb.note() instead of bb.debug() to ensure the message at least

Re: [OE-core] [pull-oe-uboot 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Phil Blundell
On Thu, 2011-05-26 at 10:46 -0700, Darren Hart wrote: > Right, it just starts to look rather ugly in the recipe, especially for > BSPs supporting more than just a couple of machines. I also think that > having to use machine overrides is an indicator that the mechanism is > not working for the purp

[OE-core] [PATCH v2] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Koen Kooi
This fixes dbus usage in non-sysV init systems. Volatiles aren't needed in systemd land, since /run is tmpfs and the dbus units take care of all this. Signed-off-by: Koen Kooi --- Changes since v1: * addressed pbs concerns about the || true and chgrp dots * check for volatiles

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 06:56 -0700, Darren Hart wrote: > > On 05/27/2011 01:40 AM, Richard Purdie wrote: > > On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote: > >> On 05/26/2011 04:24 PM, Richard Purdie wrote: > >>> On Thu, 2011-05-26 at 14:12 -0700, Darren Hart wrote: > Note: I used bb.no

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 15:46 +0100, Richard Purdie wrote: > On Fri, 2011-05-27 at 06:56 -0700, Darren Hart wrote: > > > > On 05/27/2011 01:40 AM, Richard Purdie wrote: > > > On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote: > > >> On 05/26/2011 04:24 PM, Richard Purdie wrote: > > >>> On Thu, 20

Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 00:33 +0100, Richard Purdie wrote: > I talked about this on IRC but simply put, no way. > > The problem is: > > a) Arm specific > b) determined now to be armv7 specific > c) gcc version specific > > and the fix should reflect this. >From a fairly superficial look at the cr

Re: [OE-core] [pull-oe-uboot 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Darren Hart
On 05/27/2011 07:04 AM, Phil Blundell wrote: > On Thu, 2011-05-26 at 10:46 -0700, Darren Hart wrote: >> Right, it just starts to look rather ugly in the recipe, especially for >> BSPs supporting more than just a couple of machines. I also think that >> having to use machine overrides is an indica

Re: [OE-core] [pull-oe-uboot 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 08:06 -0700, Darren Hart wrote: > In fact... why are the parens used at all? No good reason. I would guess that we started off with something like COMPATIBLE_MACHINE = "pdp11/(23|34)" in a recipe, and that got somehow generalised to wrapping all the alternatives in parens

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Darren Hart
On 05/27/2011 07:48 AM, Richard Purdie wrote: > On Fri, 2011-05-27 at 15:46 +0100, Richard Purdie wrote: >> On Fri, 2011-05-27 at 06:56 -0700, Darren Hart wrote: >>> >>> On 05/27/2011 01:40 AM, Richard Purdie wrote: On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote: > On 05/26/2011 04

Re: [OE-core] [PATCH] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 15:55 +0200, Koen Kooi wrote: > I matched the postinst for these additionsm, but I can cleanup the complete > postinst if you wish. I see you did that already in your v2 patch. Thanks. p. ___ Openembedded-core mailing list Ope

Re: [OE-core] [PATCH v2] dbus 1.4.1: create UUIDDIR in postinst

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 16:41 +0200, Koen Kooi wrote: > This fixes dbus usage in non-sysV init systems. Volatiles aren't needed in > systemd land, since /run is tmpfs and the dbus units take care of all this. > > Signed-off-by: Koen Kooi > --- > > Changes since v1: > > * addressed pbs conc

Re: [OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 08:13 -0700, Darren Hart wrote: > OK, I haven't completely lost it then :-) In that case, are you looking > for any additional changes/dialog/acks here? If not, the version with > bb.debug() is now in the contrib branch: > > git://git.pokylinux.org/poky-contrib dvhart/oe/u-

Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-27 Thread Richard Purdie
On Thu, 2011-05-26 at 20:16 -0700, Darren Hart wrote: > > On 05/26/2011 04:46 PM, Richard Purdie wrote: > > On Wed, 2011-05-25 at 16:05 -0700, Darren Hart wrote: > >> Fixes [YOCTO 1102] > >> > >> Path variables are typically : delimited. White space is allowed in paths, > >> so > >> is not a good

Re: [OE-core] [PATCH 0/3] Fix uclibc build in thumb mode

2011-05-27 Thread Richard Purdie
On Thu, 2011-05-26 at 22:48 -0700, Khem Raj wrote: > slugos uses uclibc in thumb mode. These patches fix the build of uclibc in > thumb mode > and additionally fixes shared-mime-info which failed to build with -j4 > > The following changes since commit 31b3d1f9aa6fa1640874f7da9cce37f4aa13eab1: >

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Richard Purdie
Hi Lianhao, On Fri, 2011-05-27 at 14:31 +0800, Lianhao Lu wrote: > git://git.pokylinux.org/poky-contrib llu/PR-service > http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=llu/PR-service > > Lianhao Lu (11): > Added the PR service. > conf/bitbake.conf: Added variables for PR service. >

Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Kamble, Nitin A
Phil, With your patch gcc 4.6.0 is not hitting the internal compiler error for this particular case. I could not do runtime testing as I don't have the hw. IMO This is a good patch to send to gcc upstream. Thanks, Nitin > -Original Message- > From: openembedded-core-boun...@lists.ope

Re: [OE-core] Sad story about Shared State

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 07:39 +0200, Martin Jansa wrote: > On Fri, May 27, 2011 at 12:13:35AM +0100, Richard Purdie wrote: > I meant something like switch back to something like pstage was or > disable both (IIRC I had strange error on many places without sstate > inherited by distro). > > > Which

Re: [OE-core] [PATCH 0/5] license.bbclass parsing changes and common-license additions

2011-05-27 Thread Richard Purdie
On Wed, 2011-05-25 at 16:30 -0700, Elizabeth Flanagan wrote: > This pull request is a consolidated pull of some changes to the > license.bbclass > license parsing, some cleanup of existing licenses, and some additions to/ > modifications of various licenses kept in meta/files/common-licenses. > >

[OE-core] [PATCH 1/1] uclibc_git.bb: Fix patch path in SRC_URI

2011-05-27 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-core/uclibc/uclibc_git.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-core/uclibc/uclibc_git.bb b/meta/recipes-core/uclibc/uclibc_git.bb index 3d5f7a7..eded2fb 100644 --- a/meta/recipes-core/uclibc/uclibc_git.bb

[OE-core] [PATCH 0/1] Fix SRC_URI

2011-05-27 Thread Khem Raj
Wrong patch got pushed into pull branch. But I have made amends here is the remainder. uclibc being in both meta-oe and oe-core confused my build on one machine it was picking it from oe-core and on other from meta-oe. Good new layers :) The following changes since commit 4b9c98e10d0ebaef45c838610

Re: [OE-core] [bugfix 1/1] mesa-xlib: workaround gcc 4.6.0 ICE

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 10:30 +0100, Phil Blundell wrote: > On Fri, 2011-05-27 at 09:54 +0100, Richard Purdie wrote: > > Good question. I guess you're just changing the gcc version but using > > the rest of that file? > > > > This is a tricky problem as we do want to include that for anyone using >

Re: [OE-core] Sad story about Shared State

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 10:24 AM, Richard Purdie wrote: > On Fri, 2011-05-27 at 07:39 +0200, Martin Jansa wrote: >> On Fri, May 27, 2011 at 12:13:35AM +0100, Richard Purdie wrote: >> I meant something like switch back to something like pstage was or >> disable both (IIRC I had strange error on man

[OE-core] [bugfix 2/2] Revert "tcmode-default: workaround for gcc 4.6.0 failure on beagleboard"

2011-05-27 Thread nitin . a . kamble
From: Nitin A Kamble As we have a fix for gcc 4.6.0 this workaround is not needed anymore This reverts commit 9bccbc5fbc71b331911b558a2ba15e0a6d0046b4. Nitin A Kamble --- meta/conf/distro/include/tcmode-default.inc |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/me

[OE-core] [bugfix 0/2] internal compiler fix for gcc 4.6.0

2011-05-27 Thread nitin . a . kamble
From: Nitin A Kamble This fixes the gcc taking out the need of the workaround we had earlier. This also fixes compile issue for qt4-x11-free recipe for beagleboard machine The following changes since commit 62e3f0ff7b27d8beb21b4b226051c3db654ea4e4: License Field Cleanup: Non-standard field n

Re: [OE-core] [bugfix 1/2] gcc-4.6.0: fix ICE with armv7 target

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 11:15 AM, wrote: > From: Nitin A Kamble > > This fixes an internal compiler error for gcc 4.6.0 for armv7 > > Patch came from: Phil Blundell > Validated by Nitin > > Signed-off-by: Nitin A Kamble > Signed-Off-by: Phil Blundell > --- >  meta/recipes-devtools/gcc/gcc-4.6

[OE-core] [bugfix 1/2] gcc-4.6.0: fix ICE with armv7 target

2011-05-27 Thread nitin . a . kamble
From: Nitin A Kamble This fixes an internal compiler error for gcc 4.6.0 for armv7 Patch came from: Phil Blundell Validated by Nitin Signed-off-by: Nitin A Kamble Signed-Off-by: Phil Blundell --- meta/recipes-devtools/gcc/gcc-4.6.0.inc|3 +- .../gcc/gcc-4.6.0/ICE_fix_for_arm

[OE-core] [PATCH 0/1] Fix gupnp-tools missing dependency

2011-05-27 Thread Saul Wold
Fix missing dependency for M1 Builds The following changes since commit 4786ecdf7cd427089464dcb62579110d494e7cd7: License Field Cleanup: Non-standard field names (2011-05-27 18:27:04 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib sgw/fix

[OE-core] [PATCH 1/1] gupnp-tools: Add gupnp-av to DEPENDS

2011-05-27 Thread Saul Wold
Signed-off-by: Saul Wold --- .../gupnp/gupnp-tools_0.8.1.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-connectivity/gupnp/gupnp-tools_0.8.1.bb b/meta/recipes-connectivity/gupnp/gupnp-tools_0.8.1.bb index 008d0f7..2ee7462 100644 ---

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Koen Kooi
Op 27 mei 2011, om 19:00 heeft Richard Purdie het volgende geschreven: > Hi Lianhao, > > On Fri, 2011-05-27 at 14:31 +0800, Lianhao Lu wrote: >> git://git.pokylinux.org/poky-contrib llu/PR-service >> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=llu/PR-service >> >> Lianhao Lu (11): >

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Otavio Salvador
Same here. On Fri, May 27, 2011 at 18:48, Koen Kooi wrote: > > Op 27 mei 2011, om 19:00 heeft Richard Purdie het volgende geschreven: > >> Hi Lianhao, >> >> On Fri, 2011-05-27 at 14:31 +0800, Lianhao Lu wrote: >>>  git://git.pokylinux.org/poky-contrib llu/PR-service >>>  http://git.pokylinux.org/

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Koen Kooi
FWIW, F14 has python 2.7 Op 27 mei 2011, om 21:08 heeft Otavio Salvador het volgende geschreven: > Same here. > > On Fri, May 27, 2011 at 18:48, Koen Kooi wrote: >> >> Op 27 mei 2011, om 19:00 heeft Richard Purdie het volgende geschreven: >> >>> Hi Lianhao, >>> >>> On Fri, 2011-05-27 at 14:

Re: [OE-core] [bugfix 1/2] gcc-4.6.0: fix ICE with armv7 target

2011-05-27 Thread Mark Hatle
On 5/27/11 1:25 PM, Khem Raj wrote: > On Fri, May 27, 2011 at 11:15 AM, wrote: >> From: Nitin A Kamble >> >> This fixes an internal compiler error for gcc 4.6.0 for armv7 >> >> Patch came from: Phil Blundell >> Validated by Nitin >> >> Signed-off-by: Nitin A Kamble >> Signed-Off-by: Phil Blund

Re: [OE-core] [bugfix 1/2] gcc-4.6.0: fix ICE with armv7 target

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 12:15 PM, Mark Hatle wrote: > On 5/27/11 1:25 PM, Khem Raj wrote: >> On Fri, May 27, 2011 at 11:15 AM,   wrote: >>> From: Nitin A Kamble >>> >>> This fixes an internal compiler error for gcc 4.6.0 for armv7 >>> >>> Patch came from: Phil Blundell >>> Validated by Nitin >>>

[OE-core] Get PRAUTO and use PKGV/PKGR is causing problems

2011-05-27 Thread Khem Raj
Hi I have started getting this error. ERROR: Error executing a python function in /home/kraj/work/angstrom/sources/openembedded-core/meta/recipes-core/uclibc/uclibc_git.bb: ImportError: No module named xmlrpc ERROR: The stack trace of python calls that resulted in this exception/failure was: ERR

Re: [OE-core] [bugfix 1/2] gcc-4.6.0: fix ICE with armv7 target

2011-05-27 Thread Mark Hatle
On 5/27/11 2:36 PM, Khem Raj wrote: > On Fri, May 27, 2011 at 12:15 PM, Mark Hatle wrote: >> On 5/27/11 1:25 PM, Khem Raj wrote: >>> On Fri, May 27, 2011 at 11:15 AM, wrote: From: Nitin A Kamble This fixes an internal compiler error for gcc 4.6.0 for armv7 Patch came fr

Re: [OE-core] Get PRAUTO and use PKGV/PKGR is causing problems

2011-05-27 Thread Koen Kooi
I'm seeing the same on my fedora box, but not on my debian box. Otavio reported similar issues, see the patchset email thread. Op 27 mei 2011, om 21:40 heeft Khem Raj het volgende geschreven: > Hi > > I have started getting this error. > > ERROR: Error executing a python function in > /home/kr

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
On Fri, 2011-05-27 at 20:48 +0200, Koen Kooi wrote: > Op 27 mei 2011, om 19:00 heeft Richard Purdie het volgende geschreven: > > > Hi Lianhao, > > > > On Fri, 2011-05-27 at 14:31 +0800, Lianhao Lu wrote: > >> git://git.pokylinux.org/poky-contrib llu/PR-service > >> http://git.pokylinux.org/cgit

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 1:09 PM, Joshua Lock wrote: > On Fri, 2011-05-27 at 20:48 +0200, Koen Kooi wrote: >> Op 27 mei 2011, om 19:00 heeft Richard Purdie het volgende geschreven: >> >> > Hi Lianhao, >> > >> > On Fri, 2011-05-27 at 14:31 +0800, Lianhao Lu wrote: >> >>  git://git.pokylinux.org/poky

Re: [OE-core] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: > Attached are two patches against BitBake master to add back the xmlrpc > server (copied from Poky's tree) and fix the uievent. Seems like my patches didn't make it through? *tries again* Cheers, Joshua -- Joshua Lock Yocto Project B

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: > Upstream BitBake still has the xmlrpc server removed. The version in > Poky's BitBake is functional (I use it daily). > > Attached are two patches against BitBake master to add back the xmlrpc > server (copied from Poky's tree) and fix the ui

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
>From 1618318f0a30847b08c158e7ac82f9043126144e Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 27 May 2011 13:04:44 -0700 Subject: [PATCH 2/2] uievent: fix queueing of events for xmlrpc before UI has loaded The change to Queue up events before the UI is spawned broke the xmlrpc server beca

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Khem Raj
On May 27, 2011, at 2:00 PM, Joshua Lock wrote: > On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: >> Upstream BitBake still has the xmlrpc server removed. The version in >> Poky's BitBake is functional (I use it daily). >> >> Attached are two patches against BitBake master to add back th

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
>From 4c0915842cd578e67fc9cc85d24538e419a47af8 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 27 May 2011 13:03:55 -0700 Subject: [PATCH 1/2] server: add updated/fixed xmlrpc server from Poky Signed-off-by: Joshua Lock --- lib/bb/server/xmlrpc.py | 273 ++

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Joshua Lock
On Fri, 2011-05-27 at 14:01 -0700, Khem Raj wrote: > > On May 27, 2011, at 2:00 PM, Joshua Lock wrote: > > > On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: > >> Upstream BitBake still has the xmlrpc server removed. The version in > >> Poky's BitBake is functional (I use it daily). > >> >

[OE-core] [PATCH 1/1] xserver: force to use libdl

2011-05-27 Thread Saul Wold
From: Yu Ke [YOCTO #737] The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl")) macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl" Signed-off-by: Yu Ke Added Bug info Signed-off-by: Saul Wold --- .../xorg-xserver/files/force-libdl

[OE-core] [PATCH 0/1] Fix for build failure of xserver on mpc build

2011-05-27 Thread Saul Wold
This fixes a problem with the MPC building the xserver-xf86-lite The following changes since commit 4786ecdf7cd427089464dcb62579110d494e7cd7: License Field Cleanup: Non-standard field names (2011-05-27 18:27:04 +0100) are available in the git repository at: git://git.openembedded.org/openemb

Re: [OE-core] Sad story about Shared State

2011-05-27 Thread Martin Jansa
On Fri, May 27, 2011 at 06:24:44PM +0100, Richard Purdie wrote: > I dug into this with Martin on irc and it was found that rm_work.bbclass > was exposing a bitbake bug with setscene handling. This was fixed with: > > http://git.openembedded.net/cgit.cgi/bitbake/commit/?id=0a4d857aabc86b973170ba9ce

Re: [OE-core] [PATCH 1/1] xserver: force to use libdl

2011-05-27 Thread Phil Blundell
On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote: > From: Yu Ke > > [YOCTO #737] > > The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], > DLOPEN_LIBS="-ldl")) > macro seems not work well in ppc arch, so this patch force the > DLOPEN_LIBS="-ldl" > That's a bit of a weird report.

[OE-core] [PATCH 1/1][v2] license.bbclass: Sane Parsing of licenses

2011-05-27 Thread Elizabeth Flanagan
This is a first pass at sane license parsing, using python abstract syntax trees. A few notes on this since ast is not generally used. I massage the LICENSE field to be more pythonesque and then create an ast. I then dump the ast and using a LicenseVisitor class, recurse through the tree, looki

Re: [OE-core] [PATCH 1/1][v2] license.bbclass: Sane Parsing of licenses

2011-05-27 Thread Elizabeth Flanagan
Scratch this. I forgot to remove some debug. -b On 05/27/2011 03:00 PM, Elizabeth Flanagan wrote: This is a first pass at sane license parsing, using python abstract syntax trees. A few notes on this since ast is not generally used. I massage the LICENSE field to be more pythonesque and then

[OE-core] [PATCH 0/1][v2] license.bbclass parsing changes rebased

2011-05-27 Thread Elizabeth Flanagan
Using python abstract syntax trees as a parser and an ast visitor class, I've begun the first steps to being able to put some sanity to license selection. One note. License modifiers have traditionally been limited to the "or greater" modifier "+". I've added another modifier "with exceptions" f

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: > Upstream BitBake still has the xmlrpc server removed. The version in > Poky's BitBake is functional (I use it daily). > > Attached are two patches against BitBake master to add back the xmlrpc > server (copied from Poky's tree) and fix the ui

[OE-core] [PATCH 1/1][v3] license.bbclass: Sane Parsing of licenses

2011-05-27 Thread Elizabeth Flanagan
This is a first pass at sane license parsing, using python abstract syntax trees. A few notes on this since ast is not generally used. I massage the LICENSE field to be more pythonesque and then create an ast. I then dump the ast and using a LicenseVisitor class, recurse through the tree, looki

[OE-core] [PATCH 0/1][v3] license.bbclass parsing changes rebased sans debug

2011-05-27 Thread Elizabeth Flanagan
Using python abstract syntax trees as a parser and an ast visitor class, I've begun the first steps to being able to put some sanity to license selection. One note. License modifiers have traditionally been limited to the "or greater" modifier "+". I've added another modifier "with exceptions" f

Re: [OE-core] [PATCH 0/1] Fix gupnp-tools missing dependency

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 11:28 -0700, Saul Wold wrote: > Fix missing dependency for M1 Builds > > > The following changes since commit 4786ecdf7cd427089464dcb62579110d494e7cd7: > > License Field Cleanup: Non-standard field names (2011-05-27 18:27:04 +0100) > > are available in the git repository

Re: [OE-core] [PATCH 1/1] xserver: force to use libdl

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote: > On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote: > > From: Yu Ke > > > > [YOCTO #737] > > > > The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], > > DLOPEN_LIBS="-ldl")) > > macro seems not work well in ppc arch, so this pat

Re: [OE-core] [PATCH 0/1] Fix SRC_URI

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 10:38 -0700, Khem Raj wrote: > Wrong patch got pushed into pull branch. But I have made amends > here is the remainder. uclibc being in both meta-oe and oe-core > confused my build on one machine it was picking it from oe-core > and on other from meta-oe. Good new layers :) >

Re: [OE-core] [PATCH 1/1] xserver: force to use libdl

2011-05-27 Thread Koen Kooi
Op 28 mei 2011, om 00:23 heeft Richard Purdie het volgende geschreven: > On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote: >> On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote: >>> From: Yu Ke >>> >>> [YOCTO #737] >>> >>> The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], >>>

Re: [OE-core] [PATCH 0/1][v3] license.bbclass parsing changes rebased sans debug

2011-05-27 Thread Richard Purdie
On Fri, 2011-05-27 at 15:13 -0700, Elizabeth Flanagan wrote: > Using python abstract syntax trees as a parser and an ast visitor class, I've > begun the first steps to being able to put some sanity to license selection. > > One note. License modifiers have traditionally been limited to the "or >

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 3:09 PM, Richard Purdie wrote: > On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: >> Upstream BitBake still has the xmlrpc server removed. The version in >> Poky's BitBake is functional (I use it daily). >> >> Attached are two patches against BitBake master to add back

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 6:02 PM, Khem Raj wrote: > On Fri, May 27, 2011 at 3:09 PM, Richard Purdie > wrote: >> On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: >>> Upstream BitBake still has the xmlrpc server removed. The version in >>> Poky's BitBake is functional (I use it daily). >>> >>>

[OE-core] [oe-core][PATCH] package.bbclass, prserv.bbclass: Compare USE_PR_SERV with "1" or "0"

2011-05-27 Thread Khem Raj
Value of USE_PR_SERV is either "1" or "0" looking at settings in bitbake.conf USE_PR_SERV = "${@[1,0][(bb.data.getVar('PRSERV_HOST',d,1) is None) or (bb.data.getVar('PRSERV_PORT',d,1) is None)]}" So we compare the strings Signed-off-by: Khem Raj --- meta/classes/package.bbclass |2 +- meta/

Re: [OE-core] [bitbake-devel] [PATCH 00/11] Add PR service and integrate PKGV/PKGR from OE

2011-05-27 Thread Khem Raj
On Fri, May 27, 2011 at 6:05 PM, Khem Raj wrote: > On Fri, May 27, 2011 at 6:02 PM, Khem Raj wrote: >> On Fri, May 27, 2011 at 3:09 PM, Richard Purdie >> wrote: >>> On Fri, 2011-05-27 at 13:09 -0700, Joshua Lock wrote: Upstream BitBake still has the xmlrpc server removed. The version in >>>

[OE-core] [PATCH 0/2] misc fixed to compile uclibc in thumb mode and fix prserv

2011-05-27 Thread Khem Raj
The following changes since commit ae1ba18f70c0dac5bed376f6677258c33290ce30: uclibc: Add disabled COMPILE_IN_THUMB_MODE to uClibc.machine for all ARM configurations (2011-05-27 19:41:33 -0700) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib kraj/m

[OE-core] [PATCH 1/2] uclibc: Add disabled COMPILE_IN_THUMB_MODE to uClibc.machine for all ARM configurations

2011-05-27 Thread Khem Raj
This entry need to exist so that it can be manipulated later to decide if uclibc is to be compiled in thumb mode or arm mode Signed-off-by: Khem Raj --- .../uclibc/uclibc-git/arm/uClibc.machine |1 + .../uclibc/uclibc-git/armv5te/uClibc.machine |1 + .../uclibc/uclibc-git

[OE-core] [PATCH 2/2] package.bbclass, prserv.bbclass: Compare USE_PR_SERV with "1" or "0"

2011-05-27 Thread Khem Raj
Value of USE_PR_SERV is either "1" or "0" looking at settings in bitbake.conf USE_PR_SERV = "${@[1,0][(bb.data.getVar('PRSERV_HOST',d,1) is None) or (bb.data.getVar('PRSERV_PORT',d,1) is None)]}" So we compare the strings Signed-off-by: Khem Raj --- meta/classes/package.bbclass |2 +- meta/