summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-09-23 19:19:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-07 10:54:26 +0100
commitc9c7ace79544d9da7599e2a25f1d3df1c7847c91 (patch)
treee9677bb628afde332a841e1702ea25cf27eb8b7b
parenta8b6712dfdf164298a9adb7b8231ca616414daa5 (diff)
downloadpoky-c9c7ace79544d9da7599e2a25f1d3df1c7847c91.tar.gz
manuals: add references to the "do_unpack" task
[YOCTO #14508] Reported-by: Quentin Schulz <foss@0leil.net> (From yocto-docs rev: 1ca57f8ec322d5777bf31829e659d62e82986be1) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/dev-manual/common-tasks.rst2
-rw-r--r--documentation/migration-guides/migration-1.3.rst2
-rw-r--r--documentation/overview-manual/concepts.rst2
-rw-r--r--documentation/ref-manual/tasks.rst2
4 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index 5c1e81aba9..94a2e46799 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -9593,7 +9593,7 @@ Running Specific Tasks
9593---------------------- 9593----------------------
9594 9594
9595Any given recipe consists of a set of tasks. The standard BitBake 9595Any given recipe consists of a set of tasks. The standard BitBake
9596behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, :ref:`ref-tasks-patch`, 9596behavior in most cases is: :ref:`ref-tasks-fetch`, :ref:`ref-tasks-unpack`, :ref:`ref-tasks-patch`,
9597:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, :ref:`ref-tasks-install`, :ref:`ref-tasks-package`, 9597:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, :ref:`ref-tasks-install`, :ref:`ref-tasks-package`,
9598:ref:`do_package_write_* <ref-tasks-package_write_deb>`, and :ref:`ref-tasks-build`. The default task is 9598:ref:`do_package_write_* <ref-tasks-package_write_deb>`, 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,
diff --git a/documentation/migration-guides/migration-1.3.rst b/documentation/migration-guides/migration-1.3.rst
index 09fc39d3ca..3ba189b773 100644
--- a/documentation/migration-guides/migration-1.3.rst
+++ b/documentation/migration-guides/migration-1.3.rst
@@ -62,7 +62,7 @@ Previously, an inconsistent mix of spaces and tabs existed, which made
62extending these functions using ``_append`` or ``_prepend`` complicated 62extending these functions using ``_append`` or ``_prepend`` complicated
63given that Python treats whitespace as syntactically significant. If you 63given that Python treats whitespace as syntactically significant. If you
64are defining or extending any Python functions (e.g. 64are defining or extending any Python functions (e.g.
65``populate_packages``, ``do_unpack``, :ref:`ref-tasks-patch` and so forth) in 65``populate_packages``, :ref:`ref-tasks-unpack`, :ref:`ref-tasks-patch` and so forth) in
66custom recipes or classes, you need to ensure you are using consistent 66custom recipes or classes, you need to ensure you are using consistent
67four-space indentation. 67four-space indentation.
68 68
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst
index 423f645740..2aa7676324 100644
--- a/documentation/overview-manual/concepts.rst
+++ b/documentation/overview-manual/concepts.rst
@@ -1208,7 +1208,7 @@ end result.
1208The build system has knowledge of the relationship between these tasks 1208The 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``, :ref:`ref-tasks-patch`, 1211to run any of the :ref:`ref-tasks-fetch`, :ref:`ref-tasks-unpack`, :ref:`ref-tasks-patch`,
1212:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, and :ref:`ref-tasks-install` tasks. However, if 1212:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, and :ref:`ref-tasks-install` tasks. However, if
1213:ref:`ref-tasks-package` needs to be run, BitBake needs to run those other tasks. 1213:ref:`ref-tasks-package` needs to be run, BitBake needs to run those other tasks.
1214 1214
diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst
index 28f32e6e49..3ce0817bb6 100644
--- a/documentation/ref-manual/tasks.rst
+++ b/documentation/ref-manual/tasks.rst
@@ -447,7 +447,7 @@ Validates the :term:`SRC_URI` value.
447------------ 447------------
448 448
449Removes all output files for a target from the 449Removes all output files for a target from the
450:ref:`ref-tasks-unpack` task forward (i.e. ``do_unpack``, 450:ref:`ref-tasks-unpack` task forward (i.e. :ref:`ref-tasks-unpack`,
451:ref:`ref-tasks-configure`, 451:ref:`ref-tasks-configure`,
452:ref:`ref-tasks-compile`, 452:ref:`ref-tasks-compile`,
453:ref:`ref-tasks-install`, and 453:ref:`ref-tasks-install`, and