From: Benjamin Herrenschmidt Date: Tue, 15 Sep 2015 01:24:17 +0000 (+1000) Subject: powerpc/boot: Specify ABI v2 when building an LE boot wrapper X-Git-Tag: v4.1.9~120 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b46f51da057f2a4728f8cc4e30e64e297151db76;p=users%2Fjedix%2Flinux-maple.git powerpc/boot: Specify ABI v2 when building an LE boot wrapper commit 655471f54c2e395ba29ae4156ba0f49928177cc1 upstream. The kernel does it, not the boot wrapper, which breaks with some cross compilers that still default to ABI v1. Fixes: 147c05168fc8 ("powerpc/boot: Add support for 64bit little endian wrapper") Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Michael Ellerman Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 73eddda53b8e..4eec430d8fa8 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -28,6 +28,9 @@ BOOTCFLAGS += -m64 endif ifdef CONFIG_CPU_BIG_ENDIAN BOOTCFLAGS += -mbig-endian +else +BOOTCFLAGS += -mlittle-endian +BOOTCFLAGS += $(call cc-option,-mabi=elfv2) endif BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc