Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
@ 2012-03-06 23:20 Matthew McClintock
  2012-03-07  9:11 ` [PATCH] arch-powerpc.inc: use default value ofTUNE_PKGARCH Eibach, Dirk
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Matthew McClintock @ 2012-03-06 23:20 UTC (permalink / raw)
  To: openembedded-core

We can use the default value for TUNE_PKGARCH, and now we just
append "-nf" if TARGET_FPU is fpu-soft

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
index c9b2829..abd72ed 100644
--- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
+++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
@@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
 
 ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
 
-PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
-
-PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
-TUNE_PKGARCH ?= "${PPCPKGARCH}"
+PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
+TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
 
 # Basic tune definitions
 AVAILTUNES += "powerpc powerpc-nf" 
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value ofTUNE_PKGARCH
  2012-03-06 23:20 [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
@ 2012-03-07  9:11 ` Eibach, Dirk
  2012-03-07 17:41 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Richard Purdie
  2012-03-08 20:15 ` Richard Purdie
  2 siblings, 0 replies; 10+ messages in thread
From: Eibach, Dirk @ 2012-03-07  9:11 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer,
	openembedded-core

 

> We can use the default value for TUNE_PKGARCH, and now we 
> just append "-nf" if TARGET_FPU is fpu-soft
> 
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git 
> a/meta/conf/machine/include/powerpc/arch-powerpc.inc 
> b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> index c9b2829..abd72ed 100644
> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> @@ -18,10 +18,8 @@ TARGET_FPU .= 
> "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
>  
>  ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) 
> in ['ppc-efd', 'ppc-efs']]}"
>  
> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", 
> "fpu-hard" , "", "-nf", d)}"
> -
> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
> +PPCPKGSFX_FPU = "${@['', 
> '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
> +TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
>  
>  # Basic tune definitions
>  AVAILTUNES += "powerpc powerpc-nf" 

This fixes my issues with e500v2 cores.

Tested-by: Dirk Eibach <eibach@gdsys.de>





^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-06 23:20 [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
  2012-03-07  9:11 ` [PATCH] arch-powerpc.inc: use default value ofTUNE_PKGARCH Eibach, Dirk
@ 2012-03-07 17:41 ` Richard Purdie
  2012-03-10 16:30   ` McClintock Matthew-B29882
  2012-03-08 20:15 ` Richard Purdie
  2 siblings, 1 reply; 10+ messages in thread
From: Richard Purdie @ 2012-03-07 17:41 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: openembedded-core

On Tue, 2012-03-06 at 17:20 -0600, Matthew McClintock wrote:
> We can use the default value for TUNE_PKGARCH, and now we just
> append "-nf" if TARGET_FPU is fpu-soft
> 
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> index c9b2829..abd72ed 100644
> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> @@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
>  
>  ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
>  
> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
> -
> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
> +PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"

bb.data is deprecated and we should translate:

bb.data.getVar('TARGET_FPU',d,1) -> d.getVar('TARGET_FPU', True)

Cheers,

Richard




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-06 23:20 [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
  2012-03-07  9:11 ` [PATCH] arch-powerpc.inc: use default value ofTUNE_PKGARCH Eibach, Dirk
  2012-03-07 17:41 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Richard Purdie
@ 2012-03-08 20:15 ` Richard Purdie
  2012-03-08 21:03   ` [PATCH v2] " Matthew McClintock
  2012-03-09 16:45   ` [PATCH] " Mark Hatle
  2 siblings, 2 replies; 10+ messages in thread
From: Richard Purdie @ 2012-03-08 20:15 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: openembedded-core

On Tue, 2012-03-06 at 17:20 -0600, Matthew McClintock wrote:
> We can use the default value for TUNE_PKGARCH, and now we just
> append "-nf" if TARGET_FPU is fpu-soft
> 
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> index c9b2829..abd72ed 100644
> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
> @@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
>  
>  ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
>  
> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
> -
> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
> +PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
> +TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"

Can we please do d.getVar(xxx, True) and not bb.data and ,1 :)

Cheers,

Richard




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v2] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-08 20:15 ` Richard Purdie
@ 2012-03-08 21:03   ` Matthew McClintock
  2012-03-09 16:45   ` [PATCH] " Mark Hatle
  1 sibling, 0 replies; 10+ messages in thread
From: Matthew McClintock @ 2012-03-08 21:03 UTC (permalink / raw)
  To: openembedded-core

We can use the default value for TUNE_PKGARCH, and now we just
append "-nf" if TARGET_FPU is fpu-soft

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
index c9b2829..9f588e8 100644
--- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
+++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
@@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
 
 ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
 
-PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
-
-PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
-TUNE_PKGARCH ?= "${PPCPKGARCH}"
+PPCPKGSFX_FPU = "${@['', '-nf'][d.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
+TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
 
 # Basic tune definitions
 AVAILTUNES += "powerpc powerpc-nf" 
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-08 20:15 ` Richard Purdie
  2012-03-08 21:03   ` [PATCH v2] " Matthew McClintock
@ 2012-03-09 16:45   ` Mark Hatle
  2012-03-09 16:50     ` McClintock Matthew-B29882
  1 sibling, 1 reply; 10+ messages in thread
From: Mark Hatle @ 2012-03-09 16:45 UTC (permalink / raw)
  To: openembedded-core

On 3/8/12 2:15 PM, Richard Purdie wrote:
> On Tue, 2012-03-06 at 17:20 -0600, Matthew McClintock wrote:
>> We can use the default value for TUNE_PKGARCH, and now we just
>> append "-nf" if TARGET_FPU is fpu-soft
>>
>> Signed-off-by: Matthew McClintock<msm@freescale.com>
>> ---
>>   meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>>   1 files changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> index c9b2829..abd72ed 100644
>> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> @@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
>>
>>   ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
>>
>> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
>> -
>> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
>> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
>> +PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
>> +TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
>
> Can we please do d.getVar(xxx, True) and not bb.data and ,1 :)

This was originally done with a check for fpu-hard and not fpu-soft to ensure 
that fpu-soft became the default value when one or the other wasn't set.

I don't know if it really matters which is used, but that is why it was done 
that way.

--Mark

> Cheers,
>
> Richard
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-09 16:45   ` [PATCH] " Mark Hatle
@ 2012-03-09 16:50     ` McClintock Matthew-B29882
  0 siblings, 0 replies; 10+ messages in thread
From: McClintock Matthew-B29882 @ 2012-03-09 16:50 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, Mar 9, 2012 at 10:45 AM, Mark Hatle <mark.hatle@windriver.com> wrote:
> On 3/8/12 2:15 PM, Richard Purdie wrote:
>>
>> On Tue, 2012-03-06 at 17:20 -0600, Matthew McClintock wrote:
>>>
>>> We can use the default value for TUNE_PKGARCH, and now we just
>>> append "-nf" if TARGET_FPU is fpu-soft
>>>
>>> Signed-off-by: Matthew McClintock<msm@freescale.com>
>>> ---
>>>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>>>  1 files changed, 2 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc
>>> b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>>> index c9b2829..abd72ed 100644
>>> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
>>> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>>> @@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES",
>>> "fpu-soft", "soft", "", d)}
>>>
>>>  ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in
>>> ['ppc-efd', 'ppc-efs']]}"
>>>
>>> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "",
>>> "-nf", d)}"
>>> -
>>> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
>>> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
>>> +PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in
>>> ['fpu-soft']]}"
>>> +TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
>>
>>
>> Can we please do d.getVar(xxx, True) and not bb.data and ,1 :)
>
>
> This was originally done with a check for fpu-hard and not fpu-soft to
> ensure that fpu-soft became the default value when one or the other wasn't
> set.
>
> I don't know if it really matters which is used, but that is why it was done
> that way.

That logic was not quite working for us - since we don't set fpu-hard,
but rather ppc-efd and ppc-efs... so I had to invert this...

-M



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-07 17:41 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Richard Purdie
@ 2012-03-10 16:30   ` McClintock Matthew-B29882
  0 siblings, 0 replies; 10+ messages in thread
From: McClintock Matthew-B29882 @ 2012-03-10 16:30 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer, Richard Purdie
  Cc: openembedded-core@openembedded.org

On Wed, Mar 7, 2012 at 11:41 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Tue, 2012-03-06 at 17:20 -0600, Matthew McClintock wrote:
>> We can use the default value for TUNE_PKGARCH, and now we just
>> append "-nf" if TARGET_FPU is fpu-soft
>>
>> Signed-off-by: Matthew McClintock <msm@freescale.com>
>> ---
>>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>>  1 files changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> index c9b2829..abd72ed 100644
>> --- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> +++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
>> @@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
>>
>>  ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
>>
>> -PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
>> -
>> -PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
>> -TUNE_PKGARCH ?= "${PPCPKGARCH}"
>> +PPCPKGSFX_FPU = "${@['', '-nf'][bb.data.getVar('TARGET_FPU',d,1) in ['fpu-soft']]}"
>
> bb.data is deprecated and we should translate:
>
> bb.data.getVar('TARGET_FPU',d,1) -> d.getVar('TARGET_FPU', True)

I already sent a new patch here:

http://patches.openembedded.org/patch/22931/

-M



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-22 16:38 [PATCH] powerpc: fix overly aggressive TUNE_PKGARCH set Richard Purdie
@ 2012-03-22 16:53 ` Matthew McClintock
  2012-03-22 17:54   ` Richard Purdie
  0 siblings, 1 reply; 10+ messages in thread
From: Matthew McClintock @ 2012-03-22 16:53 UTC (permalink / raw)
  To: openembedded-core, chris_larson, richard.purdie

We can use the default value for TUNE_PKGARCH, and now we just
append "-nf" if TARGET_FPU is fpu-soft

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta/conf/machine/include/powerpc/arch-powerpc.inc b/meta/conf/machine/include/powerpc/arch-powerpc.inc
index c9b2829..c5fd6b7 100644
--- a/meta/conf/machine/include/powerpc/arch-powerpc.inc
+++ b/meta/conf/machine/include/powerpc/arch-powerpc.inc
@@ -18,10 +18,8 @@ TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "fpu-soft", "soft", "", d)}
 
 ABIEXTENSION = "${@['','spe'][d.getVar('TARGET_FPU', True) in ['ppc-efd', 'ppc-efs']]}"
 
-PPCPKGSFX_FPU = "${@bb.utils.contains("TUNE_FEATURES", "fpu-hard" , "", "-nf", d)}"
-
-PPCPKGARCH = "${TUNE_ARCH}${PPCPKGSFX_FPU}"
-TUNE_PKGARCH ?= "${PPCPKGARCH}"
+PPCPKGSFX_FPU = "${@['', '-nf'][d.getVar('TARGET_FPU', True) in ['fpu-soft']]}"
+TUNE_PKGARCH_append = "${PPCPKGSFX_FPU}"
 
 # Basic tune definitions
 AVAILTUNES += "powerpc powerpc-nf" 
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH
  2012-03-22 16:53 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
@ 2012-03-22 17:54   ` Richard Purdie
  0 siblings, 0 replies; 10+ messages in thread
From: Richard Purdie @ 2012-03-22 17:54 UTC (permalink / raw)
  To: Matthew McClintock; +Cc: chris_larson, openembedded-core

On Thu, 2012-03-22 at 11:53 -0500, Matthew McClintock wrote:
> We can use the default value for TUNE_PKGARCH, and now we just
> append "-nf" if TARGET_FPU is fpu-soft
> 
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/conf/machine/include/powerpc/arch-powerpc.inc |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)

Merged to master, thanks.

Richard




^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-03-22 18:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-06 23:20 [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
2012-03-07  9:11 ` [PATCH] arch-powerpc.inc: use default value ofTUNE_PKGARCH Eibach, Dirk
2012-03-07 17:41 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Richard Purdie
2012-03-10 16:30   ` McClintock Matthew-B29882
2012-03-08 20:15 ` Richard Purdie
2012-03-08 21:03   ` [PATCH v2] " Matthew McClintock
2012-03-09 16:45   ` [PATCH] " Mark Hatle
2012-03-09 16:50     ` McClintock Matthew-B29882
  -- strict thread matches above, loose matches on Subject: below --
2012-03-22 16:38 [PATCH] powerpc: fix overly aggressive TUNE_PKGARCH set Richard Purdie
2012-03-22 16:53 ` [PATCH] arch-powerpc.inc: use default value of TUNE_PKGARCH Matthew McClintock
2012-03-22 17:54   ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox