Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/GetStartedZephyr.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,23 @@ The base instructions are based on [Getting Started Guide](https://docs.zephyrpr
```sh
mkdir ~/zephyrproject
cd ~/zephyrproject
west init
west init --mr v4.3.0
west update
```

Now, clone Ocre runtime:
```sh
git clone --recurse-submodules https://github.com/project-ocre/ocre-runtime.git
```

Proceed to the general instructions for Zephyr development below.

## General instructions

Build a sample:

```sh
west build -p always -b native_sim/native/64 src/samples/supervisor/zephyr
west build -p always -b native_sim/native/64 ocre-runtime/src/samples/supervisor/zephyr
```

Make sure you are in a directory inside the Zephyr workspace and the path to the Ocre sample is correct.
Expand Down