[U-Boot-Users] [PATCH] Set HOSTARCH on ppc64 system

This is necessary to native build u-boot on a ppc64 system.
Signed-off-by: Amos Waterland apw@us.ibm.com
---
Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile index f301640..027b347 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ HOSTARCH := $(shell uname -m | \ -e s/arm.*/arm/ \ -e s/sa110/arm/ \ -e s/powerpc/ppc/ \ + -e s/ppc64/ppc/ \ -e s/macppc/ppc/)
HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \

On Mar 21, 2008, at 1:48 PM, Amos Waterland wrote:
This is necessary to native build u-boot on a ppc64 system.
Signed-off-by: Amos Waterland apw@us.ibm.com
Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile index f301640..027b347 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ HOSTARCH := $(shell uname -m | \ -e s/arm.*/arm/ \ -e s/sa110/arm/ \ -e s/powerpc/ppc/ \
-e s/ppc64/ppc/ \ -e s/macppc/ppc/)
Amos, you're using an old version of u-boot. We already have this change in the latest version.
- k
participants (2)
-
Amos Waterland
-
Kumar Gala