summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexander <alexander.efremov@arm.com>2021-05-14 15:48:56 +0100
committerIsabella Gottardi <isabella.gottardi@arm.com>2021-05-18 15:27:44 +0100
commitafb0963b9d4413a398ebaa0185db88d88295e954 (patch)
treee70c49c008415c481ba7d7ab0c2dd0cb9b9cc0fc
parent56ee6207c1524ddc4c444c6e48e05eb34105985a (diff)
downloadml-embedded-evaluation-kit-afb0963b9d4413a398ebaa0185db88d88295e954.tar.gz
Renamed core driver dependency to be "dash" style aligned
Signed-off-by: alexander <alexander.efremov@arm.com> Change-Id: I86b1d658ddd9aa717eb571286a9e5f5e053725cf
-rw-r--r--.gitmodules2
-rw-r--r--CMakeLists.txt2
m---------dependencies/core-driver (renamed from dependencies/core_driver)0
-rw-r--r--docs/sections/building.md5
4 files changed, 5 insertions, 4 deletions
diff --git a/.gitmodules b/.gitmodules
index 06532f6..12a4df7 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -5,7 +5,7 @@
path = dependencies/cmsis
url = https://github.com/ARM-software/CMSIS_5.git
[submodule "dependencies/core_driver"]
- path = dependencies/core_driver
+ path = dependencies/core-driver
url = https://review.mlplatform.org/ml/ethos-u/ethos-u-core-driver
[submodule "dependencies/core-software"]
path = dependencies/core-software
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cefc86e..fa84b3e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -175,7 +175,7 @@ if (ETHOS_U55_ENABLED)
USER_OPTION(ETHOS_U55_DRIVER_SRC_PATH
"Path to Ethos-U55 core driver sources"
- "${CMAKE_CURRENT_SOURCE_DIR}/dependencies/core_driver"
+ "${CMAKE_CURRENT_SOURCE_DIR}/dependencies/core-driver"
PATH
)
diff --git a/dependencies/core_driver b/dependencies/core-driver
-Subproject 8565d75b96a2f57f559f12dc0c68438bcfd276c
+Subproject 8565d75b96a2f57f559f12dc0c68438bcfd276c
diff --git a/docs/sections/building.md b/docs/sections/building.md
index ff5b518..7bd01d1 100644
--- a/docs/sections/building.md
+++ b/docs/sections/building.md
@@ -371,12 +371,13 @@ cmake .. \
If the TensorFlow source tree is not in its default expected location, set the path
using `TENSORFLOW_SRC_PATH`. Similarly, if the Ethos-U55 NPU driver and CMSIS are
not in the default location, `ETHOS_U55_DRIVER_SRC_PATH` and `CMSIS_SRC_PATH` can be
-used to configure their location. For example:
+used to configure their location.
+For example:
```commandline
cmake .. \
-DTENSORFLOW_SRC_PATH=/my/custom/location/tensorflow \
- -DETHOS_U55_DRIVER_SRC_PATH=/my/custom/location/core_driver \
+ -DETHOS_U55_DRIVER_SRC_PATH=/my/custom/location/core-driver \
-DCMSIS_SRC_PATH=/my/custom/location/cmsis
```