mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 11:04:20 +00:00
fvp: Use the right implem. of plat_report_exception() in BL3-2
On FVP, the file 'plat/fvp/aarch64/plat_helpers.S' contains an FVP-specific implementation of the function 'plat_report_exception()', which is meant to override the default implementation. However, this file was not included into the BL3-2 image, meaning it was still using the default implementation. This patch fixes the FVP makefile to compile this file in. Change-Id: I3d44b9ec3a9de7e2762e0887d3599b185d3e28d2
This commit is contained in:
parent
60bc4bbd0b
commit
db8989d5a5
1 changed files with 2 additions and 1 deletions
|
@ -31,4 +31,5 @@
|
||||||
# TSP source files specific to FVP platform
|
# TSP source files specific to FVP platform
|
||||||
BL32_SOURCES += plat/common/aarch64/platform_mp_stack.S \
|
BL32_SOURCES += plat/common/aarch64/platform_mp_stack.S \
|
||||||
plat/fvp/bl32_plat_setup.c \
|
plat/fvp/bl32_plat_setup.c \
|
||||||
plat/fvp/aarch64/plat_common.c
|
plat/fvp/aarch64/plat_common.c \
|
||||||
|
plat/fvp/aarch64/plat_helpers.S
|
||||||
|
|
Loading…
Add table
Reference in a new issue