diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-09-23 18:04:29 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-07 10:54:25 +0100 |
commit | b3dc55b0516da0ef9381baa034fa95f77a3c0119 (patch) | |
tree | c502144ff8533e1e42d96090e6cf9e3aea78e4ea /documentation/dev-manual | |
parent | 3c6b2798a0758c6a12f8ea8f451f3a294263da76 (diff) | |
download | poky-b3dc55b0516da0ef9381baa034fa95f77a3c0119.tar.gz |
manuals: add references to the "do_package" task
[YOCTO #14508]
Reported-by: Quentin Schulz <foss@0leil.net>
(From yocto-docs rev: 179139e6710f6dde0de25200c372705ed8ef13bc)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 5d1a09cbd0..de26851521 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -2028,10 +2028,10 @@ Successful packaging is a combination of automated processes performed | |||
2028 | by the OpenEmbedded build system and some specific steps you need to | 2028 | by the OpenEmbedded build system and some specific steps you need to |
2029 | take. The following list describes the process: | 2029 | take. The following list describes the process: |
2030 | 2030 | ||
2031 | - *Splitting Files*: The ``do_package`` task splits the files produced | 2031 | - *Splitting Files*: The :ref:`ref-tasks-package` task splits the files produced |
2032 | by the recipe into logical components. Even software that produces a | 2032 | by the recipe into logical components. Even software that produces a |
2033 | single binary might still have debug symbols, documentation, and | 2033 | single binary might still have debug symbols, documentation, and |
2034 | other logical components that should be split out. The ``do_package`` | 2034 | other logical components that should be split out. The :ref:`ref-tasks-package` |
2035 | task ensures that files are split up and packaged correctly. | 2035 | task ensures that files are split up and packaged correctly. |
2036 | 2036 | ||
2037 | - *Running QA Checks*: The | 2037 | - *Running QA Checks*: The |
@@ -9594,7 +9594,7 @@ Running Specific Tasks | |||
9594 | 9594 | ||
9595 | Any given recipe consists of a set of tasks. The standard BitBake | 9595 | Any given recipe consists of a set of tasks. The standard BitBake |
9596 | behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, | 9596 | behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, |
9597 | :ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, :ref:`ref-tasks-install`, ``do_package``, | 9597 | :ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, :ref:`ref-tasks-install`, :ref:`ref-tasks-package`, |
9598 | ``do_package_write_*``, and :ref:`ref-tasks-build`. The default task is | 9598 | ``do_package_write_*``, and :ref:`ref-tasks-build`. The default task is |
9599 | :ref:`ref-tasks-build` and any tasks on which it depends build first. Some tasks, | 9599 | :ref:`ref-tasks-build` and any tasks on which it depends build first. Some tasks, |
9600 | such as ``do_devshell``, are not part of the default build chain. If you | 9600 | such as ``do_devshell``, are not part of the default build chain. If you |