commit | 90622f36baa4737fd83418698abe67263b414b6e | [log] [tgz] |
---|---|---|
author | ivila <390810839@qq.com> | Mon Dec 23 15:09:14 2024 +0800 |
committer | Jerome Forissier <jerome@forissier.org> | Tue Jan 07 09:44:11 2025 +0100 |
tree | 10c711d67d30e593c4568f98db27f118415e868e | |
parent | 378dc0db2d5dd279f58a3b6cb3f78ffd6b165035 [diff] |
Remove misleading TA properties in new added examples Some of our example TAs define the following properties: - "gp.ta.description" (type: string) - "gp.ta.version" (type: unsigned 32-bit integer) This is misleading, because these are *not* the standard description and version properties defined by the GP Internal Core API specification. The standard ones are: - "gpd.ta.description" (type: string) - "gpd.ta.version" (type: string) OP-TEE TAs should use the TA_DESCRIPTION and TA_VERSION macros to define them. This commit gets rid of the misleading properties. Instead, TA_DESCRIPTION and TA_VERSION are set in the applications. Signed-off-by: ivila <390810839@qq.com> Reviewed-by: Joakim Bech <joakim.bech@linaro.org> Reviewed-by: Etienne Carriere <etienne.carriere@foss.st.com>
This git contains source code for sample host and Trusted Application that can be used directly in the OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The information that used to be here in this git can be found under optee_examples.
// OP-TEE core maintainers