summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYatharth Kochar <yatharth.kochar@arm.com>2016-07-04 11:03:49 +0100
committerYatharth Kochar <yatharth.kochar@arm.com>2016-09-21 16:27:35 +0100
commit83fc4a930bad68ca0014a25e0c41dc71cffa28b3 (patch)
tree5304a557063857a48d9870589405241a5bb59296 /Makefile
parentf3b4914be3b41eb2231184f7af80240296f668c5 (diff)
AArch32: Add ARM platform changes in BL1
This patch adds ARM platform changes in BL1 for AArch32 state. It also enables building of BL1 for ARCH=aarch32. Change-Id: I079be81a93d027f37b0f7d8bb474b1252bb4cf48
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 15b1ac87..aaf84db2 100644
--- a/Makefile
+++ b/Makefile
@@ -517,13 +517,13 @@ endif
################################################################################
# Include BL specific makefiles
################################################################################
-# BL31 is not needed and BL1, BL2 & BL2U are not currently supported in AArch32
-ifneq (${ARCH},aarch32)
ifdef BL1_SOURCES
NEED_BL1 := yes
include bl1/bl1.mk
endif
+# For AArch32, BL31 is not applicable, and BL2 & BL2U are not supported at present.
+ifneq (${ARCH},aarch32)
ifdef BL2_SOURCES
NEED_BL2 := yes
include bl2/bl2.mk