doc: point to new zephyr sdk: 0.16.3
Change docs to point to new Zephyr SDK. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
d2879f9a48
commit
687f2507e3
3 changed files with 44 additions and 44 deletions
|
@ -497,12 +497,12 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
.. _ubuntu_zephyr_sdk:
|
||||
|
||||
#. Download and verify the `Zephyr SDK bundle
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.1>`_:
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.3>`_:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd ~
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_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``
|
||||
|
@ -512,7 +512,7 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
tar xvf zephyr-sdk-0.16.1_linux-x86_64.tar.xz
|
||||
tar xvf zephyr-sdk-0.16.3_linux-x86_64.tar.xz
|
||||
|
||||
.. note::
|
||||
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
|
||||
|
@ -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.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``$HOME``, the resulting installation path will be
|
||||
``$HOME/zephyr-sdk-0.16.1``.
|
||||
``$HOME/zephyr-sdk-0.16.3``.
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
./setup.sh
|
||||
|
||||
.. note::
|
||||
|
@ -546,7 +546,7 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
sudo cp ~/zephyr-sdk-0.16.1/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
|
||||
sudo cp ~/zephyr-sdk-0.16.3/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
|
||||
sudo udevadm control --reload
|
||||
|
||||
.. group-tab:: macOS
|
||||
|
@ -554,12 +554,12 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
.. _macos_zephyr_sdk:
|
||||
|
||||
#. Download and verify the `Zephyr SDK bundle
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.1>`_:
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.3>`_:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd ~
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-x86_64.tar.xz
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_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
|
||||
|
@ -569,7 +569,7 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
tar xvf zephyr-sdk-0.16.1_macos-x86_64.tar.xz
|
||||
tar xvf zephyr-sdk-0.16.3_macos-x86_64.tar.xz
|
||||
|
||||
.. note::
|
||||
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
|
||||
|
@ -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.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``$HOME``, the resulting installation path will be
|
||||
``$HOME/zephyr-sdk-0.16.1``.
|
||||
``$HOME/zephyr-sdk-0.16.3``.
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
./setup.sh
|
||||
|
||||
.. note::
|
||||
|
@ -605,18 +605,18 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
#. Open a ``cmd.exe`` window by pressing the Windows key typing "cmd.exe".
|
||||
|
||||
#. Download the `Zephyr SDK bundle
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.1>`_:
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.3>`_:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
cd %HOMEPATH%
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_windows-x86_64.7z
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_windows-x86_64.7z
|
||||
|
||||
#. Extract the Zephyr SDK bundle archive:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
7z x zephyr-sdk-0.16.1_windows-x86_64.7z
|
||||
7z x zephyr-sdk-0.16.3_windows-x86_64.7z
|
||||
|
||||
.. note::
|
||||
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
|
||||
|
@ -624,15 +624,15 @@ that are used to emulate, flash and debug Zephyr applications.
|
|||
* ``%HOMEPATH%``
|
||||
* ``%PROGRAMFILES%``
|
||||
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``%HOMEPATH%``, the resulting installation path will be
|
||||
``%HOMEPATH%\zephyr-sdk-0.16.1``.
|
||||
``%HOMEPATH%\zephyr-sdk-0.16.3``.
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
setup.cmd
|
||||
|
||||
.. note::
|
||||
|
|
|
@ -228,11 +228,11 @@ The Zephyr SDK supports the following target architectures:
|
|||
Follow these steps to install the Zephyr SDK:
|
||||
|
||||
#. Download and verify the `Zephyr SDK bundle
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.1>`_:
|
||||
<https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.3>`_:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_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.1`` to another version if needed; the `Zephyr SDK
|
||||
|
@ -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.1_linux-x86_64.tar.xz
|
||||
tar xvf zephyr-sdk-0.16.3_linux-x86_64.tar.xz
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
./setup.sh
|
||||
|
||||
If this fails, make sure Zephyr's dependencies were installed as described
|
||||
|
@ -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.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``$HOME``, the resulting installation path will be
|
||||
``$HOME/zephyr-sdk-0.16.1``.
|
||||
``$HOME/zephyr-sdk-0.16.3``.
|
||||
|
||||
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
|
||||
|
|
|
@ -76,10 +76,10 @@ Install Zephyr SDK on Linux
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
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
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_linux-x86_64.tar.xz
|
||||
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/sha256.sum | shasum --check --ignore-missing
|
||||
|
||||
You can change ``0.16.1`` to another version if needed; the `Zephyr SDK
|
||||
You can change ``0.16.3`` 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
|
||||
|
@ -90,13 +90,13 @@ Install Zephyr SDK on Linux
|
|||
.. code-block:: bash
|
||||
|
||||
cd <sdk download directory>
|
||||
tar xvf zephyr-sdk-0.16.1_linux-x86_64.tar.xz
|
||||
tar xvf zephyr-sdk-0.16.3_linux-x86_64.tar.xz
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
./setup.sh
|
||||
|
||||
If this fails, make sure Zephyr's dependencies were installed as described
|
||||
|
@ -116,9 +116,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.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``$HOME``, the resulting installation path will be
|
||||
``$HOME/zephyr-sdk-0.16.1``.
|
||||
``$HOME/zephyr-sdk-0.16.3``.
|
||||
|
||||
.. _toolchain_zephyr_sdk_install_macos:
|
||||
|
||||
|
@ -130,8 +130,8 @@ Install Zephyr SDK on macOS
|
|||
.. code-block:: bash
|
||||
|
||||
cd ~
|
||||
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
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_macos-x86_64.tar.xz
|
||||
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/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.
|
||||
|
@ -140,7 +140,7 @@ Install Zephyr SDK on macOS
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
tar xvf zephyr-sdk-0.16.1_macos-x86_64.tar.xz
|
||||
tar xvf zephyr-sdk-0.16.3_macos-x86_64.tar.xz
|
||||
|
||||
.. note::
|
||||
It is recommended to extract the Zephyr SDK bundle at one of the following
|
||||
|
@ -153,15 +153,15 @@ Install Zephyr SDK on macOS
|
|||
* ``/opt``
|
||||
* ``/usr/local``
|
||||
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``$HOME``, the resulting installation path will be
|
||||
``$HOME/zephyr-sdk-0.16.1``.
|
||||
``$HOME/zephyr-sdk-0.16.3``.
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
./setup.sh
|
||||
|
||||
.. note::
|
||||
|
@ -182,13 +182,13 @@ Install Zephyr SDK on Windows
|
|||
.. code-block:: console
|
||||
|
||||
cd %HOMEPATH%
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_windows-x86_64.7z
|
||||
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.3/zephyr-sdk-0.16.3_windows-x86_64.7z
|
||||
|
||||
#. Extract the Zephyr SDK bundle archive:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
7z x zephyr-sdk-0.16.1_windows-x86_64.7z
|
||||
7z x zephyr-sdk-0.16.3_windows-x86_64.7z
|
||||
|
||||
.. note::
|
||||
It is recommended to extract the Zephyr SDK bundle at one of the following
|
||||
|
@ -197,15 +197,15 @@ Install Zephyr SDK on Windows
|
|||
* ``%HOMEPATH%``
|
||||
* ``%PROGRAMFILES%``
|
||||
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.1`` directory and, when
|
||||
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.16.3`` directory and, when
|
||||
extracted under ``%HOMEPATH%``, the resulting installation path will be
|
||||
``%HOMEPATH%\zephyr-sdk-0.16.1``.
|
||||
``%HOMEPATH%\zephyr-sdk-0.16.3``.
|
||||
|
||||
#. Run the Zephyr SDK bundle setup script:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
cd zephyr-sdk-0.16.1
|
||||
cd zephyr-sdk-0.16.3
|
||||
setup.cmd
|
||||
|
||||
.. note::
|
||||
|
@ -214,6 +214,6 @@ Install Zephyr SDK on Windows
|
|||
You must rerun the setup script if you relocate the Zephyr SDK bundle directory after
|
||||
the initial setup.
|
||||
|
||||
.. _Zephyr SDK bundle: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.1
|
||||
.. _Zephyr SDK bundle: https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.16.3
|
||||
.. _Zephyr SDK Releases: https://github.com/zephyrproject-rtos/sdk-ng/tags
|
||||
.. _Zephyr SDK Version Compatibility Matrix: https://github.com/zephyrproject-rtos/sdk-ng/wiki/Zephyr-SDK-Version-Compatibility-Matrix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue