diff options
author | Quentin Schulz <quentin.schulz@theobroma-systems.com> | 2023-06-22 18:51:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-24 12:23:01 +0100 |
commit | dae1bc68986ecedaa58e8ad39ce07d92954de1d7 (patch) | |
tree | a9e322a36f3d2e8363f5774f02499d7ef9551667 | |
parent | ea88a4ca8298271365378322c98566b9fe850fad (diff) | |
download | poky-dae1bc68986ecedaa58e8ad39ce07d92954de1d7.tar.gz |
docs: fix unnecessary double white space
There's no need for double white spaces here so let's just remove them.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: e41f6689157359777c3d86d9a7afed6f9e43782b)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/init-manager.rst | 2 | ||||
-rw-r--r-- | documentation/dev-manual/new-recipe.rst | 2 | ||||
-rw-r--r-- | documentation/dev-manual/upgrading-recipes.rst | 2 | ||||
-rw-r--r-- | documentation/migration-guides/migration-3.4.rst | 2 | ||||
-rw-r--r-- | documentation/migration-guides/release-notes-4.0.9.rst | 2 | ||||
-rw-r--r-- | documentation/overview-manual/concepts.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/release-process.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/terms.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/variables.rst | 4 |
9 files changed, 10 insertions, 10 deletions
diff --git a/documentation/dev-manual/init-manager.rst b/documentation/dev-manual/init-manager.rst index b96e011ebf..20d61ea830 100644 --- a/documentation/dev-manual/init-manager.rst +++ b/documentation/dev-manual/init-manager.rst | |||
@@ -53,7 +53,7 @@ The ":ref:`device-manager`" chapter has more details about device managers. | |||
53 | Using SysVinit with udev | 53 | Using SysVinit with udev |
54 | ========================= | 54 | ========================= |
55 | 55 | ||
56 | SysVinit with the udev device manager corresponds to the | 56 | SysVinit with the udev device manager corresponds to the |
57 | default setting in Poky. This corresponds to setting:: | 57 | default setting in Poky. This corresponds to setting:: |
58 | 58 | ||
59 | INIT_MANAGER = "sysvinit" | 59 | INIT_MANAGER = "sysvinit" |
diff --git a/documentation/dev-manual/new-recipe.rst b/documentation/dev-manual/new-recipe.rst index ab3e193aaf..1be04a7657 100644 --- a/documentation/dev-manual/new-recipe.rst +++ b/documentation/dev-manual/new-recipe.rst | |||
@@ -1603,7 +1603,7 @@ in the BitBake User Manual. | |||
1603 | space. Also, the operator is applied after all the ``+=``, and ``=+`` | 1603 | space. Also, the operator is applied after all the ``+=``, and ``=+`` |
1604 | operators have been applied and after all ``=`` assignments have | 1604 | operators have been applied and after all ``=`` assignments have |
1605 | occurred. This means that if ``:append`` is used in a recipe, it can | 1605 | occurred. This means that if ``:append`` is used in a recipe, it can |
1606 | only be overridden by another layer using the special ``:remove`` | 1606 | only be overridden by another layer using the special ``:remove`` |
1607 | operator, which in turn will prevent further layers from adding it back. | 1607 | operator, which in turn will prevent further layers from adding it back. |
1608 | 1608 | ||
1609 | The following example shows the space being explicitly added to the | 1609 | The following example shows the space being explicitly added to the |
diff --git a/documentation/dev-manual/upgrading-recipes.rst b/documentation/dev-manual/upgrading-recipes.rst index 13133fddcf..947ef138ac 100644 --- a/documentation/dev-manual/upgrading-recipes.rst +++ b/documentation/dev-manual/upgrading-recipes.rst | |||
@@ -73,7 +73,7 @@ The following steps describe how to set up the AUH utility: | |||
73 | onto your development host. The following command uses Git to create | 73 | onto your development host. The following command uses Git to create |
74 | a local copy of the repository on your system:: | 74 | a local copy of the repository on your system:: |
75 | 75 | ||
76 | $ git clone git://git.yoctoproject.org/auto-upgrade-helper | 76 | $ git clone git://git.yoctoproject.org/auto-upgrade-helper |
77 | Cloning into 'auto-upgrade-helper'... remote: Counting objects: 768, done. | 77 | Cloning into 'auto-upgrade-helper'... remote: Counting objects: 768, done. |
78 | remote: Compressing objects: 100% (300/300), done. | 78 | remote: Compressing objects: 100% (300/300), done. |
79 | remote: Total 768 (delta 499), reused 703 (delta 434) | 79 | remote: Total 768 (delta 499), reused 703 (delta 434) |
diff --git a/documentation/migration-guides/migration-3.4.rst b/documentation/migration-guides/migration-3.4.rst index a80d43a86b..f50fe5ee04 100644 --- a/documentation/migration-guides/migration-3.4.rst +++ b/documentation/migration-guides/migration-3.4.rst | |||
@@ -197,7 +197,7 @@ Package/recipe splitting | |||
197 | then you may now need to add it explicitly. | 197 | then you may now need to add it explicitly. |
198 | 198 | ||
199 | - The ``rpm`` package no longer has ``rpm-build`` in its :term:`RRECOMMENDS`; | 199 | - The ``rpm`` package no longer has ``rpm-build`` in its :term:`RRECOMMENDS`; |
200 | if by chance you still need rpm package building functionality in | 200 | if by chance you still need rpm package building functionality in |
201 | your image and you have not already done so then you should add | 201 | your image and you have not already done so then you should add |
202 | ``rpm-build`` to your image explicitly. | 202 | ``rpm-build`` to your image explicitly. |
203 | 203 | ||
diff --git a/documentation/migration-guides/release-notes-4.0.9.rst b/documentation/migration-guides/release-notes-4.0.9.rst index 7c35b85810..236477443a 100644 --- a/documentation/migration-guides/release-notes-4.0.9.rst +++ b/documentation/migration-guides/release-notes-4.0.9.rst | |||
@@ -54,7 +54,7 @@ Fixes in Yocto-4.0.9 | |||
54 | - gcc-shared-source: do not use ${S}/.. in deploy_source_date_epoch | 54 | - gcc-shared-source: do not use ${S}/.. in deploy_source_date_epoch |
55 | - glibc: Add missing binutils dependency | 55 | - glibc: Add missing binutils dependency |
56 | - image_types: fix multiubi var init | 56 | - image_types: fix multiubi var init |
57 | - iso-codes: upgrade to 4.13.0 | 57 | - iso-codes: upgrade to 4.13.0 |
58 | - json-c: Add ptest for json-c | 58 | - json-c: Add ptest for json-c |
59 | - kernel-yocto: fix kernel-meta data detection | 59 | - kernel-yocto: fix kernel-meta data detection |
60 | - lib/buildstats: handle tasks that never finished | 60 | - lib/buildstats: handle tasks that never finished |
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index 668e002565..af825a98ce 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst | |||
@@ -1989,7 +1989,7 @@ variables: | |||
1989 | - :term:`BB_HASHSERVE_UPSTREAM`, when ``BB_HASHSERVE = "auto"``, | 1989 | - :term:`BB_HASHSERVE_UPSTREAM`, when ``BB_HASHSERVE = "auto"``, |
1990 | allowing to connect the local server to an upstream one. | 1990 | allowing to connect the local server to an upstream one. |
1991 | 1991 | ||
1992 | - :term:`bitbake:BB_SIGNATURE_HANDLER`, which must be set to ``OEEquivHash``. | 1992 | - :term:`bitbake:BB_SIGNATURE_HANDLER`, which must be set to ``OEEquivHash``. |
1993 | 1993 | ||
1994 | Therefore, the default configuration in Poky corresponds to the | 1994 | Therefore, the default configuration in Poky corresponds to the |
1995 | below settings:: | 1995 | below settings:: |
diff --git a/documentation/ref-manual/release-process.rst b/documentation/ref-manual/release-process.rst index 2ffbd935c7..50e7d39629 100644 --- a/documentation/ref-manual/release-process.rst +++ b/documentation/ref-manual/release-process.rst | |||
@@ -122,7 +122,7 @@ of stable and :term:`LTS` releases. | |||
122 | 122 | ||
123 | In some circumstances, a layer can be created by the community in order to | 123 | In some circumstances, a layer can be created by the community in order to |
124 | add a specific feature or support a new version of some package for an :term:`LTS` | 124 | add a specific feature or support a new version of some package for an :term:`LTS` |
125 | release. This is called a :term:`Mixin` layer. These are thin and specific | 125 | release. This is called a :term:`Mixin` layer. These are thin and specific |
126 | purpose layers which can be stacked with an :term:`LTS` release to "mix" a specific | 126 | purpose layers which can be stacked with an :term:`LTS` release to "mix" a specific |
127 | feature into that build. These are created on an as-needed basis and | 127 | feature into that build. These are created on an as-needed basis and |
128 | maintained by the people who need them. | 128 | maintained by the people who need them. |
diff --git a/documentation/ref-manual/terms.rst b/documentation/ref-manual/terms.rst index 8f7281676c..bdb4f934cc 100644 --- a/documentation/ref-manual/terms.rst +++ b/documentation/ref-manual/terms.rst | |||
@@ -235,7 +235,7 @@ universal, the list includes them just in case: | |||
235 | 235 | ||
236 | - For booting the same kernel binary on multiple systems requiring | 236 | - For booting the same kernel binary on multiple systems requiring |
237 | different device drivers. The :term:`Initramfs` image is then customized | 237 | different device drivers. The :term:`Initramfs` image is then customized |
238 | for each type of system, to include the specific kernel modules | 238 | for each type of system, to include the specific kernel modules |
239 | necessary to access the final root filesystem. This technique | 239 | necessary to access the final root filesystem. This technique |
240 | is used on all GNU / Linux distributions for desktops and servers. | 240 | is used on all GNU / Linux distributions for desktops and servers. |
241 | 241 | ||
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 8ac46f9e73..ac5b97a526 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -1320,7 +1320,7 @@ system and gives an overview of their function and contents. | |||
1320 | This variable is specific to the :yocto_git:`GStreamer recipes | 1320 | This variable is specific to the :yocto_git:`GStreamer recipes |
1321 | </poky/tree/meta/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb>`. | 1321 | </poky/tree/meta/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb>`. |
1322 | It allows to build the GStreamer `"ugly" | 1322 | It allows to build the GStreamer `"ugly" |
1323 | <https://github.com/GStreamer/gst-plugins-ugly>`__ and | 1323 | <https://github.com/GStreamer/gst-plugins-ugly>`__ and |
1324 | `"bad" <https://github.com/GStreamer/gst-plugins-bad>`__ audio plugins. | 1324 | `"bad" <https://github.com/GStreamer/gst-plugins-bad>`__ audio plugins. |
1325 | 1325 | ||
1326 | See the :ref:`dev-manual/licenses:other variables related to commercial licenses` | 1326 | See the :ref:`dev-manual/licenses:other variables related to commercial licenses` |
@@ -1330,7 +1330,7 @@ system and gives an overview of their function and contents. | |||
1330 | This variable is specific to the :yocto_git:`GStreamer recipes | 1330 | This variable is specific to the :yocto_git:`GStreamer recipes |
1331 | </poky/tree/meta/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb>`. | 1331 | </poky/tree/meta/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb>`. |
1332 | It allows to build the GStreamer `"ugly" | 1332 | It allows to build the GStreamer `"ugly" |
1333 | <https://github.com/GStreamer/gst-plugins-ugly>`__ and | 1333 | <https://github.com/GStreamer/gst-plugins-ugly>`__ and |
1334 | `"bad" <https://github.com/GStreamer/gst-plugins-bad>`__ video plugins. | 1334 | `"bad" <https://github.com/GStreamer/gst-plugins-bad>`__ video plugins. |
1335 | 1335 | ||
1336 | See the :ref:`dev-manual/licenses:other variables related to commercial licenses` | 1336 | See the :ref:`dev-manual/licenses:other variables related to commercial licenses` |