summaryrefslogtreecommitdiffstats
path: root/user/start
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-10-06 11:10:11 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-10-06 11:10:11 +0200
commit9555e7cca7060413f620b98733dd05331d82ca2d (patch)
treed66def9a14eb6bfe55ebf0617286ab3e7ce931e1 /user/start
parentAdd AArch64 documentation (diff)
downloadrtems-docs-9555e7cca7060413f620b98733dd05331d82ca2d.tar.bz2
user: Fix RTEMS release URLs
Diffstat (limited to '')
-rw-r--r--user/start/sources.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/user/start/sources.rst b/user/start/sources.rst
index 70b1456..8c40aa0 100644
--- a/user/start/sources.rst
+++ b/user/start/sources.rst
@@ -32,9 +32,9 @@ Releases
You can download the source archives for a released RTEMS version from RTEMS'
servers. Releases can be view at https://ftp.rtems.org/pub/rtems/releases with
-the releases listed as a series under a release's major number. For RTEMS 5.1.0
+the releases listed as a series under a release's major number. For RTEMS 5.1
the release series is `5 <https://ftp.rtems.org/pub/rtems/releases/5>`_ and the
-release path is https://ftp.rtems.org/pub/rtems/releases/5/5.1.0.
+release path is https://ftp.rtems.org/pub/rtems/releases/5/5.1.
To work with the archives of a released RTEMS version, simply replace the
version number ``5`` used throughout this chapter with the version number you
@@ -46,18 +46,18 @@ Download and unpack using the ``curl`` and ``tar`` command with these commands:
mkdir -p $HOME/quick-start/src
cd $HOME/quick-start/src
- curl https://ftp.rtems.org/pub/rtems/releases/5/5.1.0/rtems-source-builder-5.1.0.tar.xz | tar xJf -
+ curl https://ftp.rtems.org/pub/rtems/releases/5/5.1/sources/rtems-source-builder-5.1.tar.xz | tar xJf -
If ``curl`` does not work consider using ``wget`` or a browser.
-The RSB is unpacked under the path ``rtems-source-builder-5.1.0``. Rename this
+The RSB is unpacked under the path ``rtems-source-builder-5.1``. Rename this
to ``rsb`` to get shorter paths during the tool suite build. To do this run
these commands:
.. code-block:: none
cd $HOME/quick-start/src
- mv rtems-source-builder-5.1.0 rsb
+ mv rtems-source-builder-5.1 rsb
.. _QuickStartSources_Released_RTEMS:
@@ -67,7 +67,7 @@ sources:
.. code-block:: none
cd $HOME/quick-start/src
- curl https://ftp.rtems.org/pub/rtems/releases/5/5.1.0/rtems-5.1.0.tar.xz | tar xJf -
+ curl https://ftp.rtems.org/pub/rtems/releases/5/5.1/sources/rtems-5.1.tar.xz | tar xJf -
.. _QuickStartSources_Git: