commit | 0980530ab3d5a8de96eaaa46800d95803494cb32 | [log] [tgz] |
---|---|---|
author | Gyorgy <gyorgy.szing@arm.com> | Wed Nov 30 12:36:17 2022 +0000 |
committer | Jérôme Forissier <jerome@forissier.org> | Thu Jan 26 14:20:57 2023 +0100 |
tree | be25b9fced912d8a6e2e3b91976248441f19225e | |
parent | dddfd73e2f5130fe9121bdb547e8bcde2eb27ca0 [diff] |
fvp: fix TF-A parameter passing issue Build fails if MEASURED_BOOT=n is passed on the command line to fvp-psa-sp.mk due to colliding variable names between this repo and TF-A makefiles. Both projects use "boolean type", but the implementation is incompatible. OP-TEE uses "y/n" and TF-A uses "1/0" as the true/false value. Make will pass variables set on the command-line down to all sub-make invocations, and thus if the value is not converted TF-A build will fail. This change fixes the issue by adding a missing value conversion. Signed-off-by: Gyorgy <gyorgy.szing@arm.com> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
This git contains makefiles etc to be able to build a full OP-TEE developer setup for the OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The pages that used to be here in this git can be found under build and Device specific information at he new location for the OP-TEE documentation.
// OP-TEE core maintainers