aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRohit Vaswani <rvaswani@codeaurora.org>2015-04-16 11:09:54 -0700
committerMister Oyster <oysterized@gmail.com>2017-12-18 21:53:38 +0100
commite232f55837ebc1b85840fa7833f8c022e469cc72 (patch)
tree5f05a9f803b11f2749b270f5bad124517a049631 /Makefile
parent603fb1d223209fc749fc3be14f3c1273df55ef9a (diff)
Makefile: Enable ld fix for cortex-a53 errata 843419
Enable the linker flag --fix-cortex-a53-843419 for ARM Cortex-A53 Errata 843419 Change-Id: I03e7be05eb96c4708c9791b4efbb7d4831ef5704 Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 067e3e9e8..bddef50f1 100644
--- a/Makefile
+++ b/Makefile
@@ -729,6 +729,9 @@ ifeq ($(CONFIG_STRIP_ASM_SYMS),y)
LDFLAGS_vmlinux += $(call ld-option, -X,)
endif
+LDFLAGS_vmlinux += $(call ld-option, --fix-cortex-a53-843419)
+LDFLAGS_MODULE += $(call ld-option, --fix-cortex-a53-843419)
+
# Default kernel image to build when no specific target is given.
# KBUILD_IMAGE may be overruled on the command line or
# set in the environment