mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00
chore(rme): add make rule for SPD=spmd
ENABLE_RME is set then SPD must either be spmd or it should not be set. Add a rule to assert this. Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Change-Id: I0556e7b0e55b04c3a8e4c20c991fbbc30486570c
This commit is contained in:
parent
a64010e4c6
commit
4fba2e1ff7
1 changed files with 5 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -642,6 +642,11 @@ endif
|
|||
ifeq ($(SPMC_AT_EL3),1)
|
||||
$(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
|
||||
endif
|
||||
ifneq (${SPD}, none)
|
||||
ifneq (${SPD}, spmd)
|
||||
$(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
|
||||
endif
|
||||
endif
|
||||
include services/std_svc/rmmd/rmmd.mk
|
||||
$(warning "RME is an experimental feature")
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue