From 73059052d56a0042b82c530dac5a9aefe22fc009 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Mon, 21 Feb 2022 12:32:39 +0900 Subject: [PATCH] doc: getting_started: Add wget as a common host dependency This commit adds the instruction for installing the `wget` application for macOS and Windows hosts, such that it is available on all three host platforms when the Getting Started Guide is followed. The rationale behind this is as follows: * The Zephyr documentations, including the Getting Started Guide, makes extensive use of the wget command. * wget is a purpose-made tool for get/download requests and is more user-friendly than curl for the purpose of downloading files. Signed-off-by: Stephanos Ioannidis --- doc/getting_started/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/getting_started/index.rst b/doc/getting_started/index.rst index c1f5579161f..56682955b2a 100644 --- a/doc/getting_started/index.rst +++ b/doc/getting_started/index.rst @@ -119,7 +119,7 @@ The current minimum required version for the main dependencies are: .. code-block:: bash - brew install cmake ninja gperf python3 ccache qemu dtc + brew install cmake ninja gperf python3 ccache qemu dtc wget .. group-tab:: Windows @@ -163,7 +163,7 @@ The current minimum required version for the main dependencies are: .. code-block:: console choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' - choco install ninja gperf python git dtc-msys2 + choco install ninja gperf python git dtc-msys2 wget #. Close the window and open a new ``cmd.exe`` window **as a regular user** to continue.