aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorJorge Ramirez-Ortiz <jorge@foundries.io>2021-10-20 18:16:24 +0200
committerJerome Forissier <jerome@forissier.org>2021-11-23 10:51:03 +0100
commitadd5ac80697653b40c0b3f94dfa96d708f4296ac (patch)
tree154e366eef46565341e40b45143470bb21bf381a /.azure-pipelines.yml
parent58db16aac400aa0814d94a653ab7ce46467bb680 (diff)
crypto: se050: Foundries Plug-and-Trust release 0.0.4
Notice that rebasing the Plug-and-Trust stack to pick up the NXP Plug-and-Trust 3.03.00 release broke backwards compatibility with previous OP-TEE versions. This is why this commit includes the necessary update to adaptors/apdu.c https://github.com/foundriesio/plug-and-trust/releases/tag/v0.0.3 Also the v.0.0.4 release includes support for APDU raw frame transmission to the secure element (a new interface). The OP-TEE PTA that makes use of that functionality shall be merged after this commit. https://github.com/foundriesio/plug-and-trust/releases/tag/v0.0.4 Signed-off-by: Jorge Ramirez-Ortiz <jorge@foundries.io> Acked-by: Jerome Forissier <jerome@forissier.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index a5acc028..0469f3c1 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -72,7 +72,7 @@ jobs:
function upload_cache() { if [ ! -e .uploaded ]; then echo Uploading cache && tar c -C $HOME .ccache | gzip -1 | ssh $SCP_OPT optee_os_ci@cache.forissier.org "cat >ccache-$PROJ.tar.gz" && touch .uploaded || echo Nevermind; fi; }
function check_upload_cache() { NOW=$(date +%s); if [ $(expr $NOW - $START) -gt 3000 ]; then upload_cache; fi; }
function _make() { make -j$(getconf _NPROCESSORS_ONLN) -s O=out $* && check_upload_cache; }
- function download_plug_and_trust() { mkdir -p $HOME/se050 && curl -L https://github.com/foundriesio/plug-and-trust/releases/download/v0.0.2/se050-0.0.2.tar.bz2 | tar jxf - --strip-components=1 -C $HOME/se050 || (rm -rf $HOME/se050; echo Nervermind); }
+ function download_plug_and_trust() { mkdir -p $HOME/se050 && curl -L https://github.com/foundriesio/plug-and-trust/releases/download/v0.0.4/se050-0.0.4.tar.bz2 | tar jxf - --strip-components=1 -C $HOME/se050 || (rm -rf $HOME/se050; echo Nervermind); }
download_cache
ccache -s