mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 05:54:08 +00:00
chore(tc): mark TC2 platform as deprecated in Makefile
Following recent commit [1], update the Makefile to mark the TC2 platform as deprecated and trigger a build failure if someone attempts to build the TC0 or TC1 platform. [1]: https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/31702 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Change-Id: Ib6ed4933328e35209443ceec59f1e2056881f927
This commit is contained in:
parent
58b25570c9
commit
df32faa761
1 changed files with 4 additions and 0 deletions
|
@ -61,6 +61,10 @@ endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(shell expr $(TARGET_PLATFORM) \<= 1), 0)
|
ifneq ($(shell expr $(TARGET_PLATFORM) \<= 1), 0)
|
||||||
|
$(error Platform ${PLAT}$(TARGET_PLATFORM) is no longer available.)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(shell expr $(TARGET_PLATFORM) = 2), 0)
|
||||||
$(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \
|
$(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \
|
||||||
Some of the features might not work as expected)
|
Some of the features might not work as expected)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue