diff options
author | Jeff Bailey <jeffbailey@google.com> | 2014-05-24 23:59:22 -0700 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-25 23:24:09 +0200 |
commit | a426a91973c03ea99bb49bace8141de2d1ab25d8 (patch) | |
tree | 3597d8779ef91a9dafeee40a0dfd177547fb8652 /Makefile | |
parent | 696668b09b37c6a4db110880d519132a3da0fba5 (diff) | |
download | buildroot-a426a91973c03ea99bb49bace8141de2d1ab25d8.tar.gz buildroot-a426a91973c03ea99bb49bace8141de2d1ab25d8.zip |
Add support for powerpc64le
This patch adds support for powerpc64le-linux-gnu. This includes
needed patches to fakeroot and gmp.
gmp patch is from upstream HG tree.
fakeroot patch is from Ubuntu written by Adam Conrad.
Signed-off-by: Jeff Bailey <jeffbailey@google.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -310,7 +310,7 @@ KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \ -e s/aarch64/arm64/ \ -e s/bfin/blackfin/ \ -e s/parisc64/parisc/ \ - -e s/powerpc64/powerpc/ \ + -e s/powerpc64.*/powerpc/ \ -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ -e s/sh.*/sh/ \ -e s/microblazeel/microblaze/) |