Build: Remove "tfm_symbol" from manifest
According to PSA FF, the "tfm_symbol" need be removed from the manifest
file. And use "signal" to get the secure function entry. It requests
that the signal name should be the supper case of the secure function
name.
Change-Id: I6ff1fc3011219b7bcd21f89ad893c3f227ef12d0
Signed-off-by: Edison Ai <edison.ai@arm.com>
diff --git a/interface/include/tfm_veneers.h.template b/interface/include/tfm_veneers.h.template
index 9fcc1b3..3613b01 100644
--- a/interface/include/tfm_veneers.h.template
+++ b/interface/include/tfm_veneers.h.template
@@ -22,7 +22,7 @@
{% endif %}
/******** {{manifest.manifest.name}} ********/
{% for function in manifest.manifest.secure_functions%}
-psa_status_t tfm_{{function.tfm_symbol}}_veneer(psa_invec *in_vec, size_t in_len, psa_outvec *out_vec, size_t out_len);
+psa_status_t tfm_{{function.signal.lower()}}_veneer(psa_invec *in_vec, size_t in_len, psa_outvec *out_vec, size_t out_len);
{% endfor %}
{% if manifest.attr.conditional %}
#endif /* {{manifest.attr.conditional}} */