diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2023-01-05 08:34:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-06 17:39:09 +0000 |
commit | 8b1909aa6f7a51a878dc3d4a9223403ad3e164a9 (patch) | |
tree | e1418f545ad6640afb5fde004696eef2a9e6e67b /documentation/dev-manual/debugging.rst | |
parent | ae280972ffba62d7ed839b692957f61b0955cbca (diff) | |
download | poky-8b1909aa6f7a51a878dc3d4a9223403ad3e164a9.tar.gz |
manuals: simplify references to classes
Now that .bbclass is removed from class section titles.
We can now have, for example, :ref:`ref-classes-insane`
instead of :ref:`insane <ref-classes-insane>`.
Then, when necessary, rework paragraphs so that they
have lines of even length, not exceeding 80 characters.
(From yocto-docs rev: e76190e3be78c1e483bec0469f1e437dbf8f3791)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Suggested-by: Quentin Schulz <foss+yocto@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/debugging.rst')
-rw-r--r-- | documentation/dev-manual/debugging.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst index 921022475f..9fb159eae6 100644 --- a/documentation/dev-manual/debugging.rst +++ b/documentation/dev-manual/debugging.rst | |||
@@ -153,7 +153,7 @@ In addition to variable values, the output of the ``bitbake -e`` and | |||
153 | classes included globally, recursively listing the files they include | 153 | classes included globally, recursively listing the files they include |
154 | or inherit in turn. Much of the behavior of the OpenEmbedded build | 154 | or inherit in turn. Much of the behavior of the OpenEmbedded build |
155 | system (including the behavior of the :ref:`ref-manual/tasks:normal recipe build tasks`) is | 155 | system (including the behavior of the :ref:`ref-manual/tasks:normal recipe build tasks`) is |
156 | implemented in the :ref:`base <ref-classes-base>` class and the | 156 | implemented in the :ref:`ref-classes-base` class and the |
157 | classes it inherits, rather than being built into BitBake itself. | 157 | classes it inherits, rather than being built into BitBake itself. |
158 | 158 | ||
159 | - After the variable values, all functions appear in the output. For | 159 | - After the variable values, all functions appear in the output. For |
@@ -196,8 +196,7 @@ Following are a few of the available ``oe-pkgdata-util`` subcommands. | |||
196 | which contains the files stored in that package. | 196 | which contains the files stored in that package. |
197 | 197 | ||
198 | If you want to inspect the ``${WORKDIR}/packages-split`` | 198 | If you want to inspect the ``${WORKDIR}/packages-split`` |
199 | directory, make sure that | 199 | directory, make sure that :ref:`ref-classes-rm-work` is not |
200 | :ref:`rm_work <ref-classes-rm-work>` is not | ||
201 | enabled when you build the recipe. | 200 | enabled when you build the recipe. |
202 | 201 | ||
203 | - ``oe-pkgdata-util find-path path ...``: Lists the names of | 202 | - ``oe-pkgdata-util find-path path ...``: Lists the names of |
@@ -598,8 +597,7 @@ log to ``${T}/log.do_``\ `task`, and can also log to standard output | |||
598 | 597 | ||
599 | The same logging functions are also available in shell functions, under | 598 | The same logging functions are also available in shell functions, under |
600 | the names ``bbplain``, ``bbnote``, ``bbdebug``, ``bbwarn``, ``bberror``, | 599 | the names ``bbplain``, ``bbnote``, ``bbdebug``, ``bbwarn``, ``bberror``, |
601 | and ``bbfatal``. The | 600 | and ``bbfatal``. The :ref:`ref-classes-logging` class |
602 | :ref:`logging <ref-classes-logging>` class | ||
603 | implements these functions. See that class in the ``meta/classes`` | 601 | implements these functions. See that class in the ``meta/classes`` |
604 | folder of the :term:`Source Directory` for information. | 602 | folder of the :term:`Source Directory` for information. |
605 | 603 | ||