summaryrefslogtreecommitdiffstats
path: root/documentation/overview-manual/concepts.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-09-23 17:20:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-07 10:54:25 +0100
commit9fece9c36125aeec1ee3b3845fc914ec0dbf3034 (patch)
tree9ee53e939349006219c1b325c5afa395e723dd14 /documentation/overview-manual/concepts.rst
parent84251f8d24034163ec785d0f5715634b90f2c1bf (diff)
downloadpoky-9fece9c36125aeec1ee3b3845fc914ec0dbf3034.tar.gz
manuals: add reference to the "do_install" task
[YOCTO #14508] (From yocto-docs rev: 933ad27b81dfc4a28e7c48ca7bb2d1363e8c037f) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/overview-manual/concepts.rst')
-rw-r--r--documentation/overview-manual/concepts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst
index fa060ce0de..2e1aa3df48 100644
--- a/documentation/overview-manual/concepts.rst
+++ b/documentation/overview-manual/concepts.rst
@@ -1209,7 +1209,7 @@ The build system has knowledge of the relationship between these tasks
1209and other preceding tasks. For example, if BitBake runs 1209and other preceding tasks. For example, if BitBake runs
1210``do_populate_sysroot_setscene`` for something, it does not make sense 1210``do_populate_sysroot_setscene`` for something, it does not make sense
1211to run any of the :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, 1211to run any of the :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``,
1212``do_configure``, ``do_compile``, and ``do_install`` tasks. However, if 1212``do_configure``, ``do_compile``, and :ref:`ref-tasks-install` tasks. However, if
1213``do_package`` needs to be run, BitBake needs to run those other tasks. 1213``do_package`` needs to be run, BitBake needs to run those other tasks.
1214 1214
1215It becomes more complicated if everything can come from an sstate cache 1215It becomes more complicated if everything can come from an sstate cache
@@ -2163,7 +2163,7 @@ operations that are normally reserved for the root user (e.g.
2163:ref:`do_package_write* <ref-tasks-package_write_deb>`, 2163:ref:`do_package_write* <ref-tasks-package_write_deb>`,
2164:ref:`ref-tasks-rootfs`, and 2164:ref:`ref-tasks-rootfs`, and
2165:ref:`do_image* <ref-tasks-image>`). For example, 2165:ref:`do_image* <ref-tasks-image>`). For example,
2166the ``do_install`` task benefits from being able to set the UID and GID 2166the :ref:`ref-tasks-install` task benefits from being able to set the UID and GID
2167of installed files to arbitrary values. 2167of installed files to arbitrary values.
2168 2168
2169One approach to allowing tasks to perform root-only operations would be 2169One approach to allowing tasks to perform root-only operations would be