summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Dooks <ben.dooks@codethink.co.uk>2013-07-22 16:32:19 +0100
committerBen Dooks <ben.dooks@codethink.co.uk>2013-09-03 17:36:56 +0100
commit51d51ca2dcf843fb2ca8dc4088093c515c8ada94 (patch)
treeb2e700d0b24975a6afd784c8beb673a175b45a5a
parent432ca4861c19bf822b2a791a7ae37372aadc5d1b (diff)
downloadlinux-51d51ca2dcf843fb2ca8dc4088093c515c8ada94.tar.gz
ARM: set --be8 when linking modules
To avoid having to make every text section swap the instruction order of all instructions, make sure modules are built also built with --be8 (as is the current kernel final link). If we do not do this, we would end up having to swap all instructions when loading a module, instead of just the instructions that we are applying ELF relocations to. Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> Reviewed-by: Dave Martin <Dave.Martin@arm.com>
-rw-r--r--arch/arm/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 6fd2ceae305a..2c659f9f28c9 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -16,6 +16,7 @@ LDFLAGS :=
LDFLAGS_vmlinux :=-p --no-undefined -X
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux += --be8
+LDFLAGS_MODULE += --be8
endif
OBJCOPYFLAGS :=-O binary -R .comment -S