diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-09-23 17:11:53 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-07 10:54:25 +0100 |
commit | 84251f8d24034163ec785d0f5715634b90f2c1bf (patch) | |
tree | 6ab394cc296fee27f01c29b0b73a3fbd74584def /documentation | |
parent | 104f20717c388213ba1009cce091972f6201af56 (diff) | |
download | poky-84251f8d24034163ec785d0f5715634b90f2c1bf.tar.gz |
manuals: add references to the "do_fetch" task
[YOCTO #14508]
(From yocto-docs rev: 17f2041647010d885f18f889c740588586c60d3a)
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')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 2 | ||||
-rw-r--r-- | documentation/migration-guides/migration-3.2.rst | 2 | ||||
-rw-r--r-- | documentation/migration-guides/migration-4.0.rst | 4 | ||||
-rw-r--r-- | documentation/overview-manual/concepts.rst | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 883a1adea7..3d96399047 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 | ||
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: ``do_fetch``, ``do_unpack``, ``do_patch``, | 9596 | behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, |
9597 | ``do_configure``, ``do_compile``, ``do_install``, ``do_package``, | 9597 | ``do_configure``, ``do_compile``, ``do_install``, ``do_package``, |
9598 | ``do_package_write_*``, and ``do_build``. The default task is | 9598 | ``do_package_write_*``, and ``do_build``. The default task is |
9599 | ``do_build`` and any tasks on which it depends build first. Some tasks, | 9599 | ``do_build`` and any tasks on which it depends build first. Some tasks, |
diff --git a/documentation/migration-guides/migration-3.2.rst b/documentation/migration-guides/migration-3.2.rst index cc6f05322a..a4d0479d92 100644 --- a/documentation/migration-guides/migration-3.2.rst +++ b/documentation/migration-guides/migration-3.2.rst | |||
@@ -191,7 +191,7 @@ Globbing no longer supported in ``file://`` entries in ``SRC_URI`` | |||
191 | 191 | ||
192 | Globbing (``*`` and ``?`` wildcards) in ``file://`` URLs within :term:`SRC_URI` | 192 | Globbing (``*`` and ``?`` wildcards) in ``file://`` URLs within :term:`SRC_URI` |
193 | did not properly support file checksums, thus changes to the source files | 193 | did not properly support file checksums, thus changes to the source files |
194 | would not always change the do_fetch task checksum, and consequently would | 194 | would not always change the :ref:`ref-tasks-fetch` task checksum, and consequently would |
195 | not ensure that the changed files would be incorporated in subsequent builds. | 195 | not ensure that the changed files would be incorporated in subsequent builds. |
196 | 196 | ||
197 | Unfortunately it is not practical to make globbing work generically here, so | 197 | Unfortunately it is not practical to make globbing work generically here, so |
diff --git a/documentation/migration-guides/migration-4.0.rst b/documentation/migration-guides/migration-4.0.rst index 79e53f89ac..ce3212a464 100644 --- a/documentation/migration-guides/migration-4.0.rst +++ b/documentation/migration-guides/migration-4.0.rst | |||
@@ -93,8 +93,8 @@ Fetching changes | |||
93 | 93 | ||
94 | do_mytask[network] = "1" | 94 | do_mytask[network] = "1" |
95 | 95 | ||
96 | This is allowed by default from ``do_fetch`` but not from any of our other standard | 96 | This is allowed by default from :ref:`ref-tasks-fetch` but not from any of our other standard |
97 | tasks. Recipes shouldn't be accessing the network outside of ``do_fetch`` as it | 97 | tasks. Recipes shouldn't be accessing the network outside of :ref:`ref-tasks-fetch` as it |
98 | usually undermines fetcher source mirroring, image and licence manifests, software | 98 | usually undermines fetcher source mirroring, image and licence manifests, software |
99 | auditing and supply chain security. | 99 | auditing and supply chain security. |
100 | 100 | ||
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index 8e0303f0e0..fa060ce0de 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst | |||
@@ -1208,7 +1208,7 @@ end result. | |||
1208 | The build system has knowledge of the relationship between these tasks | 1208 | The build system has knowledge of the relationship between these tasks |
1209 | and other preceding tasks. For example, if BitBake runs | 1209 | and 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 |
1211 | to run any of the ``do_fetch``, ``do_unpack``, ``do_patch``, | 1211 | to 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 ``do_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 | ||