diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-05-05 15:25:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-13 11:28:34 +0100 |
commit | f3540fc691c12aca637ddea71bd0090ddcc40e19 (patch) | |
tree | 32557407d52c70bff8490b53cde12b3314e97307 | |
parent | e145129aaa7aefd057ba7551445965602447045c (diff) | |
download | poky-f3540fc691c12aca637ddea71bd0090ddcc40e19.tar.gz |
manuals: reduce verbosity with "worry about" expression
(From yocto-docs rev: 6c65f5f350cdc79a435deb20c48d861d9f4c5c14)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 4 | ||||
-rw-r--r-- | documentation/kernel-dev/common.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/classes.rst | 4 | ||||
-rw-r--r-- | documentation/ref-manual/structure.rst | 2 | ||||
-rw-r--r-- | documentation/toaster-manual/reference.rst | 5 |
5 files changed, 9 insertions, 10 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 37c7a19bfa..4200b8dd61 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -1589,7 +1589,7 @@ your software is built: | |||
1589 | 1589 | ||
1590 | - *Autotools:* If your source files have a ``configure.ac`` file, then | 1590 | - *Autotools:* If your source files have a ``configure.ac`` file, then |
1591 | your software is built using Autotools. If this is the case, you just | 1591 | your software is built using Autotools. If this is the case, you just |
1592 | need to worry about modifying the configuration. | 1592 | need to modify the configuration. |
1593 | 1593 | ||
1594 | When using Autotools, your recipe needs to inherit the | 1594 | When using Autotools, your recipe needs to inherit the |
1595 | :ref:`autotools <ref-classes-autotools>` class | 1595 | :ref:`autotools <ref-classes-autotools>` class |
@@ -1603,7 +1603,7 @@ your software is built: | |||
1603 | 1603 | ||
1604 | - *CMake:* If your source files have a ``CMakeLists.txt`` file, then | 1604 | - *CMake:* If your source files have a ``CMakeLists.txt`` file, then |
1605 | your software is built using CMake. If this is the case, you just | 1605 | your software is built using CMake. If this is the case, you just |
1606 | need to worry about modifying the configuration. | 1606 | need to modify the configuration. |
1607 | 1607 | ||
1608 | When you use CMake, your recipe needs to inherit the | 1608 | When you use CMake, your recipe needs to inherit the |
1609 | :ref:`cmake <ref-classes-cmake>` class and your | 1609 | :ref:`cmake <ref-classes-cmake>` class and your |
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst index 5935d6f560..cea3ce7405 100644 --- a/documentation/kernel-dev/common.rst +++ b/documentation/kernel-dev/common.rst | |||
@@ -589,8 +589,8 @@ recipe is processed. | |||
589 | 589 | ||
590 | In general, however, the Yocto Project maintainers take care of | 590 | In general, however, the Yocto Project maintainers take care of |
591 | moving the ``SRC_URI``-specified configuration options to the | 591 | moving the ``SRC_URI``-specified configuration options to the |
592 | kernel's ``meta`` branch. Not only is it easier for BSP developers to | 592 | kernel's ``meta`` branch. Not only is it easier for BSP developers |
593 | not have to worry about putting those configurations in the branch, | 593 | not to have to put those configurations in the branch, |
594 | but having the maintainers do it allows them to apply 'global' | 594 | but having the maintainers do it allows them to apply 'global' |
595 | knowledge about the kinds of common configuration options multiple | 595 | knowledge about the kinds of common configuration options multiple |
596 | BSPs in the tree are typically using. This allows for promotion of | 596 | BSPs in the tree are typically using. This allows for promotion of |
diff --git a/documentation/ref-manual/classes.rst b/documentation/ref-manual/classes.rst index 9a1fc2c93f..a6347449f1 100644 --- a/documentation/ref-manual/classes.rst +++ b/documentation/ref-manual/classes.rst | |||
@@ -1260,8 +1260,8 @@ The following list shows the tests you can list with the ``WARN_QA`` and | |||
1260 | 1260 | ||
1261 | .. note:: | 1261 | .. note:: |
1262 | 1262 | ||
1263 | If you are not using runtime package management on your target | 1263 | This is only relevant when you are using runtime package management |
1264 | system, then you do not need to worry about this situation. | 1264 | on your target system. |
1265 | 1265 | ||
1266 | - ``xorg-driver-abi:`` Checks that all packages containing Xorg | 1266 | - ``xorg-driver-abi:`` Checks that all packages containing Xorg |
1267 | drivers have ABI dependencies. The ``xserver-xorg`` recipe provides | 1267 | drivers have ABI dependencies. The ``xserver-xorg`` recipe provides |
diff --git a/documentation/ref-manual/structure.rst b/documentation/ref-manual/structure.rst index 6bcb6359f2..2106a8083b 100644 --- a/documentation/ref-manual/structure.rst +++ b/documentation/ref-manual/structure.rst | |||
@@ -38,7 +38,7 @@ usually matches the current stable BitBake release from the BitBake | |||
38 | project. BitBake, a :term:`Metadata` interpreter, reads the | 38 | project. BitBake, a :term:`Metadata` interpreter, reads the |
39 | Yocto Project Metadata and runs the tasks defined by that data. Failures | 39 | Yocto Project Metadata and runs the tasks defined by that data. Failures |
40 | are usually caused by errors in your Metadata and not from BitBake | 40 | are usually caused by errors in your Metadata and not from BitBake |
41 | itself; consequently, most users do not need to worry about BitBake. | 41 | itself. |
42 | 42 | ||
43 | When you run the ``bitbake`` command, the main BitBake executable (which | 43 | When you run the ``bitbake`` command, the main BitBake executable (which |
44 | resides in the ``bitbake/bin/`` directory) starts. Sourcing the | 44 | resides in the ``bitbake/bin/`` directory) starts. Sourcing the |
diff --git a/documentation/toaster-manual/reference.rst b/documentation/toaster-manual/reference.rst index 3d4efe92d6..5d52c449cd 100644 --- a/documentation/toaster-manual/reference.rst +++ b/documentation/toaster-manual/reference.rst | |||
@@ -32,9 +32,8 @@ through a | |||
32 | `REST <https://en.wikipedia.org/wiki/Representational_state_transfer>`__ | 32 | `REST <https://en.wikipedia.org/wiki/Representational_state_transfer>`__ |
33 | API, store the information about the layers in the Toaster database, and | 33 | API, store the information about the layers in the Toaster database, and |
34 | then show the information to users. Users are then able to view that | 34 | then show the information to users. Users are then able to view that |
35 | information and build layers from Toaster itself without worrying about | 35 | information and build layers from Toaster itself without having to |
36 | cloning or editing the BitBake layers configuration file | 36 | clone or edit the BitBake layers configuration file ``bblayers.conf``. |
37 | ``bblayers.conf``. | ||
38 | 37 | ||
39 | Tying a layer source into Toaster is convenient when you have many | 38 | Tying a layer source into Toaster is convenient when you have many |
40 | custom layers that need to be built on a regular basis by a community of | 39 | custom layers that need to be built on a regular basis by a community of |