From 3ac5e46ed92d4e110e56f15a2556ec30e7dd42ea Mon Sep 17 00:00:00 2001 From: SorinO Date: Tue, 27 Jan 2026 12:41:27 +0200 Subject: [PATCH] docs(zephyr): add zephyr version for west init and ocre clone step Signed-off-by: SorinO --- docs/GetStartedZephyr.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/GetStartedZephyr.md b/docs/GetStartedZephyr.md index 6c7b1e06..118b6f7f 100644 --- a/docs/GetStartedZephyr.md +++ b/docs/GetStartedZephyr.md @@ -64,10 +64,15 @@ 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 @@ -75,7 +80,7 @@ Proceed to the general instructions for Zephyr development below. 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.