summaryrefslogtreecommitdiff
path: root/docs/sections/troubleshooting.md
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2022-02-14 12:50:48 +0000
committerIsabella Gottardi <isabella.gottardi@arm.com>2022-02-15 16:46:36 +0000
commit31916b62321020b4949474b5d0a84799a27436d0 (patch)
tree517bb0a6b2fdf397ebbb5078e885545454410a32 /docs/sections/troubleshooting.md
parent5916952c0fe6167989afa363829fc4e1d053c683 (diff)
downloadml-embedded-evaluation-kit-31916b62321020b4949474b5d0a84799a27436d0.tar.gz
MLECO-2614: Minor documentation updates
* Adding troubleshooting for cloning errors Change-Id: Ib57353900064c68c30ecb2141602081180c50c99 Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com>
Diffstat (limited to 'docs/sections/troubleshooting.md')
-rw-r--r--docs/sections/troubleshooting.md28
1 files changed, 27 insertions, 1 deletions
diff --git a/docs/sections/troubleshooting.md b/docs/sections/troubleshooting.md
index 794bfb0..da96206 100644
--- a/docs/sections/troubleshooting.md
+++ b/docs/sections/troubleshooting.md
@@ -5,6 +5,7 @@
- [The application does not work with my custom model](./troubleshooting.md#the-application-does-not-work-with-my-custom-model)
- [NPU configuration mismatch error when running inference](./troubleshooting.md#npu-configuration-mismatch-error-when-running-inference)
- [Problem installing Vela](./troubleshooting.md#problem-installing-vela)
+ - [Errors when cloning the repository](/troubleshooting.md#errors-when-cloning-the-repository)
## Inference results are incorrect for my custom files
@@ -85,4 +86,29 @@ ERROR: Command errored out with exit status 1: /venv/bin/python -u -c 'import sy
To solve this issue install libpython3 on the system.
-Next section of the documentation: [Appendix](appendix.md). \ No newline at end of file
+## Errors when cloning the repository
+
+If you see following errors when cloning the repository:
+
+- ```log
+ fatal: unable to access 'https://review.mlplatform.org/ml/ethos-u/ml-embedded-evaluation-kit/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
+ ```
+
+ We suggest to update to the lastest common CA certificates:
+
+ ```commandline
+ sudo apt-get update
+ sudo apt-get install ca-certificates
+ ```
+
+- ```log
+ fatal: unable to access 'https://review.mlplatform.org/ml/ethos-u/ml-embedded-evaluation-kit/': error:06FFF089:digital envelope routines:CRYPTO_internal:bad key length
+ ```
+
+ We suggest to export the `CURL_SSL_BACKEND` variable as `secure-transport`:
+
+ ```commandline
+ export CURL_SSL_BACKEND="secure-transport"
+ ```
+
+Next section of the documentation: [Appendix](appendix.md).