summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYatharth Kochar <yatharth.kochar@arm.com>2016-07-04 11:26:14 +0100
committerYatharth Kochar <yatharth.kochar@arm.com>2016-09-21 16:28:25 +0100
commit6fe8aa2fa638a7f8c54e6fc084bf2ed6103c2854 (patch)
tree9e90579ec314929ada60aa0e67df185b6bd12068 /Makefile
parentd48c12e928c6e86d95c3c17e8fb56f0292afc623 (diff)
AArch32: Add ARM platform changes in BL2
This patch adds ARM platform changes in BL2 for AArch32 state. It instantiates a descriptor array for ARM platforms describing image and entrypoint information for `SCP_BL2`, `BL32` and `BL33`. It also enables building of BL2 for ARCH=aarch32. Change-Id: I60dc7a284311eceba401fc789311c50ac746c51e
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index aaf84db2..2b630b32 100644
--- a/Makefile
+++ b/Makefile
@@ -522,13 +522,13 @@ 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
endif
+# For AArch32, BL31 is not applicable, and BL2U is not supported at present.
+ifneq (${ARCH},aarch32)
ifdef BL2U_SOURCES
NEED_BL2U := yes
include bl2u/bl2u.mk