Skip to content

Commit

Permalink
CHESTER: Update toolchain to NCS v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hubpav authored Nov 20, 2023
1 parent 9e1b2ba commit 6616be5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions chester/firmware-sdk/installation-on-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,19 @@ brew install cmake ninja gperf python3 ccache qemu dtc wget libmagic
If you have the **ARM processor**, use this command:

```
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-aarch64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-aarch64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
```

If you have the **Intel processor**, use this command:

```
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
```

1. Run the **Zephyr SDK** bundle setup script:

```
$HOME/.local/opt/zephyr-sdk-0.16.0/setup.sh
$HOME/.local/opt/zephyr-sdk-0.16.1/setup.sh
```

## Create Application
Expand Down
4 changes: 2 additions & 2 deletions chester/firmware-sdk/installation-on-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ sudo apt install python3-venv
1. Download and unpack the toolchain:

```
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt
```

1. Run the **Zephyr SDK** bundle setup script:

```
$HOME/.local/opt/zephyr-sdk-0.16.0/setup.sh
$HOME/.local/opt/zephyr-sdk-0.16.1/setup.sh
```

## Create Application
Expand Down
6 changes: 3 additions & 3 deletions chester/firmware-sdk/installation-on-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,19 @@ You can skip this step if you already have **Chocolatey** installed on your syst
1. Download the toolchain:

```
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_windows-x86_64.7z
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_windows-x86_64.7z
```

1. Unzip the toolchain:

```
7z x zephyr-sdk-0.16.0_windows-x86_64.7z
7z x zephyr-sdk-0.16.1_windows-x86_64.7z
```

1. Go to the toolchain directory:

```
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
```

1. Run the **Zephyr SDK** bundle setup script:
Expand Down

0 comments on commit 6616be5

Please sign in to comment.