mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-28 16:11:49 +00:00
fix(arm): use PLAT instead of TARGET_PLATFORM
There might be several platforms which use the TARGET_PLATFORM build option to differentiate the code between the platform variants. Use of TARGET_PLATFORM in the common code leads to build failures instead use PLAT build option. Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com> Change-Id: I9724caf875bd56225e035ecffa8b9ca1a50d3401
This commit is contained in:
parent
7468be1274
commit
c5f3de8dab
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ endif
|
||||||
ifeq (${JUNO_AARCH32_EL3_RUNTIME},1)
|
ifeq (${JUNO_AARCH32_EL3_RUNTIME},1)
|
||||||
BL2_SOURCES += plat/arm/common/aarch32/arm_bl2_mem_params_desc.c
|
BL2_SOURCES += plat/arm/common/aarch32/arm_bl2_mem_params_desc.c
|
||||||
else
|
else
|
||||||
ifeq ($(filter ${TARGET_PLATFORM}, fpga fvp),)
|
ifneq (${PLAT}, diphda)
|
||||||
BL2_SOURCES += plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c
|
BL2_SOURCES += plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue