diff options
author | Jacob Kroon <jacob.kroon@gmail.com> | 2020-05-28 08:41:15 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-30 12:34:16 +0100 |
commit | 300e7a1c2a46056f3d623903d4b66570d4322fc7 (patch) | |
tree | 0b093ae7bccdd8d9cf8255dcc34259687d14700e | |
parent | 18577c0e823613cb70f7281a4ffcf4a3b4a68c17 (diff) | |
download | poky-300e7a1c2a46056f3d623903d4b66570d4322fc7.tar.gz |
bitbake: doc: More explanation to tasks that recursively depend on themselves
(Bitbake rev: c92a266c8e452833f2a590721aa1c2bd6fbeb2e0)
Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index 95a8b95b17..069a0ec809 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | |||
@@ -2565,15 +2565,17 @@ | |||
2565 | </para> | 2565 | </para> |
2566 | 2566 | ||
2567 | <para> | 2567 | <para> |
2568 | You might want to not only have BitBake look for | 2568 | BitBake allows a task to recursively depend on itself by |
2569 | dependencies of those tasks, but also have BitBake look | 2569 | referencing itself in the task list: |
2570 | for build-time and runtime dependencies of the dependent | ||
2571 | tasks as well. | ||
2572 | If that is the case, you need to reference the task name | ||
2573 | itself in the task list: | ||
2574 | <literallayout class='monospaced'> | 2570 | <literallayout class='monospaced'> |
2575 | do_a[recrdeptask] = "do_a do_b" | 2571 | do_a[recrdeptask] = "do_a do_b" |
2576 | </literallayout> | 2572 | </literallayout> |
2573 | In the same way as before, this means that the <filename>do_a</filename> | ||
2574 | and <filename>do_b</filename> tasks of the current recipe and all | ||
2575 | recipes reachable (by way of dependencies) from the recipe | ||
2576 | must run before the <filename>do_a</filename> task can run. In this | ||
2577 | case BitBake will ignore the current recipe's <filename>do_a</filename> | ||
2578 | task circular dependency on itself. | ||
2577 | </para> | 2579 | </para> |
2578 | </section> | 2580 | </section> |
2579 | 2581 | ||