diff options
author | Paul Barker <pbarker@konsulko.com> | 2020-11-27 15:19:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-03 12:04:21 +0000 |
commit | 8faafa99cc9a45c1920ec3ea696a9ec7fb653194 (patch) | |
tree | 0b34a19a12e115e8b63219e5a6aec7a0b58b85bf | |
parent | 62c061968c12511dc09ad575caa75f8960ac27cf (diff) | |
download | poky-8faafa99cc9a45c1920ec3ea696a9ec7fb653194.tar.gz |
documentation: Simplify yocto_wiki links
The `yocto_wiki` external link directive is modified to include the
`/wiki` element of the URL so that we can simplify the links in the
text.
Note that there are still a couple of places where this directive
cannot be used, such as in the table of contents in index.rst.
(From yocto-docs rev: d8aa5f93d349f27db3d03a2c4bcc205649f45a8d)
Signed-off-by: Paul Barker <pbarker@konsulko.com>
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.rst | 2 | ||||
-rw-r--r-- | documentation/bsp-guide/bsp.rst | 2 | ||||
-rw-r--r-- | documentation/conf.py | 2 | ||||
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.rst | 14 | ||||
-rw-r--r-- | documentation/dev-manual/dev-manual-start.rst | 4 | ||||
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/faq.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/migration-3.2.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/ref-release-process.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/ref-system-requirements.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/ref-variables.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/resources.rst | 9 | ||||
-rw-r--r-- | documentation/test-manual/test-manual-intro.rst | 2 | ||||
-rw-r--r-- | documentation/test-manual/test-manual-test-process.rst | 2 | ||||
-rw-r--r-- | documentation/test-manual/test-manual-understand-autobuilder.rst | 2 |
15 files changed, 30 insertions, 29 deletions
diff --git a/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.rst b/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.rst index f6d863f5b7..8772812ebd 100644 --- a/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.rst +++ b/documentation/brief-yoctoprojectqs/brief-yoctoprojectqs.rst | |||
@@ -165,7 +165,7 @@ an entire Linux distribution, including the toolchain, from source. | |||
165 | infrastructure resources and get that information. A good starting | 165 | infrastructure resources and get that information. A good starting |
166 | point could also be to check your web browser settings. Finally, | 166 | point could also be to check your web browser settings. Finally, |
167 | you can find more information on the | 167 | you can find more information on the |
168 | ":yocto_wiki:`Working Behind a Network Proxy </wiki/Working_Behind_a_Network_Proxy>`" | 168 | ":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`" |
169 | page of the Yocto Project Wiki. | 169 | page of the Yocto Project Wiki. |
170 | 170 | ||
171 | #. **Initialize the Build Environment:** From within the ``poky`` | 171 | #. **Initialize the Build Environment:** From within the ``poky`` |
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst index 4086202121..d6a4f545cc 100644 --- a/documentation/bsp-guide/bsp.rst +++ b/documentation/bsp-guide/bsp.rst | |||
@@ -854,7 +854,7 @@ Before looking at BSP requirements, you should consider the following: | |||
854 | a BSP. You should consult the packaging and distribution guidelines | 854 | a BSP. You should consult the packaging and distribution guidelines |
855 | for your specific release process. For an example of packaging and | 855 | for your specific release process. For an example of packaging and |
856 | distribution requirements, see the ":yocto_wiki:`Third Party BSP Release | 856 | distribution requirements, see the ":yocto_wiki:`Third Party BSP Release |
857 | Process </wiki/Third_Party_BSP_Release_Process>`" | 857 | Process </Third_Party_BSP_Release_Process>`" |
858 | wiki page. | 858 | wiki page. |
859 | 859 | ||
860 | - The requirements for the BSP as it is made available to a developer | 860 | - The requirements for the BSP as it is made available to a developer |
diff --git a/documentation/conf.py b/documentation/conf.py index 96118abec0..c906d066a9 100644 --- a/documentation/conf.py +++ b/documentation/conf.py | |||
@@ -69,7 +69,7 @@ rst_prolog = """ | |||
69 | # external links and substitutions | 69 | # external links and substitutions |
70 | extlinks = { | 70 | extlinks = { |
71 | 'yocto_home': ('https://yoctoproject.org%s', None), | 71 | 'yocto_home': ('https://yoctoproject.org%s', None), |
72 | 'yocto_wiki': ('https://wiki.yoctoproject.org%s', None), | 72 | 'yocto_wiki': ('https://wiki.yoctoproject.org/wiki%s', None), |
73 | 'yocto_dl': ('https://downloads.yoctoproject.org%s', None), | 73 | 'yocto_dl': ('https://downloads.yoctoproject.org%s', None), |
74 | 'yocto_lists': ('https://lists.yoctoproject.org%s', None), | 74 | 'yocto_lists': ('https://lists.yoctoproject.org%s', None), |
75 | 'yocto_bugs': ('https://bugzilla.yoctoproject.org%s', None), | 75 | 'yocto_bugs': ('https://bugzilla.yoctoproject.org%s', None), |
diff --git a/documentation/dev-manual/dev-manual-common-tasks.rst b/documentation/dev-manual/dev-manual-common-tasks.rst index 706d5e7a64..4257a4bb99 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.rst +++ b/documentation/dev-manual/dev-manual-common-tasks.rst | |||
@@ -135,7 +135,7 @@ Follow these general steps to create your layer without using tools: | |||
135 | Lists all layers on which this layer depends (if any). | 135 | Lists all layers on which this layer depends (if any). |
136 | 136 | ||
137 | - :term:`LAYERSERIES_COMPAT`: | 137 | - :term:`LAYERSERIES_COMPAT`: |
138 | Lists the :yocto_wiki:`Yocto Project </wiki/Releases>` | 138 | Lists the :yocto_wiki:`Yocto Project </Releases>` |
139 | releases for which the current version is compatible. This | 139 | releases for which the current version is compatible. This |
140 | variable is a good way to indicate if your particular layer is | 140 | variable is a good way to indicate if your particular layer is |
141 | current. | 141 | current. |
@@ -6476,7 +6476,7 @@ the following: | |||
6476 | build system uses this string to help define the value of ``PV`` when | 6476 | build system uses this string to help define the value of ``PV`` when |
6477 | the source code revision needs to be included in it. | 6477 | the source code revision needs to be included in it. |
6478 | 6478 | ||
6479 | - :yocto_wiki:`PR Service </wiki/PR_Service>`: A | 6479 | - :yocto_wiki:`PR Service </PR_Service>`: A |
6480 | network-based service that helps automate keeping package feeds | 6480 | network-based service that helps automate keeping package feeds |
6481 | compatible with existing package manager applications such as RPM, | 6481 | compatible with existing package manager applications such as RPM, |
6482 | APT, and OPKG. | 6482 | APT, and OPKG. |
@@ -6518,7 +6518,7 @@ revision field, which removes the human element. | |||
6518 | .. note:: | 6518 | .. note:: |
6519 | 6519 | ||
6520 | For additional information on using a PR Service, you can see the | 6520 | For additional information on using a PR Service, you can see the |
6521 | :yocto_wiki:`PR Service </wiki/PR_Service>` wiki page. | 6521 | :yocto_wiki:`PR Service </PR_Service>` wiki page. |
6522 | 6522 | ||
6523 | The Yocto Project uses variables in order of decreasing priority to | 6523 | The Yocto Project uses variables in order of decreasing priority to |
6524 | facilitate revision numbering (i.e. | 6524 | facilitate revision numbering (i.e. |
@@ -7314,7 +7314,7 @@ where the result can be ``PASS``, ``FAIL``, or ``SKIP``, and | |||
7314 | the testname can be any identifying string. | 7314 | the testname can be any identifying string. |
7315 | 7315 | ||
7316 | For a list of Yocto Project recipes that are already enabled with ptest, | 7316 | For a list of Yocto Project recipes that are already enabled with ptest, |
7317 | see the :yocto_wiki:`Ptest </wiki/Ptest>` wiki page. | 7317 | see the :yocto_wiki:`Ptest </Ptest>` wiki page. |
7318 | 7318 | ||
7319 | .. note:: | 7319 | .. note:: |
7320 | 7320 | ||
@@ -10320,7 +10320,7 @@ Here are some other tips that you might find useful: | |||
10320 | Project implementation of | 10320 | Project implementation of |
10321 | :yocto_bugs:`Bugzilla <>`. For information on | 10321 | :yocto_bugs:`Bugzilla <>`. For information on |
10322 | how to submit a bug against the Yocto Project, see the Yocto Project | 10322 | how to submit a bug against the Yocto Project, see the Yocto Project |
10323 | Bugzilla :yocto_wiki:`wiki page </wiki/Bugzilla_Configuration_and_Bug_Tracking>` | 10323 | Bugzilla :yocto_wiki:`wiki page </Bugzilla_Configuration_and_Bug_Tracking>` |
10324 | and the "`Submitting a Defect Against the Yocto | 10324 | and the "`Submitting a Defect Against the Yocto |
10325 | Project <#submitting-a-defect-against-the-yocto-project>`__" section. | 10325 | Project <#submitting-a-defect-against-the-yocto-project>`__" section. |
10326 | 10326 | ||
@@ -10348,7 +10348,7 @@ implementation of Bugzilla see the ":ref:`Yocto Project | |||
10348 | Bugzilla <resources-bugtracker>`" section in the | 10348 | Bugzilla <resources-bugtracker>`" section in the |
10349 | Yocto Project Reference Manual. For more detail on any of the following | 10349 | Yocto Project Reference Manual. For more detail on any of the following |
10350 | steps, see the Yocto Project | 10350 | steps, see the Yocto Project |
10351 | :yocto_wiki:`Bugzilla wiki page </wiki/Bugzilla_Configuration_and_Bug_Tracking>`. | 10351 | :yocto_wiki:`Bugzilla wiki page </Bugzilla_Configuration_and_Bug_Tracking>`. |
10352 | 10352 | ||
10353 | Use the following general steps to submit a bug: | 10353 | Use the following general steps to submit a bug: |
10354 | 10354 | ||
@@ -10812,7 +10812,7 @@ master branch or the fix on the master branch is unsuitable for backporting. | |||
10812 | 10812 | ||
10813 | The list of stable branches along with the status and maintainer for each | 10813 | The list of stable branches along with the status and maintainer for each |
10814 | branch can be obtained from the | 10814 | branch can be obtained from the |
10815 | :yocto_wiki:`Releases wiki page </wiki/Releases>`. | 10815 | :yocto_wiki:`Releases wiki page </Releases>`. |
10816 | 10816 | ||
10817 | .. note:: | 10817 | .. note:: |
10818 | 10818 | ||
diff --git a/documentation/dev-manual/dev-manual-start.rst b/documentation/dev-manual/dev-manual-start.rst index f768f092be..07e822899a 100644 --- a/documentation/dev-manual/dev-manual-start.rst +++ b/documentation/dev-manual/dev-manual-start.rst | |||
@@ -305,7 +305,7 @@ Project Build Host: | |||
305 | validation and their status, see the ":ref:`Supported Linux | 305 | validation and their status, see the ":ref:`Supported Linux |
306 | Distributions <detailed-supported-distros>`" | 306 | Distributions <detailed-supported-distros>`" |
307 | section in the Yocto Project Reference Manual and the wiki page at | 307 | section in the Yocto Project Reference Manual and the wiki page at |
308 | :yocto_wiki:`Distribution Support </wiki/Distribution_Support>`. | 308 | :yocto_wiki:`Distribution Support </Distribution_Support>`. |
309 | 309 | ||
310 | 2. *Have Enough Free Memory:* Your system should have at least 50 Gbytes | 310 | 2. *Have Enough Free Memory:* Your system should have at least 50 Gbytes |
311 | of free disk space for building images. | 311 | of free disk space for building images. |
@@ -678,7 +678,7 @@ Releases <#accessing-index-of-releases>`__" section. | |||
678 | .. note:: | 678 | .. note:: |
679 | 679 | ||
680 | For a "map" of Yocto Project releases to version numbers, see the | 680 | For a "map" of Yocto Project releases to version numbers, see the |
681 | :yocto_wiki:`Releases </wiki/Releases>` wiki page. | 681 | :yocto_wiki:`Releases </Releases>` wiki page. |
682 | 682 | ||
683 | You can use the "RELEASE ARCHIVE" link to reveal a menu of all Yocto | 683 | You can use the "RELEASE ARCHIVE" link to reveal a menu of all Yocto |
684 | Project releases. | 684 | Project releases. |
diff --git a/documentation/kernel-dev/kernel-dev-common.rst b/documentation/kernel-dev/kernel-dev-common.rst index e548fa3a9d..5115f65f40 100644 --- a/documentation/kernel-dev/kernel-dev-common.rst +++ b/documentation/kernel-dev/kernel-dev-common.rst | |||
@@ -207,7 +207,7 @@ section: | |||
207 | building for actual hardware and not for emulation, you could flash | 207 | building for actual hardware and not for emulation, you could flash |
208 | the image to a USB stick on ``/dev/sdd`` and boot your device. For an | 208 | the image to a USB stick on ``/dev/sdd`` and boot your device. For an |
209 | example that uses a Minnowboard, see the | 209 | example that uses a Minnowboard, see the |
210 | :yocto_wiki:`TipsAndTricks/KernelDevelopmentWithEsdk </wiki/TipsAndTricks/KernelDevelopmentWithEsdk>` | 210 | :yocto_wiki:`TipsAndTricks/KernelDevelopmentWithEsdk </TipsAndTricks/KernelDevelopmentWithEsdk>` |
211 | Wiki page. | 211 | Wiki page. |
212 | 212 | ||
213 | At this point you have set up to start making modifications to the | 213 | At this point you have set up to start making modifications to the |
@@ -862,7 +862,7 @@ the ":ref:`kernel-dev/kernel-dev-common:getting ready to develop using \`\`devto | |||
862 | If the image you originally created resulted in a Wic file, you | 862 | If the image you originally created resulted in a Wic file, you |
863 | can use an alternate method to create the new image with the | 863 | can use an alternate method to create the new image with the |
864 | updated kernel. For an example, see the steps in the | 864 | updated kernel. For an example, see the steps in the |
865 | :yocto_wiki:`TipsAndTricks/KernelDevelopmentWithEsdk </wiki/TipsAndTricks/KernelDevelopmentWithEsdk>` | 865 | :yocto_wiki:`TipsAndTricks/KernelDevelopmentWithEsdk </TipsAndTricks/KernelDevelopmentWithEsdk>` |
866 | Wiki Page. | 866 | Wiki Page. |
867 | 867 | ||
868 | :: | 868 | :: |
diff --git a/documentation/ref-manual/faq.rst b/documentation/ref-manual/faq.rst index 576863eec6..3ffc1f2c41 100644 --- a/documentation/ref-manual/faq.rst +++ b/documentation/ref-manual/faq.rst | |||
@@ -140,7 +140,7 @@ The Yocto Project also includes a | |||
140 | ``meta-poky/conf/site.conf.sample`` file that shows how to configure CVS | 140 | ``meta-poky/conf/site.conf.sample`` file that shows how to configure CVS |
141 | and Git proxy servers if needed. For more information on setting up | 141 | and Git proxy servers if needed. For more information on setting up |
142 | various proxy types and configuring proxy servers, see the | 142 | various proxy types and configuring proxy servers, see the |
143 | ":yocto_wiki:`Working Behind a Network Proxy </wiki/Working_Behind_a_Network_Proxy>`" | 143 | ":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`" |
144 | Wiki page. | 144 | Wiki page. |
145 | 145 | ||
146 | **Q:** What's the difference between target and target\ ``-native``? | 146 | **Q:** What's the difference between target and target\ ``-native``? |
@@ -362,7 +362,7 @@ redirect requests through proxy servers. | |||
362 | .. note:: | 362 | .. note:: |
363 | 363 | ||
364 | You can find more information on the | 364 | You can find more information on the |
365 | ":yocto_wiki:`Working Behind a Network Proxy </wiki/Working_Behind_a_Network_Proxy>`" | 365 | ":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`" |
366 | Wiki page. | 366 | Wiki page. |
367 | 367 | ||
368 | **Q:** Can I get rid of build output so I can start over? | 368 | **Q:** Can I get rid of build output so I can start over? |
diff --git a/documentation/ref-manual/migration-3.2.rst b/documentation/ref-manual/migration-3.2.rst index 9b65e26c48..65a9ff4cac 100644 --- a/documentation/ref-manual/migration-3.2.rst +++ b/documentation/ref-manual/migration-3.2.rst | |||
@@ -71,7 +71,7 @@ be monitoring. | |||
71 | In addition, pseudo's behaviour on mismatches has now been changed - rather | 71 | In addition, pseudo's behaviour on mismatches has now been changed - rather |
72 | than doing what turns out to be a rather dangerous "fixup" if it sees a file | 72 | than doing what turns out to be a rather dangerous "fixup" if it sees a file |
73 | with a different path but the same inode as another file it has previously seen, | 73 | with a different path but the same inode as another file it has previously seen, |
74 | pseudo will throw an ``abort()`` and direct you to a :yocto_wiki:`wiki page </wiki/Pseudo_Abort>` | 74 | pseudo will throw an ``abort()`` and direct you to a :yocto_wiki:`wiki page </Pseudo_Abort>` |
75 | that explains how to deal with this. | 75 | that explains how to deal with this. |
76 | 76 | ||
77 | 77 | ||
diff --git a/documentation/ref-manual/ref-release-process.rst b/documentation/ref-manual/ref-release-process.rst index a6d9ff60ec..c77a3bcb18 100644 --- a/documentation/ref-manual/ref-release-process.rst +++ b/documentation/ref-manual/ref-release-process.rst | |||
@@ -64,7 +64,7 @@ codename are likely to be compatible and thus work together. | |||
64 | Releases are given a nominal release version as well but the codename is | 64 | Releases are given a nominal release version as well but the codename is |
65 | used in repositories for this reason. You can find information on Yocto | 65 | used in repositories for this reason. You can find information on Yocto |
66 | Project releases and codenames at | 66 | Project releases and codenames at |
67 | :yocto_wiki:`/wiki/Releases`. | 67 | :yocto_wiki:`/Releases`. |
68 | 68 | ||
69 | Stable Release Process | 69 | Stable Release Process |
70 | ====================== | 70 | ====================== |
@@ -94,7 +94,7 @@ Community LTS trees and branches exist where community members share | |||
94 | patches for older releases. However, these types of patches do not go | 94 | patches for older releases. However, these types of patches do not go |
95 | through the same release process as do point releases. You can find more | 95 | through the same release process as do point releases. You can find more |
96 | information about stable branch maintenance at | 96 | information about stable branch maintenance at |
97 | :yocto_wiki:`/wiki/Stable_branch_maintenance`. | 97 | :yocto_wiki:`/Stable_branch_maintenance`. |
98 | 98 | ||
99 | Testing and Quality Assurance | 99 | Testing and Quality Assurance |
100 | ============================= | 100 | ============================= |
diff --git a/documentation/ref-manual/ref-system-requirements.rst b/documentation/ref-manual/ref-system-requirements.rst index fe7c9252ca..af8663a5b2 100644 --- a/documentation/ref-manual/ref-system-requirements.rst +++ b/documentation/ref-manual/ref-system-requirements.rst | |||
@@ -93,7 +93,7 @@ distributions: | |||
93 | Bugzilla <>` and submit a bug. We are | 93 | Bugzilla <>` and submit a bug. We are |
94 | interested in hearing about your experience. For information on | 94 | interested in hearing about your experience. For information on |
95 | how to submit a bug, see the Yocto Project | 95 | how to submit a bug, see the Yocto Project |
96 | :yocto_wiki:`Bugzilla wiki page </wiki/Bugzilla_Configuration_and_Bug_Tracking>` | 96 | :yocto_wiki:`Bugzilla wiki page </Bugzilla_Configuration_and_Bug_Tracking>` |
97 | and the ":ref:`dev-manual/dev-manual-common-tasks:submitting a defect against the yocto project`" | 97 | and the ":ref:`dev-manual/dev-manual-common-tasks:submitting a defect against the yocto project`" |
98 | section in the Yocto Project Development Tasks Manual. | 98 | section in the Yocto Project Development Tasks Manual. |
99 | 99 | ||
diff --git a/documentation/ref-manual/ref-variables.rst b/documentation/ref-manual/ref-variables.rst index b24e1fa39e..921d19e7f5 100644 --- a/documentation/ref-manual/ref-variables.rst +++ b/documentation/ref-manual/ref-variables.rst | |||
@@ -1997,7 +1997,7 @@ system and gives an overview of their function and contents. | |||
1997 | process gets source files when working behind a firewall or proxy | 1997 | process gets source files when working behind a firewall or proxy |
1998 | server, see this specific question in the ":doc:`faq`" | 1998 | server, see this specific question in the ":doc:`faq`" |
1999 | chapter. You can also refer to the | 1999 | chapter. You can also refer to the |
2000 | ":yocto_wiki:`Working Behind a Network Proxy </wiki/Working_Behind_a_Network_Proxy>`" | 2000 | ":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`" |
2001 | Wiki page. | 2001 | Wiki page. |
2002 | 2002 | ||
2003 | :term:`DOC_COMPRESS` | 2003 | :term:`DOC_COMPRESS` |
@@ -4177,7 +4177,7 @@ system and gives an overview of their function and contents. | |||
4177 | To specify the OE-Core versions for which a layer is compatible, use | 4177 | To specify the OE-Core versions for which a layer is compatible, use |
4178 | this variable in your layer's ``conf/layer.conf`` configuration file. | 4178 | this variable in your layer's ``conf/layer.conf`` configuration file. |
4179 | For the list, use the Yocto Project | 4179 | For the list, use the Yocto Project |
4180 | :yocto_wiki:`Release Name </wiki/Releases>` (e.g. | 4180 | :yocto_wiki:`Release Name </Releases>` (e.g. |
4181 | DISTRO_NAME_NO_CAP). To specify multiple OE-Core versions for the | 4181 | DISTRO_NAME_NO_CAP). To specify multiple OE-Core versions for the |
4182 | layer, use a space-separated list: | 4182 | layer, use a space-separated list: |
4183 | :: | 4183 | :: |
diff --git a/documentation/ref-manual/resources.rst b/documentation/ref-manual/resources.rst index c172aab259..70ba8e7be5 100644 --- a/documentation/ref-manual/resources.rst +++ b/documentation/ref-manual/resources.rst | |||
@@ -50,7 +50,7 @@ against the Yocto Project, see the following: | |||
50 | - The ":ref:`dev-manual/dev-manual-common-tasks:submitting a defect against the yocto project`" | 50 | - The ":ref:`dev-manual/dev-manual-common-tasks:submitting a defect against the yocto project`" |
51 | section in the Yocto Project Development Tasks Manual. | 51 | section in the Yocto Project Development Tasks Manual. |
52 | 52 | ||
53 | - The Yocto Project :yocto_wiki:`Bugzilla wiki page </wiki/Bugzilla_Configuration_and_Bug_Tracking>` | 53 | - The Yocto Project :yocto_wiki:`Bugzilla wiki page </Bugzilla_Configuration_and_Bug_Tracking>` |
54 | 54 | ||
55 | For information on Bugzilla in general, see http://www.bugzilla.org/about/. | 55 | For information on Bugzilla in general, see http://www.bugzilla.org/about/. |
56 | 56 | ||
@@ -108,7 +108,7 @@ Here is a list of resources you might find helpful: | |||
108 | - :yocto_home:`The Yocto Project Website <>`\ *:* The home site | 108 | - :yocto_home:`The Yocto Project Website <>`\ *:* The home site |
109 | for the Yocto Project. | 109 | for the Yocto Project. |
110 | 110 | ||
111 | - :yocto_wiki:`The Yocto Project Main Wiki Page </wiki/Main_Page>`\ *:* The main wiki page for | 111 | - :yocto_wiki:`The Yocto Project Main Wiki Page <>`\ *:* The main wiki page for |
112 | the Yocto Project. This page contains information about project | 112 | the Yocto Project. This page contains information about project |
113 | planning, release engineering, QA & automation, a reference site map, | 113 | planning, release engineering, QA & automation, a reference site map, |
114 | and other resources related to the Yocto Project. | 114 | and other resources related to the Yocto Project. |
@@ -171,7 +171,7 @@ Here is a list of resources you might find helpful: | |||
171 | the :term:`OpenEmbedded Build System`, which uses | 171 | the :term:`OpenEmbedded Build System`, which uses |
172 | BitBake, that reports build information. | 172 | BitBake, that reports build information. |
173 | 173 | ||
174 | - :yocto_wiki:`FAQ </wiki/FAQ>`\ *:* A list of commonly asked | 174 | - :yocto_wiki:`FAQ </FAQ>`\ *:* A list of commonly asked |
175 | questions and their answers. | 175 | questions and their answers. |
176 | 176 | ||
177 | - *Release Notes:* Features, updates and known issues for the current | 177 | - *Release Notes:* Features, updates and known issues for the current |
@@ -184,7 +184,8 @@ Here is a list of resources you might find helpful: | |||
184 | the Yocto Project uses. If you find problems with the Yocto Project, | 184 | the Yocto Project uses. If you find problems with the Yocto Project, |
185 | you should report them using this application. | 185 | you should report them using this application. |
186 | 186 | ||
187 | - :yocto_wiki:`Bugzilla Configuration and Bug Tracking Wiki Page </wiki/Bugzilla_Configuration_and_Bug_Tracking>`\ *:* | 187 | - :yocto_wiki:`Bugzilla Configuration and Bug Tracking Wiki Page |
188 | </Bugzilla_Configuration_and_Bug_Tracking>`\ *:* | ||
188 | Information on how to get set up and use the Yocto Project | 189 | Information on how to get set up and use the Yocto Project |
189 | implementation of Bugzilla for logging and tracking Yocto Project | 190 | implementation of Bugzilla for logging and tracking Yocto Project |
190 | defects. | 191 | defects. |
diff --git a/documentation/test-manual/test-manual-intro.rst b/documentation/test-manual/test-manual-intro.rst index b6d1305916..cf511e9256 100644 --- a/documentation/test-manual/test-manual-intro.rst +++ b/documentation/test-manual/test-manual-intro.rst | |||
@@ -144,7 +144,7 @@ thefollowing types of tests: | |||
144 | :ref:`Testing Packages With | 144 | :ref:`Testing Packages With |
145 | ptest <dev-manual/dev-manual-common-tasks:Testing Packages With ptest>` section | 145 | ptest <dev-manual/dev-manual-common-tasks:Testing Packages With ptest>` section |
146 | in the Yocto Project Development Tasks Manual and the | 146 | in the Yocto Project Development Tasks Manual and the |
147 | ":yocto_wiki:`Ptest </wiki/Ptest>`" Wiki page for more | 147 | ":yocto_wiki:`Ptest </Ptest>`" Wiki page for more |
148 | information on Ptest. | 148 | information on Ptest. |
149 | 149 | ||
150 | - *SDK Testing:* Image tests initiated through the following command:: | 150 | - *SDK Testing:* Image tests initiated through the following command:: |
diff --git a/documentation/test-manual/test-manual-test-process.rst b/documentation/test-manual/test-manual-test-process.rst index 82b9bb441b..bbf0103803 100644 --- a/documentation/test-manual/test-manual-test-process.rst +++ b/documentation/test-manual/test-manual-test-process.rst | |||
@@ -25,7 +25,7 @@ at: :yocto_ab:`/typhoon/#/console`. | |||
25 | 25 | ||
26 | Builds are triggered manually when the test branches are ready. The | 26 | Builds are triggered manually when the test branches are ready. The |
27 | builds are monitored by the SWAT team. For additional information, see | 27 | builds are monitored by the SWAT team. For additional information, see |
28 | :yocto_wiki:`/wiki/Yocto_Build_Failure_Swat_Team`. | 28 | :yocto_wiki:`/Yocto_Build_Failure_Swat_Team`. |
29 | If successful, the changes would usually be merged to the ``master`` | 29 | If successful, the changes would usually be merged to the ``master`` |
30 | branch. If not successful, someone would respond to the changes on the | 30 | branch. If not successful, someone would respond to the changes on the |
31 | mailing list explaining that there was a failure in testing. The choice | 31 | mailing list explaining that there was a failure in testing. The choice |
diff --git a/documentation/test-manual/test-manual-understand-autobuilder.rst b/documentation/test-manual/test-manual-understand-autobuilder.rst index 698a266eef..ca0c5fd2e0 100644 --- a/documentation/test-manual/test-manual-understand-autobuilder.rst +++ b/documentation/test-manual/test-manual-understand-autobuilder.rst | |||
@@ -195,7 +195,7 @@ Resulttool is part of OpenEmbedded-Core and is used to manipulate these | |||
195 | json results files. It has the ability to merge files together, display | 195 | json results files. It has the ability to merge files together, display |
196 | reports of the test results and compare different result files. | 196 | reports of the test results and compare different result files. |
197 | 197 | ||
198 | For details, see :yocto_wiki:`/wiki/Resulttool`. | 198 | For details, see :yocto_wiki:`/Resulttool`. |
199 | 199 | ||
200 | run-config Target Execution | 200 | run-config Target Execution |
201 | =========================== | 201 | =========================== |