Skip to content

Commit

Permalink
docs: Update for SDK 0.13.0
Browse files Browse the repository at this point in the history
Update docs to reference SDK 0.13.0.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
  • Loading branch information
galak authored and nashif committed Aug 4, 2021
1 parent 2f2bc57 commit 8bac519
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions doc/getting_started/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -477,14 +477,14 @@ to build Zephyr applications.
.. code-block:: bash
cd ~
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.12.4/zephyr-sdk-0.12.4-x86_64-linux-setup.run
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.13.0/zephyr-sdk-0.13.0-linux-x86_64-setup.run
#. Run the installer, installing the SDK in :file:`~/zephyr-sdk-0.12.4`:
#. Run the installer, installing the SDK in :file:`~/zephyr-sdk-0.13.0`:

.. code-block:: bash
chmod +x zephyr-sdk-0.12.4-x86_64-linux-setup.run
./zephyr-sdk-0.12.4-x86_64-linux-setup.run -- -d ~/zephyr-sdk-0.12.4
chmod +x zephyr-sdk-0.13.0-linux-x86_64-setup.run
./zephyr-sdk-0.13.0-linux-x86_64-setup.run -- -d ~/zephyr-sdk-0.13.0
.. note::
It is recommended to install the Zephyr SDK at one of the following locations:
Expand All @@ -497,7 +497,7 @@ to build Zephyr applications.
* ``/usr/zephyr-sdk[-x.y.z]``
* ``/usr/local/zephyr-sdk[-x.y.z]``

where ``[-x.y.z]`` is optional text, and can be any text, for example ``-0.12.4``.
where ``[-x.y.z]`` is optional text, and can be any text, for example ``-0.13.0``.

If installing the Zephyr SDK outside any of those locations, please read: :ref:`zephyr_sdk`

Expand All @@ -508,7 +508,7 @@ to build Zephyr applications.

.. code-block:: bash
sudo cp ~/zephyr-sdk-0.12.4/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
sudo cp ~/zephyr-sdk-0.13.0/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
sudo udevadm control --reload
.. group-tab:: macOS
Expand Down
14 changes: 7 additions & 7 deletions doc/getting_started/installation_linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -240,19 +240,19 @@ Follow these steps to install the Zephyr SDK:

.. code-block:: console
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.12.4/zephyr-sdk-0.12.4-x86_64-linux-setup.run
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.13.0/zephyr-sdk-0.13.0-linux-x86_64-setup.run
(You can change *0.12.4* to another version if needed; the `Zephyr
(You can change *0.13.0* to another version if needed; the `Zephyr
Downloads`_ page contains all available SDK releases.)

#. Run the installation binary, installing the SDK at
:file:`~/zephyr-sdk-0.12.4`:
:file:`~/zephyr-sdk-0.13.0`:

.. code-block:: console
cd <sdk download directory>
chmod +x zephyr-sdk-0.12.4-x86_64-linux-setup.run
./zephyr-sdk-0.12.4-x86_64-linux-setup.run -- -d ~/zephyr-sdk-0.12.4
chmod +x zephyr-sdk-0.13.0-linux-x86_64-setup.run
./zephyr-sdk-0.13.0-linux-x86_64-setup.run -- -d ~/zephyr-sdk-0.13.0
You can pick another directory if you want. If this fails, make sure
Zephyr's dependencies were installed as described in `Install Requirements
Expand All @@ -272,7 +272,7 @@ installed it.
* ``/usr/zephyr-sdk[-x.y.z]``
* ``/usr/local/zephyr-sdk[-x.y.z]``

where ``[-x.y.z]`` is optional text, and can be any text, for example ``-0.12.4``.
where ``[-x.y.z]`` is optional text, and can be any text, for example ``-0.13.0``.

If you install the Zephyr SDK outside any of those locations, then it is
required to register the Zephyr SDK in the CMake package registry during
Expand All @@ -283,7 +283,7 @@ installed it.
containing multiple Zephyr SDKs, allowing for automatic toolchain selection,
for example: ``ZEPHYR_SDK_INSTALL_DIR=/company/tools``

* ``/company/tools/zephyr-sdk-0.12.4``
* ``/company/tools/zephyr-sdk-0.13.0``
* ``/company/tools/zephyr-sdk-a.b.c``
* ``/company/tools/zephyr-sdk-x.y.z``

Expand Down

0 comments on commit 8bac519

Please sign in to comment.