Skip to content

Commit

Permalink
doc: Update to Zephyr SDK 0.16.1
Browse files Browse the repository at this point in the history
This commit updates the Getting Started Guide and the Zephyr SDK
documentation to point to the Zephyr SDK 0.16.1 release.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed May 15, 2023
1 parent 90828ae commit a3a844d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
36 changes: 18 additions & 18 deletions doc/develop/getting_started/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@ that are used to emulate, flash and debug Zephyr applications.
.. code-block:: bash
cd ~
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/sha256.sum | shasum --check --ignore-missing
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/sha256.sum | shasum --check --ignore-missing
If your host architecture is 64-bit ARM (for example, Raspberry Pi), replace ``x86_64``
with ``aarch64`` in order to download the 64-bit ARM Linux SDK.
Expand All @@ -512,7 +512,7 @@ that are used to emulate, flash and debug Zephyr applications.

.. code-block:: bash
tar xvf zephyr-sdk-0.16.0_linux-x86_64.tar.xz
tar xvf zephyr-sdk-0.16.1_linux-x86_64.tar.xz
.. note::
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
Expand All @@ -524,15 +524,15 @@ that are used to emulate, flash and debug Zephyr applications.
* ``/opt``
* ``/usr/local``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``$HOME``, the resulting installation path will be
``$HOME/zephyr-sdk-0.16.0``.
``$HOME/zephyr-sdk-0.16.1``.

#. Run the Zephyr SDK bundle setup script:

.. code-block:: bash
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
./setup.sh
.. note::
Expand All @@ -546,7 +546,7 @@ that are used to emulate, flash and debug Zephyr applications.

.. code-block:: bash
sudo cp ~/zephyr-sdk-0.16.0/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
sudo cp ~/zephyr-sdk-0.16.1/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
sudo udevadm control --reload
.. group-tab:: macOS
Expand All @@ -559,8 +559,8 @@ that are used to emulate, flash and debug Zephyr applications.
.. code-block:: bash
cd ~
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/sha256.sum | shasum --check --ignore-missing
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/sha256.sum | shasum --check --ignore-missing
If your host architecture is 64-bit ARM (Apple Silicon, also known as M1), replace
``x86_64`` with ``aarch64`` in order to download the 64-bit ARM macOS SDK.
Expand All @@ -569,7 +569,7 @@ that are used to emulate, flash and debug Zephyr applications.

.. code-block:: bash
tar xvf zephyr-sdk-0.16.0_macos-x86_64.tar.xz
tar xvf zephyr-sdk-0.16.1_macos-x86_64.tar.xz
.. note::
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
Expand All @@ -581,15 +581,15 @@ that are used to emulate, flash and debug Zephyr applications.
* ``/opt``
* ``/usr/local``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``$HOME``, the resulting installation path will be
``$HOME/zephyr-sdk-0.16.0``.
``$HOME/zephyr-sdk-0.16.1``.

#. Run the Zephyr SDK bundle setup script:

.. code-block:: bash
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
./setup.sh
.. note::
Expand All @@ -610,29 +610,29 @@ that are used to emulate, flash and debug Zephyr applications.
.. code-block:: console
cd %HOMEPATH%
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
#. Extract the Zephyr SDK bundle archive:

.. code-block:: console
7z x zephyr-sdk-0.16.0_windows-x86_64.7z
7z x zephyr-sdk-0.16.1_windows-x86_64.7z
.. note::
It is recommended to extract the Zephyr SDK bundle at one of the following locations:

* ``%HOMEPATH%``
* ``%PROGRAMFILES%``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``%HOMEPATH%``, the resulting installation path will be
``%HOMEPATH%\zephyr-sdk-0.16.0``.
``%HOMEPATH%\zephyr-sdk-0.16.1``.

#. Run the Zephyr SDK bundle setup script:

.. code-block:: console
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
setup.cmd
.. note::
Expand Down
14 changes: 7 additions & 7 deletions doc/develop/getting_started/installation_linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ Follow these steps to install the Zephyr SDK:

.. code-block:: bash
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/sha256.sum | shasum --check --ignore-missing
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/sha256.sum | shasum --check --ignore-missing
You can change ``0.16.0`` to another version if needed; the `Zephyr SDK
You can change ``0.16.1`` to another version if needed; the `Zephyr SDK
Releases`_ page contains all available SDK releases.

If your host architecture is 64-bit ARM (for example, Raspberry Pi), replace
Expand All @@ -246,13 +246,13 @@ Follow these steps to install the Zephyr SDK:
.. code-block:: bash
cd <sdk download directory>
tar xvf zephyr-sdk-0.16.0_linux-x86_64.tar.xz
tar xvf zephyr-sdk-0.16.1_linux-x86_64.tar.xz
#. Run the Zephyr SDK bundle setup script:

.. code-block:: bash
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
./setup.sh
If this fails, make sure Zephyr's dependencies were installed as described
Expand All @@ -271,9 +271,9 @@ If you relocate the SDK directory, you need to re-run the setup script.
* ``/opt``
* ``/usr/local``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``$HOME``, the resulting installation path will be
``$HOME/zephyr-sdk-0.16.0``.
``$HOME/zephyr-sdk-0.16.1``.

If you install the Zephyr SDK outside any of these locations, you must
register the Zephyr SDK in the CMake package registry by running the setup
Expand Down
36 changes: 18 additions & 18 deletions doc/develop/toolchains/zephyr_sdk.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ Install Zephyr SDK on Linux

.. code-block:: bash
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/sha256.sum | shasum --check --ignore-missing
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/sha256.sum | shasum --check --ignore-missing
You can change ``0.16.0`` to another version if needed; the `Zephyr SDK
You can change ``0.16.1`` to another version if needed; the `Zephyr SDK
Releases`_ page contains all available SDK releases.

If your host architecture is 64-bit ARM (for example, Raspberry Pi), replace
Expand All @@ -79,13 +79,13 @@ Install Zephyr SDK on Linux
.. code-block:: bash
cd <sdk download directory>
tar xvf zephyr-sdk-0.16.0_linux-x86_64.tar.xz
tar xvf zephyr-sdk-0.16.1_linux-x86_64.tar.xz
#. Run the Zephyr SDK bundle setup script:

.. code-block:: bash
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
./setup.sh
If this fails, make sure Zephyr's dependencies were installed as described
Expand All @@ -105,9 +105,9 @@ If you relocate the SDK directory, you need to re-run the setup script.
* ``/opt``
* ``/usr/local``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``$HOME``, the resulting installation path will be
``$HOME/zephyr-sdk-0.16.0``.
``$HOME/zephyr-sdk-0.16.1``.

.. _toolchain_zephyr_sdk_install_macos:

Expand All @@ -119,8 +119,8 @@ Install Zephyr SDK on macOS
.. code-block:: bash
cd ~
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/sha256.sum | shasum --check --ignore-missing
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-x86_64.tar.xz
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/sha256.sum | shasum --check --ignore-missing
If your host architecture is 64-bit ARM (Apple Silicon, also known as M1), replace
``x86_64`` with ``aarch64`` in order to download the 64-bit ARM macOS SDK.
Expand All @@ -129,7 +129,7 @@ Install Zephyr SDK on macOS

.. code-block:: bash
tar xvf zephyr-sdk-0.16.0_macos-x86_64.tar.xz
tar xvf zephyr-sdk-0.16.1_macos-x86_64.tar.xz
.. note::
It is recommended to extract the Zephyr SDK bundle at one of the following
Expand All @@ -142,15 +142,15 @@ Install Zephyr SDK on macOS
* ``/opt``
* ``/usr/local``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``$HOME``, the resulting installation path will be
``$HOME/zephyr-sdk-0.16.0``.
``$HOME/zephyr-sdk-0.16.1``.

#. Run the Zephyr SDK bundle setup script:

.. code-block:: bash
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
./setup.sh
.. note::
Expand All @@ -171,13 +171,13 @@ Install Zephyr SDK on Windows
.. code-block:: console
cd %HOMEPATH%
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
#. Extract the Zephyr SDK bundle archive:

.. code-block:: console
7z x zephyr-sdk-0.16.0_windows-x86_64.7z
7z x zephyr-sdk-0.16.1_windows-x86_64.7z
.. note::
It is recommended to extract the Zephyr SDK bundle at one of the following
Expand All @@ -186,15 +186,15 @@ Install Zephyr SDK on Windows
* ``%HOMEPATH%``
* ``%PROGRAMFILES%``

The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.0`` directory and, when
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
extracted under ``%HOMEPATH%``, the resulting installation path will be
``%HOMEPATH%\zephyr-sdk-0.16.0``.
``%HOMEPATH%\zephyr-sdk-0.16.1``.

#. Run the Zephyr SDK bundle setup script:

.. code-block:: console
cd zephyr-sdk-0.16.0
cd zephyr-sdk-0.16.1
setup.cmd
.. note::
Expand Down

0 comments on commit a3a844d

Please sign in to comment.