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>
3 files changed
tree: 10c711d67d30e593c4568f98db27f118415e868e
  1. .github/
  2. acipher/
  3. aes/
  4. hello_world/
  5. hotp/
  6. plugins/
  7. random/
  8. secure_storage/
  9. .gitignore
  10. Android.mk
  11. CMakeLists.txt
  12. CMakeToolchain.txt
  13. LICENSE
  14. Makefile
  15. README.md
README.md

OP-TEE Sample Applications

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