OP-TEE / optee_docs

This git contains the official documentation for the OP-TEE project
BSD 2-Clause "Simplified" License
58 stars 96 forks source link

porting guidelines: fix bad link #236

Closed jbech-linaro closed 7 months ago

jbech-linaro commented 7 months ago

Change the link to point to the correct page when refering to configuration and compile time flags.

Fixes: https://github.com/OP-TEE/optee_docs/issues/142

jenswi-linaro commented 7 months ago

# Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>

jforissier commented 7 months ago
This is the device specific makefile where you define configurations unique to
your platform. This mainly comprises two things:

- OP-TEE configuration variables (``CFG_``), which may be assigned values in two
ways. ``CFG_FOO ?= bar`` should be used to provide a default value that may be
modified at compile time. On the other hand, variables that must be set to some
value and cannot be modified should be set by: ``$(call force,CFG_FOO,bar)``.
- Compiler flags for the TEE core, the user mode libraries and the Trusted
Applications, which may be added to macros used by the build system. Please
see :ref:`configuration_and_flags` and similar sections on that page.
jbech-linaro commented 7 months ago
This is the device specific makefile where you define configurations unique to
your platform. This mainly comprises two things:

Now I see it! Will fix!