mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 07:15:20 +00:00
fix(mte): improve ENABLE_FEAT_MTE deprecation warning
ENABLE_FEAT_MTE was deprecated in commit c282384dbb
("refactor(mte):
remove mte, mte_perm"), but the check in the build system is only
covering the "ENABLE_FEAT_MTE=1" case.
Fix the check to cover every mentioning of ENABLE_FEAT_MTE.
Change-Id: Ia663f50016455f93ecfdac8aeaba34d9059600ea
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
This commit is contained in:
parent
d2d1da5fdf
commit
ba65e2d157
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ ENABLE_FEAT_RNG_TRAP ?= 0
|
||||||
ifeq ($(CTX_INCLUDE_MTE_REGS),1)
|
ifeq ($(CTX_INCLUDE_MTE_REGS),1)
|
||||||
$(warning CTX_INCLUDE_MTE_REGS option is deprecated, Check ENABLE_FEAT_MTE2 usage)
|
$(warning CTX_INCLUDE_MTE_REGS option is deprecated, Check ENABLE_FEAT_MTE2 usage)
|
||||||
endif
|
endif
|
||||||
ifeq ($(ENABLE_FEAT_MTE),1)
|
ifneq ($(ENABLE_FEAT_MTE),)
|
||||||
$(warning ENABLE_FEAT_MTE option is deprecated, Check ENABLE_FEAT_MTE2 usage)
|
$(warning ENABLE_FEAT_MTE option is deprecated, Check ENABLE_FEAT_MTE2 usage)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue