fix(tf-cov-make): fix build failure for FVP and TC0
In order to pass one FVP build configuration that requires more SRAM,
its build command was updated by passing FVP_TRUSTED_SRAM_SIZE=384.
Additionally, the TC0 platform is deprecated so removed its build
from the coverity script.
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
Change-Id: I1e9f71b77cc1ebf6eaebd12a4e16289b85ea5d94
diff --git a/script/tf-coverity/tf-cov-make b/script/tf-coverity/tf-cov-make
index b9f1b25..9798fb3 100755
--- a/script/tf-coverity/tf-cov-make
+++ b/script/tf-coverity/tf-cov-make
@@ -55,7 +55,8 @@
TSP_NS_INTR_ASYNC_PREEMPT=1
clean_build $fvp_common_flags ${ARM_TBB_OPTIONS} SPD=opteed FVP_TRUSTED_SRAM_SIZE=384
clean_build $fvp_common_flags ${ARM_TBB_OPTIONS} SPD=tlkd
-clean_build $fvp_common_flags ${ARM_TBB_OPTIONS} SPD=pncd SPD_PNCD_NS_IRQ=126 SPD_PNCD_S_IRQ=15
+clean_build $fvp_common_flags ${ARM_TBB_OPTIONS} SPD=pncd SPD_PNCD_NS_IRQ=126 \
+ SPD_PNCD_S_IRQ=15 FVP_TRUSTED_SRAM_SIZE=384
# Dualroot chain of trust.
clean_build $fvp_common_flags ${ARM_TBB_OPTIONS} SPD=tspd COT=dualroot
@@ -301,7 +302,6 @@
#
# Total Compute platforms
#
-make $(common_flags) PLAT=tc TARGET_PLATFORM=0 ${ARM_TBB_OPTIONS} all
make $(common_flags) PLAT=tc TARGET_PLATFORM=1 ${ARM_TBB_OPTIONS} all
make $(common_flags) PLAT=tc TARGET_PLATFORM=2 ${ARM_TBB_OPTIONS} MEASURED_BOOT=1 all