mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

The changes include: - A new build option (ENABLE_RME) to enable FEAT_RME - New image called RMM. RMM is R-EL2 firmware that manages Realms. When building TF-A, a path to RMM image can be specified using the "RMM" build flag. If RMM image is not provided, TRP is built by default and used as RMM image. - Support for RMM image in fiptool Signed-off-by: Zelalem Aweke <zelalem.aweke@arm.com> Change-Id: I017c23ef02e465a5198baafd665a60858ecd1b25
18 lines
441 B
Makefile
18 lines
441 B
Makefile
#
|
|
# Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
ifneq (${ARCH},aarch64)
|
|
$(error "Error: RMMD is only supported on aarch64.")
|
|
endif
|
|
|
|
include services/std_svc/rmmd/trp/trp.mk
|
|
|
|
RMMD_SOURCES += $(addprefix services/std_svc/rmmd/, \
|
|
${ARCH}/rmmd_helpers.S \
|
|
rmmd_main.c)
|
|
|
|
# Let the top-level Makefile know that we intend to include RMM image
|
|
NEED_RMM := yes
|