diff options
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/bsp-guide/bsp.rst | 4 | ||||
-rw-r--r-- | documentation/conf.py | 6 | ||||
-rw-r--r-- | documentation/ref-manual/classes.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/yocto-project-supported-features.rst | 2 |
4 files changed, 10 insertions, 6 deletions
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst index 09246b4ae4..7eaa4d8700 100644 --- a/documentation/bsp-guide/bsp.rst +++ b/documentation/bsp-guide/bsp.rst | |||
@@ -172,7 +172,7 @@ section. | |||
172 | #. *Optionally Clone the meta-intel BSP Layer:* If your hardware is | 172 | #. *Optionally Clone the meta-intel BSP Layer:* If your hardware is |
173 | based on current Intel CPUs and devices, you can leverage this BSP | 173 | based on current Intel CPUs and devices, you can leverage this BSP |
174 | layer. For details on the ``meta-intel`` BSP layer, see the layer's | 174 | layer. For details on the ``meta-intel`` BSP layer, see the layer's |
175 | :yocto_git:`README </meta-intel/tree/README>` file. | 175 | :yocto_git:`README </meta-intel/tree/README.md>` file. |
176 | 176 | ||
177 | #. *Navigate to Your Source Directory:* Typically, you set up the | 177 | #. *Navigate to Your Source Directory:* Typically, you set up the |
178 | ``meta-intel`` Git repository inside the :term:`Source Directory` (e.g. | 178 | ``meta-intel`` Git repository inside the :term:`Source Directory` (e.g. |
@@ -204,7 +204,7 @@ section. | |||
204 | .. note:: | 204 | .. note:: |
205 | 205 | ||
206 | To see the available branch names in a cloned repository, use the ``git | 206 | To see the available branch names in a cloned repository, use the ``git |
207 | branch -al`` command. See the | 207 | branch -a`` command. See the |
208 | ":ref:`dev-manual/start:checking out by branch in poky`" | 208 | ":ref:`dev-manual/start:checking out by branch in poky`" |
209 | section in the Yocto Project Development Tasks Manual for more | 209 | section in the Yocto Project Development Tasks Manual for more |
210 | information. | 210 | information. |
diff --git a/documentation/conf.py b/documentation/conf.py index 1eca8756ab..c07b6c4199 100644 --- a/documentation/conf.py +++ b/documentation/conf.py | |||
@@ -179,13 +179,13 @@ from sphinx.search import SearchEnglish | |||
179 | from sphinx.search import languages | 179 | from sphinx.search import languages |
180 | class DashFriendlySearchEnglish(SearchEnglish): | 180 | class DashFriendlySearchEnglish(SearchEnglish): |
181 | 181 | ||
182 | # Accept words that can include hyphens | 182 | # Accept words that can include 'inner' hyphens or dots |
183 | _word_re = re.compile(r'[\w\-]+') | 183 | _word_re = re.compile(r'[\w]+(?:[\.\-][\w]+)*') |
184 | 184 | ||
185 | js_splitter_code = r""" | 185 | js_splitter_code = r""" |
186 | function splitQuery(query) { | 186 | function splitQuery(query) { |
187 | return query | 187 | return query |
188 | .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}-]+/gu) | 188 | .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}\-\.]+/gu) |
189 | .filter(term => term.length > 0); | 189 | .filter(term => term.length > 0); |
190 | } | 190 | } |
191 | """ | 191 | """ |
diff --git a/documentation/ref-manual/classes.rst b/documentation/ref-manual/classes.rst index f2f6e6e411..4705ca3f4d 100644 --- a/documentation/ref-manual/classes.rst +++ b/documentation/ref-manual/classes.rst | |||
@@ -1591,6 +1591,10 @@ The tests you can list with the :term:`WARN_QA` and | |||
1591 | For example, assignments such as ``FILES:${PN} = "xyz"`` effectively | 1591 | For example, assignments such as ``FILES:${PN} = "xyz"`` effectively |
1592 | turn into ``FILES = "xyz"``. | 1592 | turn into ``FILES = "xyz"``. |
1593 | 1593 | ||
1594 | - ``recipe-naming:`` Checks that the recipe name and recipe class match, so | ||
1595 | that ``*-native`` recipes inherit :ref:`ref-classes-native` and | ||
1596 | ``nativesdk-*`` recipes inherit :ref:`ref-classes-nativesdk`. | ||
1597 | |||
1594 | - ``rpaths:`` Checks for rpaths in the binaries that contain build | 1598 | - ``rpaths:`` Checks for rpaths in the binaries that contain build |
1595 | system paths such as :term:`TMPDIR`. If this test fails, bad ``-rpath`` | 1599 | system paths such as :term:`TMPDIR`. If this test fails, bad ``-rpath`` |
1596 | options are being passed to the linker commands and your binaries | 1600 | options are being passed to the linker commands and your binaries |
diff --git a/documentation/ref-manual/yocto-project-supported-features.rst b/documentation/ref-manual/yocto-project-supported-features.rst index 283c79d4cc..0e6c33cf6e 100644 --- a/documentation/ref-manual/yocto-project-supported-features.rst +++ b/documentation/ref-manual/yocto-project-supported-features.rst | |||
@@ -86,7 +86,7 @@ Below is a list of primary tested features, their maintainer(s) and builder(s): | |||
86 | - meta-aws | 86 | - meta-aws |
87 | * - `meta-intel <https://git.yoctoproject.org/meta-intel>`__ | 87 | * - `meta-intel <https://git.yoctoproject.org/meta-intel>`__ |
88 | - meta-intel layer testing | 88 | - meta-intel layer testing |
89 | - TBD | 89 | - meta-intel mailing list <meta-intel@lists.yoctoproject.org> |
90 | - meta-intel | 90 | - meta-intel |
91 | * - `meta-exein <https://github.com/exein-io/meta-exein>`__ | 91 | * - `meta-exein <https://github.com/exein-io/meta-exein>`__ |
92 | - meta-exein layer testing | 92 | - meta-exein layer testing |