diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2021-03-22 06:19:36 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-22 18:10:06 +0000 |
commit | a29a37f0b0fd799dd06e1d9d277b52007c901824 (patch) | |
tree | c2b0a3e51d1c57eee2582abfba09655f5313b887 /bitbake | |
parent | ecacf2e94124374abfbc2c70b926b60fdd69914d (diff) | |
download | poky-a29a37f0b0fd799dd06e1d9d277b52007c901824.tar.gz |
bitbake: doc: mention that addtask handles multiple dependencies
Add a note explaining that "addtask" can accept multiple dependencies,
just in case someone runs across such an example and is confused.
(Bitbake rev: 5e4e9acd323b5ebc3a14c07384f6cf8f8a272066)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst index 7ea68ade72..dcf664ebf4 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | |||
@@ -1296,6 +1296,17 @@ For more information on task dependencies, see the | |||
1296 | See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section for information | 1296 | See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section for information |
1297 | on variable flags you can use with tasks. | 1297 | on variable flags you can use with tasks. |
1298 | 1298 | ||
1299 | .. note:: | ||
1300 | |||
1301 | While it's infrequent, it's possible to define multiple tasks as | ||
1302 | dependencies when calling ``addtask``. For example, here's a snippet | ||
1303 | from the OpenEmbedded class file ``package_tar.bbclass``:: | ||
1304 | |||
1305 | addtask package_write_tar before do_build after do_packagedata do_package | ||
1306 | |||
1307 | Note how the ``package_write_tar`` task has to wait until both of | ||
1308 | ``do_packagedata`` and ``do_package`` complete. | ||
1309 | |||
1299 | Deleting a Task | 1310 | Deleting a Task |
1300 | --------------- | 1311 | --------------- |
1301 | 1312 | ||