diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-06-07 18:24:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-21 07:47:54 +0100 |
commit | 380b6e80cea6ffaaeceaac7d67660c334a0a22ca (patch) | |
tree | 7f8742bb7eea1295d68cf51371ebf8d1f0687b47 /bitbake | |
parent | cb40ae4872484ab0df9b660d09457837b97c8e1a (diff) | |
download | poky-380b6e80cea6ffaaeceaac7d67660c334a0a22ca.tar.gz |
bitbake: bitbake-user-manual: Added new section on command-line execution
Needed a section on executing a list of task and recipe combinations.
(Bitbake rev: 6f6cd0674fd1595f4e74b7da692e0c348b2660c6)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml index 5b3bb83d10..a39438dbf5 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml | |||
@@ -653,6 +653,25 @@ | |||
653 | </para> | 653 | </para> |
654 | </section> | 654 | </section> |
655 | 655 | ||
656 | <section id='executing-a-list-of-task-and-recipe-combinations'> | ||
657 | <title>Executing a List of Task and Recipe Combinations</title> | ||
658 | |||
659 | <para> | ||
660 | The BitBake command line supports specifying different | ||
661 | tasks for individual targets when you specify multiple | ||
662 | targets. | ||
663 | For example, suppose you had two targets (or recipes) | ||
664 | <filename>myfirstrecipe</filename> and | ||
665 | <filename>mysecondrecipe</filename> and you needed | ||
666 | BitBake to run <filename>taskA</filename> for the first | ||
667 | recipe and <filename>taskB</filename> for the second | ||
668 | recipe: | ||
669 | <literallayout class='monospaced'> | ||
670 | $ bitbake myfirstrecipe recipe:do_taskA mysecondrecipe recipe:do_taskB | ||
671 | </literallayout> | ||
672 | </para> | ||
673 | </section> | ||
674 | |||
656 | <section id='generating-dependency-graphs'> | 675 | <section id='generating-dependency-graphs'> |
657 | <title>Generating Dependency Graphs</title> | 676 | <title>Generating Dependency Graphs</title> |
658 | 677 | ||