diff options
author | Ian Munsie <imunsie@au1.ibm.com> | 2013-09-22 22:05:11 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-10-11 01:48:56 -0400 |
commit | d72b08017161ab385d4ae080ea415c9eb7ceef83 (patch) | |
tree | c20ece2f9d78bf9e7d01824aec499713053c7120 /arch/powerpc/kernel/vdso32/vdso32.lds.S | |
parent | 7df697c81587114ad4847598dd2d6061b73f1a12 (diff) |
powerpc: Add ability to build little endian kernels
This patch allows the kbuild system to successfully compile a kernel
for the little endian PowerPC64 architecture. A subsequent patch
will add the CONFIG_CPU_LITTLE_ENDIAN kernel config option which
must be set to build such a kernel.
If cross compiling, CROSS_COMPILE must point to a suitable toolchain
(compiled for the powerpc64le-linux and powerpcle-linux targets).
Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/vdso32/vdso32.lds.S')
-rw-r--r-- | arch/powerpc/kernel/vdso32/vdso32.lds.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/vdso32/vdso32.lds.S b/arch/powerpc/kernel/vdso32/vdso32.lds.S index f223409629b9..e58ee10fa5c0 100644 --- a/arch/powerpc/kernel/vdso32/vdso32.lds.S +++ b/arch/powerpc/kernel/vdso32/vdso32.lds.S | |||
@@ -4,7 +4,11 @@ | |||
4 | */ | 4 | */ |
5 | #include <asm/vdso.h> | 5 | #include <asm/vdso.h> |
6 | 6 | ||
7 | #ifdef __LITTLE_ENDIAN__ | ||
8 | OUTPUT_FORMAT("elf32-powerpcle", "elf32-powerpcle", "elf32-powerpcle") | ||
9 | #else | ||
7 | OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", "elf32-powerpc") | 10 | OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", "elf32-powerpc") |
11 | #endif | ||
8 | OUTPUT_ARCH(powerpc:common) | 12 | OUTPUT_ARCH(powerpc:common) |
9 | ENTRY(_start) | 13 | ENTRY(_start) |
10 | 14 | ||