diff options
| author | Antonin Godard <antonin.godard@bootlin.com> | 2025-04-09 11:55:42 +0200 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2025-05-02 08:12:41 -0700 |
| commit | e9e862752d122945318685ff9eaf6a3090f0f961 (patch) | |
| tree | e2f7947861e3753a5a83e0e87c65267cb7dfd18f /documentation/sdk-manual | |
| parent | dc41858fe3622e8f5e088a7402ef89cd4a560236 (diff) | |
| download | poky-e9e862752d122945318685ff9eaf6a3090f0f961.tar.gz | |
Fix dead links that use the DISTRO macro
After introducing the DISTRO_LATEST_TAG and DISTRO_REL_LATEST_TAG
macros, use them in links that currently use DISTRO/DISTRO_REL_TAG. When
building for the tip of a branch, this will replace the current A.B.999
in links to the latest existing tag.
The links were found across the documentation by running 'grep -r
"http.*5\.2\.999"' inside the _build/html output after building the
docs.
[YOCTO #14802]
(From yocto-docs rev: 0d51e553d5f83eea6634e03ddc9c7740bf72fcea)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 29be069ebbf2c55d72fc51d99ed5a558af37c05e)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/sdk-manual')
| -rw-r--r-- | documentation/sdk-manual/appendix-obtain.rst | 6 | ||||
| -rw-r--r-- | documentation/sdk-manual/extensible.rst | 2 | ||||
| -rw-r--r-- | documentation/sdk-manual/intro.rst | 4 | ||||
| -rw-r--r-- | documentation/sdk-manual/using.rst | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/documentation/sdk-manual/appendix-obtain.rst b/documentation/sdk-manual/appendix-obtain.rst index d384b4916a..152f9f8494 100644 --- a/documentation/sdk-manual/appendix-obtain.rst +++ b/documentation/sdk-manual/appendix-obtain.rst | |||
| @@ -15,7 +15,7 @@ and then run the script to hand-install the toolchain. | |||
| 15 | Follow these steps to locate and hand-install the toolchain: | 15 | Follow these steps to locate and hand-install the toolchain: |
| 16 | 16 | ||
| 17 | 1. *Go to the Installers Directory:* Go to | 17 | 1. *Go to the Installers Directory:* Go to |
| 18 | :yocto_dl:`/releases/yocto/yocto-&DISTRO;/toolchain/` | 18 | :yocto_dl:`/releases/yocto/&DISTRO_REL_LATEST_TAG;/toolchain/` |
| 19 | 19 | ||
| 20 | 2. *Open the Folder for Your Build Host:* Open the folder that matches | 20 | 2. *Open the Folder for Your Build Host:* Open the folder that matches |
| 21 | your :term:`Build Host` (i.e. | 21 | your :term:`Build Host` (i.e. |
| @@ -191,7 +191,7 @@ Follow these steps to extract the root filesystem: | |||
| 191 | Image File:* You need to find and download the root filesystem image | 191 | Image File:* You need to find and download the root filesystem image |
| 192 | file that is appropriate for your target system. These files are kept | 192 | file that is appropriate for your target system. These files are kept |
| 193 | in machine-specific folders in the | 193 | in machine-specific folders in the |
| 194 | :yocto_dl:`Index of Releases </releases/yocto/yocto-&DISTRO;/machines/>` | 194 | :yocto_dl:`Index of Releases </releases/yocto/&DISTRO_REL_LATEST_TAG;/machines/>` |
| 195 | in the "machines" directory. | 195 | in the "machines" directory. |
| 196 | 196 | ||
| 197 | The machine-specific folders of the "machines" directory contain | 197 | The machine-specific folders of the "machines" directory contain |
| @@ -235,7 +235,7 @@ Follow these steps to extract the root filesystem: | |||
| 235 | 235 | ||
| 236 | Here is an example command that extracts the root filesystem | 236 | Here is an example command that extracts the root filesystem |
| 237 | from a previously built root filesystem image that was downloaded | 237 | from a previously built root filesystem image that was downloaded |
| 238 | from the :yocto_dl:`Index of Releases </releases/yocto/yocto-&DISTRO;/machines/>`. | 238 | from the :yocto_dl:`Index of Releases </releases/yocto/&DISTRO_REL_LATEST_TAG;/machines/>`. |
| 239 | This command extracts the root filesystem into the ``core2-64-sato`` | 239 | This command extracts the root filesystem into the ``core2-64-sato`` |
| 240 | directory:: | 240 | directory:: |
| 241 | 241 | ||
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst index 7edb3eb4b4..2142b5525a 100644 --- a/documentation/sdk-manual/extensible.rst +++ b/documentation/sdk-manual/extensible.rst | |||
| @@ -47,7 +47,7 @@ Host` by running the ``*.sh`` installation script. | |||
| 47 | You can download a tarball installer, which includes the pre-built | 47 | You can download a tarball installer, which includes the pre-built |
| 48 | toolchain, the ``runqemu`` script, the internal build system, | 48 | toolchain, the ``runqemu`` script, the internal build system, |
| 49 | ``devtool``, and support files from the appropriate | 49 | ``devtool``, and support files from the appropriate |
| 50 | :yocto_dl:`toolchain </releases/yocto/yocto-&DISTRO;/toolchain/>` directory within the Index of | 50 | :yocto_dl:`toolchain </releases/yocto/&DISTRO_REL_LATEST_TAG;/toolchain/>` directory within the Index of |
| 51 | Releases. Toolchains are available for several 32-bit and 64-bit | 51 | Releases. Toolchains are available for several 32-bit and 64-bit |
| 52 | architectures with the ``x86_64`` directories, respectively. The | 52 | architectures with the ``x86_64`` directories, respectively. The |
| 53 | toolchains the Yocto Project provides are based off the | 53 | toolchains the Yocto Project provides are based off the |
diff --git a/documentation/sdk-manual/intro.rst b/documentation/sdk-manual/intro.rst index 4310e133fb..676508e57e 100644 --- a/documentation/sdk-manual/intro.rst +++ b/documentation/sdk-manual/intro.rst | |||
| @@ -173,7 +173,7 @@ You just need to follow these general steps: | |||
| 173 | root filesystem images. | 173 | root filesystem images. |
| 174 | 174 | ||
| 175 | If you are going to develop your application on hardware, go to the | 175 | If you are going to develop your application on hardware, go to the |
| 176 | :yocto_dl:`machines </releases/yocto/yocto-&DISTRO;/machines/>` download area and choose a | 176 | :yocto_dl:`machines </releases/yocto/&DISTRO_REL_LATEST_TAG;/machines/>` download area and choose a |
| 177 | target machine area from which to download the kernel image and root | 177 | target machine area from which to download the kernel image and root |
| 178 | filesystem. This download area could have several files in it that | 178 | filesystem. This download area could have several files in it that |
| 179 | support development using actual hardware. For example, the area | 179 | support development using actual hardware. For example, the area |
| @@ -183,7 +183,7 @@ You just need to follow these general steps: | |||
| 183 | 183 | ||
| 184 | If you are going to develop your application and then run and test it | 184 | If you are going to develop your application and then run and test it |
| 185 | using the QEMU emulator, go to the | 185 | using the QEMU emulator, go to the |
| 186 | :yocto_dl:`machines/qemu </releases/yocto/yocto-&DISTRO;/machines/qemu>` download area. From this | 186 | :yocto_dl:`machines/qemu </releases/yocto/&DISTRO_REL_LATEST_TAG;/machines/qemu>` download area. From this |
| 187 | area, go down into the directory for your target architecture (e.g. | 187 | area, go down into the directory for your target architecture (e.g. |
| 188 | ``qemux86_64`` for an Intel-based 64-bit architecture). Download the | 188 | ``qemux86_64`` for an Intel-based 64-bit architecture). Download the |
| 189 | kernel, root filesystem, and any other files you need for your | 189 | kernel, root filesystem, and any other files you need for your |
diff --git a/documentation/sdk-manual/using.rst b/documentation/sdk-manual/using.rst index 301627812c..220c79440c 100644 --- a/documentation/sdk-manual/using.rst +++ b/documentation/sdk-manual/using.rst | |||
| @@ -43,7 +43,7 @@ Host` by running the ``*.sh`` installation script. | |||
| 43 | 43 | ||
| 44 | You can download a tarball installer, which includes the pre-built | 44 | You can download a tarball installer, which includes the pre-built |
| 45 | toolchain, the ``runqemu`` script, and support files from the | 45 | toolchain, the ``runqemu`` script, and support files from the |
| 46 | appropriate :yocto_dl:`toolchain </releases/yocto/yocto-&DISTRO;/toolchain/>` directory within | 46 | appropriate :yocto_dl:`toolchain </releases/yocto/&DISTRO_REL_LATEST_TAG;/toolchain/>` directory within |
| 47 | the Index of Releases. Toolchains are available for several 32-bit and | 47 | the Index of Releases. Toolchains are available for several 32-bit and |
| 48 | 64-bit architectures with the ``x86_64`` directories, respectively. The | 48 | 64-bit architectures with the ``x86_64`` directories, respectively. The |
| 49 | toolchains the Yocto Project provides are based off the | 49 | toolchains the Yocto Project provides are based off the |
