This is an automated email from the ASF dual-hosted git repository. mssun pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git
commit b984f91229b36f0a103320b60a72256e3b1ee990 Author: Mingshen Sun <[email protected]> AuthorDate: Tue Mar 16 15:03:03 2021 -0700 Add Teaclave TrustZone SDK docs --- .gitignore | 1 + site/.vuepress/config.js | 11 +++++++++++ site/Makefile | 2 ++ 3 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index e6519df..6d111f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ dist teaclave teaclave-sgx-sdk +teaclave-trustzone-sdk node_modules target sgx-sdk-docs/Cargo.lock diff --git a/site/.vuepress/config.js b/site/.vuepress/config.js index 7186426..f8fc258 100644 --- a/site/.vuepress/config.js +++ b/site/.vuepress/config.js @@ -23,6 +23,7 @@ module.exports = { items: [ { text: 'Teaclave', link: '/docs/' }, { text: 'Teaclave SGX SDK', link: '/sgx-sdk-docs/' }, + { text: 'Teaclave TrustZone SDK', link: '/trustzone-sdk-docs/' }, ] }, { text: 'Blog', link: '/blog/' }, @@ -143,6 +144,16 @@ module.exports = { '/teaclave-sgx-sdk/documents/everything-about-cve-2020-5499', ], }, + ], + '/teaclave-trustzone-sdk/': [ + { + title: 'Development', + collapsable: false, + sidebarDepth: 0, + children: [ + '/teaclave-trustzone-sdk/docs/getting-started-with-optee-for-qemu-armv8', + ], + }, ] } }, diff --git a/site/Makefile b/site/Makefile index 84c1448..017e538 100644 --- a/site/Makefile +++ b/site/Makefile @@ -27,11 +27,13 @@ crate-docs: teaclave-docs: git clone https://github.com/apache/incubator-teaclave.git teaclave || cd teaclave && git pull git clone https://github.com/apache/incubator-teaclave-sgx-sdk.git teaclave-sgx-sdk || cd teaclave-sgx-sdk && git pull + git clone https://github.com/apache/incubator-teaclave-trustzone-sdk.git teaclave-trustzone-sdk || cd teaclave-trustzone-sdk && git pull vuepress build dev: git clone https://github.com/apache/incubator-teaclave.git teaclave || cd teaclave && git pull git clone https://github.com/apache/incubator-teaclave-sgx-sdk.git teaclave-sgx-sdk || cd teaclave-sgx-sdk && git pull + git clone https://github.com/apache/incubator-teaclave-trustzone-sdk.git teaclave-trustzone-sdk || cd teaclave-trustzone-sdk && git pull vuepress dev preview: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
