commit | e9c870525af8f7e7fccf575a0ca5394ce55adcec | [log] [tgz] |
---|---|---|
author | Yann Dirson <yann@blade-group.com> | Mon Apr 12 17:48:10 2021 +0200 |
committer | Jérôme Forissier <jerome@forissier.org> | Fri Jul 09 16:02:45 2021 +0200 |
tree | 3c0526f4d61f4f2157c2ecbe88ef18924da76973 | |
parent | 7923cf1c0ecda7ab3865ef432d669b3e0694486e [diff] |
Makefile: shell fixes "exit -1" has traditionally had "exit 255" result, but starts to be rejected by some shells (eg. dash, which is is the default on many Debian systems): host$ bash $ exit -1 exit host$ echo $? 255 host$ dash $ exit -1 dash: 1: exit: Illegal number: -1 $ host$ echo $? 2 Signed-off-by: Yann Dirson <yann@blade-group.com> Reviewed-by: Jerome Forissier <jerome@forissier.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
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