manuals: font fixes

This fixes font inconsistencies, mixing a ``text`` string
with another string with the regular font, where the whole string
makes more sense with a single font.

The result is also much simpler and will make future
searches easier.

(From yocto-docs rev: e6d1c166a97a1b6bb42ca49dfcbd3d39f8eadc16)

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Opdenacker
2021-09-03 10:46:25 +02:00
committed by Richard Purdie
parent 2e78ec95be
commit f7a8e145e9
7 changed files with 12 additions and 12 deletions

View File

@@ -9453,8 +9453,8 @@ log to ``${T}/log.do_``\ `task`, and can also log to standard output
Calling this function does not cause the task to fail. Calling this function does not cause the task to fail.
- ``bb.fatal(``\ msg\ ``)``: This logging function is similar to - ``bb.fatal(msg)``: This logging function is similar to
``bb.error(``\ msg\ ``)`` but also causes the calling task to fail. ``bb.error(msg)`` but also causes the calling task to fail.
.. note:: .. note::

View File

@@ -87,8 +87,8 @@ This section provides information about packaging changes.
``bind-utils`` package. ``bind-utils`` package.
- Debug split: The default debug split has been changed to create - Debug split: The default debug split has been changed to create
separate source packages (i.e. package_name\ ``-dbg`` and separate source packages (i.e. ``package_name-dbg`` and
package_name\ ``-src``). If you are currently using ``dbg-pkgs`` in ``package_name-src``). If you are currently using ``dbg-pkgs`` in
:term:`IMAGE_FEATURES` to bring in debug :term:`IMAGE_FEATURES` to bring in debug
symbols and you still need the sources, you must now also add symbols and you still need the sources, you must now also add
``src-pkgs`` to :term:`IMAGE_FEATURES`. Source packages remain in the ``src-pkgs`` to :term:`IMAGE_FEATURES`. Source packages remain in the

View File

@@ -1200,7 +1200,7 @@ usually made available in the form of a shared state (sstate) cache.
:term:`SSTATE_MIRRORS` :term:`SSTATE_MIRRORS`
variables. variables.
The idea of a setscene task (i.e ``do_``\ taskname\ ``_setscene``) is a The idea of a setscene task (i.e ``do_taskname_setscene``) is a
version of the task where instead of building something, BitBake can version of the task where instead of building something, BitBake can
skip to the end result and simply place a set of files into specific skip to the end result and simply place a set of files into specific
locations as needed. In some cases, it makes sense to have a setscene locations as needed. In some cases, it makes sense to have a setscene

View File

@@ -1600,7 +1600,7 @@ or other tools from the build host).
You can create a recipe that builds tools that run natively on the host You can create a recipe that builds tools that run natively on the host
a couple different ways: a couple different ways:
- Create a myrecipe\ ``-native.bb`` recipe that inherits the ``native`` - Create a ``myrecipe-native.bb`` recipe that inherits the ``native``
class. If you use this method, you must order the inherit statement class. If you use this method, you must order the inherit statement
in the recipe after all other inherit statements so that the in the recipe after all other inherit statements so that the
``native`` class is inherited last. ``native`` class is inherited last.
@@ -1642,7 +1642,7 @@ wish to build tools to run as part of an SDK (i.e. tools that run on
You can create a recipe that builds tools that run on the SDK machine a You can create a recipe that builds tools that run on the SDK machine a
couple different ways: couple different ways:
- Create a ``nativesdk-``\ myrecipe\ ``.bb`` recipe that inherits the - Create a ``nativesdk-myrecipe.bb`` recipe that inherits the
``nativesdk`` class. If you use this method, you must order the ``nativesdk`` class. If you use this method, you must order the
inherit statement in the recipe after all other inherit statements so inherit statement in the recipe after all other inherit statements so
that the ``nativesdk`` class is inherited last. that the ``nativesdk`` class is inherited last.

View File

@@ -143,7 +143,7 @@ various proxy types and configuring proxy servers, see the
":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`" ":yocto_wiki:`Working Behind a Network Proxy </Working_Behind_a_Network_Proxy>`"
Wiki page. Wiki page.
**Q:** What's the difference between target and target\ ``-native``? **Q:** What's the difference between ``target`` and ``target-native``?
**A:** The ``*-native`` targets are designed to run on the system being **A:** The ``*-native`` targets are designed to run on the system being
used for the build. These are usually tools that are needed to assist used for the build. These are usually tools that are needed to assist

View File

@@ -31,7 +31,7 @@ universal, the list includes them just in case:
busybox_1.21.%.bbappend busybox_1.21.%.bbappend
That append file That append file
would match any ``busybox_1.21.``\ x\ ``.bb`` version of the recipe. So, would match any ``busybox_1.21.x.bb`` version of the recipe. So,
the append file would match any of the following recipe names: the append file would match any of the following recipe names:
.. code-block:: shell .. code-block:: shell

View File

@@ -730,7 +730,7 @@ system and gives an overview of their function and contents.
Each configuration file you Each configuration file you
use must reside in the :term:`Build Directory` use must reside in the :term:`Build Directory`
``conf/multiconfig`` directory (e.g. ``conf/multiconfig`` directory (e.g.
build_directory\ ``/conf/multiconfig/configA.conf``). ``build_directory/conf/multiconfig/configA.conf``).
For information on how to use :term:`BBMULTICONFIG` in an environment For information on how to use :term:`BBMULTICONFIG` in an environment
that supports building targets with multiple configurations, see the that supports building targets with multiple configurations, see the
@@ -5364,7 +5364,7 @@ system and gives an overview of their function and contents.
so one of two ways: so one of two ways:
- *Append file:* Create an append file named - *Append file:* Create an append file named
recipename\ ``.bbappend`` in your layer and override the value of ``recipename.bbappend`` in your layer and override the value of
:term:`PACKAGECONFIG`. You can either completely override the :term:`PACKAGECONFIG`. You can either completely override the
variable:: variable::
@@ -8745,7 +8745,7 @@ system and gives an overview of their function and contents.
:term:`WKS_FILE` :term:`WKS_FILE`
Specifies the location of the Wic kickstart file that is used by the Specifies the location of the Wic kickstart file that is used by the
OpenEmbedded build system to create a partitioned image OpenEmbedded build system to create a partitioned image
(image\ ``.wic``). For information on how to create a partitioned (``image.wic``). For information on how to create a partitioned
image, see the image, see the
":ref:`dev-manual/common-tasks:creating partitioned images using wic`" ":ref:`dev-manual/common-tasks:creating partitioned images using wic`"
section in the Yocto Project Development Tasks Manual. For details on section in the Yocto Project Development Tasks Manual. For details on