From 84d9e02757e2d15a1c67a524e70c664461cd8621 Mon Sep 17 00:00:00 2001 From: Lucas Camphausen Date: Tue, 17 Sep 2024 15:38:30 +0200 Subject: [PATCH] Upgrade to Renode 1.15.2 (#342) Signed-off-by: Lucas Camphausen --- .github/workflows/build-and-test.yml | 2 +- docs/getting_started.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 96b75d4..041826a 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -22,7 +22,7 @@ env: TOOLCHAIN: arm-none-eabi TOOLCHAIN_VERSION: 13.2.rel1 RENODE: renode - RENODE_VERSION: 1.14.0 + RENODE_VERSION: 1.15.2 VENV_IREE: venv-iree VENV_RENODE: venv-renode IREE_HOST_INSTALL: build-iree-host-install diff --git a/docs/getting_started.md b/docs/getting_started.md index 5aaa518..b5b122e 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -232,13 +232,13 @@ cmake --build . --target sample_vmvx_sync You can use [Renode](https://renode.io/) to execute the created binary. ```shell -wget https://github.com/renode/renode/releases/download/v1.14.0/renode-1.14.0.linux-portable.tar.gz -tar -xvzf renode-1.14.0.linux-portable.tar.gz +wget https://github.com/renode/renode/releases/download/v1.15.2/renode-1.15.2.linux-portable.tar.gz +tar -xvzf renode-1.15.2.linux-portable.tar.gz ``` Execution is done via the interactive Renode shell (for headless execution see [here](https://github.com/renode/renode/issues/138)): ```shell -cd renode_1.14.0_portable +cd renode_1.15.2_portable ./renode ``` Inside the shell you need to execute the following statements: @@ -252,7 +252,7 @@ You should be able to see the output of the executable in the analyzer window fo This example also comes with a robot test file: ```shell -cd renode_1.14.0_portable +cd renode_1.15.2_portable ./renode-test --variable BASE_DIR:${PATH_TO_REPOSITORY_ROOT} ${PATH_TO_REPOSITORY_ROOT}/tests/vmvx_sample.robot ```