mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Add transfer list APIs and firmware handoff build option. Change-Id: I68a0ace22c7e50fcdacd101eb76b271d7b76d8ff Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
20 lines
412 B
Makefile
20 lines
412 B
Makefile
#
|
|
# Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
ifeq (${TRANSFER_LIST},1)
|
|
|
|
ifeq (${ARCH},aarch32)
|
|
$(eval $(call add_define,TRANSFER_LIST_AARCH32))
|
|
endif
|
|
|
|
TRANSFER_LIST_SOURCES += $(addprefix lib/transfer_list/, \
|
|
transfer_list.c)
|
|
|
|
BL31_SOURCES += $(TRANSFER_LIST_SOURCES)
|
|
BL2_SOURCES += $(TRANSFER_LIST_SOURCES)
|
|
|
|
endif # TRANSFER_LIST
|
|
|