aboutsummaryrefslogtreecommitdiff
path: root/bl1
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2021-10-04 13:38:56 +0100
committerManish Pandey <manish.pandey2@arm.com>2021-10-06 17:38:06 +0100
commit4796c6ca89c4d5665f744ecaba3637f7ebb5b29c (patch)
treefed7e5b137f9ad6bcc34ec35544fdf9d527f99d5 /bl1
parent08c699e738ff8937f654f1ac23891e89536f10bb (diff)
downloadtrusted-firmware-a-4796c6ca89c4d5665f744ecaba3637f7ebb5b29c.tar.gz
refactor(fvp_r): tidy up platform port [1]
Following changes done: 1. Remove "fvp_r" specific check from bl1.mk 2. Override BL1_SOURCES in fvp_r platform.mk 3. Regroup source files 4. Remove platform specific change from arm_common Signed-off-by: Manish Pandey <manish.pandey2@arm.com> Change-Id: I74d0b1f317853ab1333744d8da5c59f937789547
Diffstat (limited to 'bl1')
-rw-r--r--bl1/bl1.mk6
1 files changed, 2 insertions, 4 deletions
diff --git a/bl1/bl1.mk b/bl1/bl1.mk
index 8f44151da9..9f63fd50fa 100644
--- a/bl1/bl1.mk
+++ b/bl1/bl1.mk
@@ -4,14 +4,12 @@
# SPDX-License-Identifier: BSD-3-Clause
#
-ifneq (${PLAT},fvp_r)
BL1_SOURCES += bl1/${ARCH}/bl1_arch_setup.c \
bl1/${ARCH}/bl1_context_mgmt.c \
bl1/${ARCH}/bl1_entrypoint.S \
bl1/${ARCH}/bl1_exceptions.S \
- bl1/bl1_main.c
-endif
-BL1_SOURCES += lib/cpus/${ARCH}/cpu_helpers.S \
+ bl1/bl1_main.c \
+ lib/cpus/${ARCH}/cpu_helpers.S \
lib/cpus/errata_report.c \
lib/el3_runtime/${ARCH}/context_mgmt.c \
plat/common/plat_bl1_common.c \