public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3] Fixup native builds on powerpc
@ 2010-04-28  7:52 Kumar Gala
  2010-05-06 22:01 ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: Kumar Gala @ 2010-04-28  7:52 UTC (permalink / raw)
  To: u-boot

When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the
same way.  We use HOSTARCH == ARCH to determine if a build is native.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
* Put the ppc64 case first otherwise we get powerpc64

 Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 25e3b8c..f2b1ed9 100644
--- a/Makefile
+++ b/Makefile
@@ -38,9 +38,9 @@ HOSTARCH := $(shell uname -m | \
 	    -e s/sun4u/sparc64/ \
 	    -e s/arm.*/arm/ \
 	    -e s/sa110/arm/ \
-	    -e s/powerpc/ppc/ \
-	    -e s/ppc64/ppc/ \
-	    -e s/macppc/ppc/)
+	    -e s/ppc64/powerpc/ \
+	    -e s/ppc/powerpc/ \
+	    -e s/macppc/powerpc/)
 
 HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
 	    sed -e 's/\(cygwin\).*/cygwin/')
-- 
1.6.0.6

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-04-28  7:52 [U-Boot] [PATCH v3] Fixup native builds on powerpc Kumar Gala
@ 2010-05-06 22:01 ` Wolfgang Denk
  2010-05-07  5:27   ` Kumar Gala
  2010-05-08 16:53   ` Kumar Gala
  0 siblings, 2 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-05-06 22:01 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <1272441122-27976-1-git-send-email-galak@kernel.crashing.org> you wrote:
> When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the
> same way.  We use HOSTARCH == ARCH to determine if a build is native.
> 
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> * Put the ppc64 case first otherwise we get powerpc64
> 
>  Makefile |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)

Undid v2, applied this one instead.


Kumar, could you please add proper In-reply-to:/References: headers
to postings that obsolete earlier patches, so the new versions show
up in the thread? Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Doubt is a pain too lonely to know that faith is his twin brother.
- Kahlil Gibran

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-06 22:01 ` Wolfgang Denk
@ 2010-05-07  5:27   ` Kumar Gala
  2010-05-07  7:59     ` Wolfgang Denk
  2010-05-07  8:00     ` Detlev Zundel
  2010-05-08 16:53   ` Kumar Gala
  1 sibling, 2 replies; 8+ messages in thread
From: Kumar Gala @ 2010-05-07  5:27 UTC (permalink / raw)
  To: u-boot


On May 6, 2010, at 5:01 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <1272441122-27976-1-git-send-email-galak@kernel.crashing.org> you wrote:
>> When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the
>> same way.  We use HOSTARCH == ARCH to determine if a build is native.
>> 
>> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
>> ---
>> * Put the ppc64 case first otherwise we get powerpc64
>> 
>> Makefile |    6 +++---
>> 1 files changed, 3 insertions(+), 3 deletions(-)
> 
> Undid v2, applied this one instead.
> 
> 
> Kumar, could you please add proper In-reply-to:/References: headers
> to postings that obsolete earlier patches, so the new versions show
> up in the thread? Thanks.

How do you do that with git send-email?

- k

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-07  5:27   ` Kumar Gala
@ 2010-05-07  7:59     ` Wolfgang Denk
  2010-05-07  8:00     ` Detlev Zundel
  1 sibling, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-05-07  7:59 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <BC53D917-2155-485A-9C71-7690EF51C1ED@kernel.crashing.org> you wrote:
> 
> > Kumar, could you please add proper In-reply-to:/References: headers
> > to postings that obsolete earlier patches, so the new versions show
> > up in the thread? Thanks.
> 
> How do you do that with git send-email?

Enter the message ID of the message you are referring to when git
send-email asks for the "Message-ID to be used as In-Reply-To for the
first email".

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Who is the oldest inhabitant of this village?"
"We haven't got one; we had one, but he died three weeks ago."

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-07  5:27   ` Kumar Gala
  2010-05-07  7:59     ` Wolfgang Denk
@ 2010-05-07  8:00     ` Detlev Zundel
  2010-05-08 16:52       ` Kumar Gala
  1 sibling, 1 reply; 8+ messages in thread
From: Detlev Zundel @ 2010-05-07  8:00 UTC (permalink / raw)
  To: u-boot

Hi Kumar,

>> Kumar, could you please add proper In-reply-to:/References: headers
>> to postings that obsolete earlier patches, so the new versions show
>> up in the thread? Thanks.
>
> How do you do that with git send-email?

If called without --compose git send-email will prompt for such a
reference:

  $ git send-email --to u-boot at lists.denx.de 0001*
  Who should the emails appear to be from? [Detlev Zundel <dzu@denx.de>] 
  Emails will be sent from: Detlev Zundel <dzu@denx.de>
  Message-ID to be used as In-Reply-To for the first email? 
  
Reading the man page it should also be possible to use "--in-reply-to".

Cheers
  Detlev

-- 
Each language has its purpose, however humble. Each language expresses
the Yin and Yang of software. Each language has its place within the Tao.

But do not program in COBOL if you can avoid it.
                           -- The Tao of Programming
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-07  8:00     ` Detlev Zundel
@ 2010-05-08 16:52       ` Kumar Gala
  0 siblings, 0 replies; 8+ messages in thread
From: Kumar Gala @ 2010-05-08 16:52 UTC (permalink / raw)
  To: u-boot


On May 7, 2010, at 3:00 AM, Detlev Zundel wrote:

> Hi Kumar,
> 
>>> Kumar, could you please add proper In-reply-to:/References: headers
>>> to postings that obsolete earlier patches, so the new versions show
>>> up in the thread? Thanks.
>> 
>> How do you do that with git send-email?
> 
> If called without --compose git send-email will prompt for such a
> reference:
> 
> $ git send-email --to u-boot at lists.denx.de 0001*
> Who should the emails appear to be from? [Detlev Zundel <dzu@denx.de>] 
> Emails will be sent from: Detlev Zundel <dzu@denx.de>
> Message-ID to be used as In-Reply-To for the first email? 
> 
> Reading the man page it should also be possible to use "--in-reply-to".
> 
> Cheers
> Detlev

Thanks guys.

- k

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-06 22:01 ` Wolfgang Denk
  2010-05-07  5:27   ` Kumar Gala
@ 2010-05-08 16:53   ` Kumar Gala
  2010-05-08 23:21     ` Wolfgang Denk
  1 sibling, 1 reply; 8+ messages in thread
From: Kumar Gala @ 2010-05-08 16:53 UTC (permalink / raw)
  To: u-boot


On May 6, 2010, at 5:01 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <1272441122-27976-1-git-send-email-galak@kernel.crashing.org> you wrote:
>> When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the
>> same way.  We use HOSTARCH == ARCH to determine if a build is native.
>> 
>> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
>> ---
>> * Put the ppc64 case first otherwise we get powerpc64
>> 
>> Makefile |    6 +++---
>> 1 files changed, 3 insertions(+), 3 deletions(-)
> 
> Undid v2, applied this one instead.

Should this be in your public git tree?  Not seeing it.

- k

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

* [U-Boot] [PATCH v3] Fixup native builds on powerpc
  2010-05-08 16:53   ` Kumar Gala
@ 2010-05-08 23:21     ` Wolfgang Denk
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2010-05-08 23:21 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <09F91859-E41C-4C42-B1D4-93D428123F88@kernel.crashing.org> you wrote:
> 
> > Undid v2, applied this one instead.
> 
> Should this be in your public git tree?  Not seeing it.

It should, but was not mirrored out yet. Now it is.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If you're not part of the solution, you're part of the problem.

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

end of thread, other threads:[~2010-05-08 23:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-28  7:52 [U-Boot] [PATCH v3] Fixup native builds on powerpc Kumar Gala
2010-05-06 22:01 ` Wolfgang Denk
2010-05-07  5:27   ` Kumar Gala
2010-05-07  7:59     ` Wolfgang Denk
2010-05-07  8:00     ` Detlev Zundel
2010-05-08 16:52       ` Kumar Gala
2010-05-08 16:53   ` Kumar Gala
2010-05-08 23:21     ` Wolfgang Denk

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