[oe] COMPATIBLE_MACHINE

2012-04-20 Thread Gary Thomas
I'm writing a .bbappend for a recipe which contains a COMPATIBLE_MACHINE pattern like this: COMPATIBLE_MACHINE = (machine1|machine2|machine3) Is there a way my .bbappend file can add to this pattern? I don't want to disturb what's there, just add my machine as well. Thanks --

Re: [oe] COMPATIBLE_MACHINE

2012-04-20 Thread Phil Blundell
On Fri, 2012-04-20 at 07:20 -0600, Gary Thomas wrote: I'm writing a .bbappend for a recipe which contains a COMPATIBLE_MACHINE pattern like this: COMPATIBLE_MACHINE = (machine1|machine2|machine3) Is there a way my .bbappend file can add to this pattern? I don't want to disturb what's

Re: [oe] COMPATIBLE_MACHINE

2012-04-20 Thread Chris Larson
On Fri, Apr 20, 2012 at 6:20 AM, Gary Thomas g...@mlbassoc.com wrote: I'm writing a .bbappend for a recipe which contains a COMPATIBLE_MACHINE pattern like this:  COMPATIBLE_MACHINE = (machine1|machine2|machine3) Is there a way my .bbappend file can add to this pattern?  I don't want to

Re: [oe] COMPATIBLE_MACHINE

2012-04-20 Thread Gary Thomas
On 2012-04-20 08:04, Chris Larson wrote: On Fri, Apr 20, 2012 at 6:20 AM, Gary Thomasg...@mlbassoc.com wrote: I'm writing a .bbappend for a recipe which contains a COMPATIBLE_MACHINE pattern like this: COMPATIBLE_MACHINE = (machine1|machine2|machine3) Is there a way my .bbappend file can

Re: [oe] COMPATIBLE_MACHINE

2012-04-20 Thread Chris Larson
On Fri, Apr 20, 2012 at 7:15 AM, Gary Thomas g...@mlbassoc.com wrote: On 2012-04-20 08:04, Chris Larson wrote: On Fri, Apr 20, 2012 at 6:20 AM, Gary Thomasg...@mlbassoc.com  wrote: I'm writing a .bbappend for a recipe which contains a COMPATIBLE_MACHINE pattern like this:  

Re: [oe] COMPATIBLE_MACHINE and no buildable providers

2010-09-19 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 18-09-10 13:53, Frans Meulenbroeks wrote: Or should COMPATIBLE_MACHINE be allowed to trickle up so when building a recipe that depends on another recipe that is not for that MACHINE one only gets a warning. It should. COMPATIBLE_MACHINE should

Re: [oe] COMPATIBLE_MACHINE and no buildable providers

2010-09-19 Thread Frans Meulenbroeks
2010/9/19 Koen Kooi k.k...@student.utwente.nl: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 18-09-10 13:53, Frans Meulenbroeks wrote: Or should COMPATIBLE_MACHINE be allowed to trickle up so when building a recipe that depends on another recipe that is not for that MACHINE one only

[oe] COMPATIBLE_MACHINE and no buildable providers

2010-09-18 Thread Frans Meulenbroeks
Bumped upon the folliwing issue. If a recipe depends on another recipe but that one does have a COMPATIBLE_MACHINE and you are not in the list, you get an error like: ERROR: Required build target xyz' has no buildable providers. Is this desired? Or in other words: should this be fixed by

Re: [oe] COMPATIBLE_MACHINE - how can use?

2010-03-25 Thread Douglas Royds
COMPATIBLE_MACHINE uses Python's re.match(), so COMPATIBLE_MACHINE is a regular expression that must match the start of the MACHINE variable. For instance, from recipes/linux/linux-davinci_2.6.30.bb: COMPATIBLE_MACHINE = (dm6446-evm|dm6467-evm|dm355-evm|davinci-sffsdr|dm355-leopard) The