diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-09-23 19:36:01 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-07 10:54:26 +0100 |
commit | 40b77252122884b8395d59648147a93f2d0e33d9 (patch) | |
tree | 36432316236f203c17aefce0e2dace6adca0012a /documentation/dev-manual | |
parent | b42af6aa4a5c64f80091d9445b79e2565515854c (diff) | |
download | poky-40b77252122884b8395d59648147a93f2d0e33d9.tar.gz |
manuals: add references to the "do_rootfs" task
[YOCTO #14508]
Reported-by: Quentin Schulz <foss@0leil.net>
(From yocto-docs rev: 926c836e5184243fb1aee113962e11c01f0297ee)
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 32268931a4..a4741c5a8b 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -3854,7 +3854,7 @@ to be added to the recipe that builds the ``core-image-sato`` image:: | |||
3854 | 3854 | ||
3855 | In this example, the `from_multiconfig` is "x86". The `to_multiconfig` is "arm". The | 3855 | In this example, the `from_multiconfig` is "x86". The `to_multiconfig` is "arm". The |
3856 | task on which the :ref:`ref-tasks-image` task in the recipe depends is the | 3856 | task on which the :ref:`ref-tasks-image` task in the recipe depends is the |
3857 | ``do_rootfs`` task from the ``core-image-minimal`` recipe associated | 3857 | :ref:`ref-tasks-rootfs` task from the ``core-image-minimal`` recipe associated |
3858 | with the "arm" multiconfig. | 3858 | with the "arm" multiconfig. |
3859 | 3859 | ||
3860 | Once you set up this dependency, you can build the "x86" multiconfig | 3860 | Once you set up this dependency, you can build the "x86" multiconfig |
@@ -3864,7 +3864,7 @@ using a BitBake command as follows:: | |||
3864 | 3864 | ||
3865 | This command executes all the tasks needed to create the | 3865 | This command executes all the tasks needed to create the |
3866 | ``core-image-sato`` image for the "x86" multiconfig. Because of the | 3866 | ``core-image-sato`` image for the "x86" multiconfig. Because of the |
3867 | dependency, BitBake also executes through the ``do_rootfs`` task for the | 3867 | dependency, BitBake also executes through the :ref:`ref-tasks-rootfs` task for the |
3868 | "arm" multiconfig build. | 3868 | "arm" multiconfig build. |
3869 | 3869 | ||
3870 | Having a recipe depend on the root filesystem of another build might not | 3870 | Having a recipe depend on the root filesystem of another build might not |
@@ -9041,7 +9041,7 @@ Class methods are as follows: | |||
9041 | 9041 | ||
9042 | - *hasPackage(pkg):* Returns "True" if ``pkg`` is in the installed | 9042 | - *hasPackage(pkg):* Returns "True" if ``pkg`` is in the installed |
9043 | package list of the image, which is based on the manifest file that | 9043 | package list of the image, which is based on the manifest file that |
9044 | is generated during the ``do_rootfs`` task. | 9044 | is generated during the :ref:`ref-tasks-rootfs` task. |
9045 | 9045 | ||
9046 | - *hasFeature(feature):* Returns "True" if the feature is in | 9046 | - *hasFeature(feature):* Returns "True" if the feature is in |
9047 | :term:`IMAGE_FEATURES` or | 9047 | :term:`IMAGE_FEATURES` or |