Skip to content

Commit 2d8c45c

Browse files
stephanosiombolivar-nordic
authored andcommitted
doc: Update to Zephyr SDK 0.14.2
Update the Getting Started Guide to point to the Zephyr SDK 0.14.2 release. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 968d017 commit 2d8c45c

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

doc/develop/getting_started/index.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@ as custom QEMU and OpenOCD builds.
485485
.. code-block:: bash
486486
487487
cd ~
488-
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/zephyr-sdk-0.14.1_linux-x86_64.tar.gz
489-
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/sha256.sum | shasum --check --ignore-missing
488+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/zephyr-sdk-0.14.2_linux-x86_64.tar.gz
489+
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/sha256.sum | shasum --check --ignore-missing
490490
491491
If your host architecture is 64-bit ARM (for example, Raspberry Pi), replace ``x86_64``
492492
with ``aarch64`` in order to download the 64-bit ARM Linux SDK.
@@ -495,7 +495,7 @@ as custom QEMU and OpenOCD builds.
495495

496496
.. code-block:: bash
497497
498-
tar xvf zephyr-sdk-0.14.1_linux-x86_64.tar.gz
498+
tar xvf zephyr-sdk-0.14.2_linux-x86_64.tar.gz
499499
500500
.. note::
501501
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
@@ -507,15 +507,15 @@ as custom QEMU and OpenOCD builds.
507507
* ``/opt``
508508
* ``/usr/local``
509509

510-
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.1`` directory and, when
510+
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.2`` directory and, when
511511
extracted under ``$HOME``, the resulting installation path will be
512-
``$HOME/zephyr-sdk-0.14.1``.
512+
``$HOME/zephyr-sdk-0.14.2``.
513513

514514
#. Run the Zephyr SDK bundle setup script:
515515

516516
.. code-block:: bash
517517
518-
cd zephyr-sdk-0.14.1
518+
cd zephyr-sdk-0.14.2
519519
./setup.sh
520520
521521
.. note::
@@ -529,7 +529,7 @@ as custom QEMU and OpenOCD builds.
529529

530530
.. code-block:: bash
531531
532-
sudo cp ~/zephyr-sdk-0.14.1/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
532+
sudo cp ~/zephyr-sdk-0.14.2/sysroots/x86_64-pokysdk-linux/usr/share/openocd/contrib/60-openocd.rules /etc/udev/rules.d
533533
sudo udevadm control --reload
534534
535535
.. group-tab:: macOS
@@ -540,8 +540,8 @@ as custom QEMU and OpenOCD builds.
540540
.. code-block:: bash
541541
542542
cd ~
543-
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/zephyr-sdk-0.14.1_macos-x86_64.tar.gz
544-
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/sha256.sum | shasum --check --ignore-missing
543+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/zephyr-sdk-0.14.2_macos-x86_64.tar.gz
544+
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/sha256.sum | shasum --check --ignore-missing
545545
546546
If your host architecture is 64-bit ARM (Apple Silicon, also known as M1), replace
547547
``x86_64`` with ``aarch64`` in order to download the 64-bit ARM macOS SDK.
@@ -550,7 +550,7 @@ as custom QEMU and OpenOCD builds.
550550

551551
.. code-block:: bash
552552
553-
tar xvf zephyr-sdk-0.14.1_macos-x86_64.tar.gz
553+
tar xvf zephyr-sdk-0.14.2_macos-x86_64.tar.gz
554554
555555
.. note::
556556
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
@@ -562,15 +562,15 @@ as custom QEMU and OpenOCD builds.
562562
* ``/opt``
563563
* ``/usr/local``
564564

565-
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.1`` directory and, when
565+
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.2`` directory and, when
566566
extracted under ``$HOME``, the resulting installation path will be
567-
``$HOME/zephyr-sdk-0.14.1``.
567+
``$HOME/zephyr-sdk-0.14.2``.
568568

569569
#. Run the Zephyr SDK bundle setup script:
570570

571571
.. code-block:: bash
572572
573-
cd zephyr-sdk-0.14.1
573+
cd zephyr-sdk-0.14.2
574574
./setup.sh
575575
576576
.. note::
@@ -589,29 +589,29 @@ as custom QEMU and OpenOCD builds.
589589
.. code-block:: console
590590
591591
cd %HOMEPATH%
592-
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/zephyr-sdk-0.14.1_windows-x86_64.zip
592+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/zephyr-sdk-0.14.2_windows-x86_64.zip
593593
594594
#. Extract the Zephyr SDK bundle archive:
595595

596596
.. code-block:: console
597597
598-
unzip zephyr-sdk-0.14.1_windows-x86_64.zip
598+
unzip zephyr-sdk-0.14.2_windows-x86_64.zip
599599
600600
.. note::
601601
It is recommended to extract the Zephyr SDK bundle at one of the following locations:
602602

603603
* ``%HOMEPATH%``
604604
* ``%PROGRAMFILES%``
605605

606-
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.1`` directory and, when
606+
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.2`` directory and, when
607607
extracted under ``%HOMEPATH%``, the resulting installation path will be
608-
``%HOMEPATH%\zephyr-sdk-0.14.1``.
608+
``%HOMEPATH%\zephyr-sdk-0.14.2``.
609609

610610
#. Run the Zephyr SDK bundle setup script:
611611

612612
.. code-block:: console
613613
614-
cd zephyr-sdk-0.14.1
614+
cd zephyr-sdk-0.14.2
615615
setup.cmd
616616
617617
.. note::

doc/develop/getting_started/installation_linux.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ Follow these steps to install the Zephyr SDK:
234234

235235
.. code-block:: bash
236236
237-
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/zephyr-sdk-0.14.1_linux-x86_64.tar.gz
238-
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.1/sha256.sum | shasum --check --ignore-missing
237+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/zephyr-sdk-0.14.2_linux-x86_64.tar.gz
238+
wget -O - https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.14.2/sha256.sum | shasum --check --ignore-missing
239239
240-
You can change ``0.14.1`` to another version if needed; the `Zephyr SDK
240+
You can change ``0.14.2`` to another version if needed; the `Zephyr SDK
241241
Releases`_ page contains all available SDK releases.
242242

243243
If your host architecture is 64-bit ARM (for example, Raspberry Pi), replace
@@ -248,13 +248,13 @@ Follow these steps to install the Zephyr SDK:
248248
.. code-block:: bash
249249
250250
cd <sdk download directory>
251-
tar xvf zephyr-sdk-0.14.1_linux-x86_64.tar.gz
251+
tar xvf zephyr-sdk-0.14.2_linux-x86_64.tar.gz
252252
253253
#. Run the Zephyr SDK bundle setup script:
254254

255255
.. code-block:: bash
256256
257-
cd zephyr-sdk-0.14.1
257+
cd zephyr-sdk-0.14.2
258258
./setup.sh
259259
260260
If this fails, make sure Zephyr's dependencies were installed as described
@@ -273,9 +273,9 @@ If you relocate the SDK directory, you need to re-run the setup script.
273273
* ``/opt``
274274
* ``/usr/local``
275275

276-
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.1`` directory and, when
276+
The Zephyr SDK bundle archive contains the ``zephyr-sdk-0.14.2`` directory and, when
277277
extracted under ``$HOME``, the resulting installation path will be
278-
``$HOME/zephyr-sdk-0.14.1``.
278+
``$HOME/zephyr-sdk-0.14.2``.
279279

280280
If you install the Zephyr SDK outside any of these locations, you must
281281
register the Zephyr SDK in the CMake package registry by running the setup

0 commit comments

Comments
 (0)