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:53 +0100 |
commit | 8321d66696b03ca08188bb27103d45c2439dd5ba (patch) | |
tree | 7df2e0f137020a6ef6fd3050ac10cf4917edfcb2 /bitbake/doc/bitbake-user-manual | |
parent | 321f4e9438ddf1028507f830a99243f52eb2ea63 (diff) | |
download | poky-8321d66696b03ca08188bb27103d45c2439dd5ba.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: 17f7f366df3a5951ae88e24c43aecf3d65d83c14)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc/bitbake-user-manual')
-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 7a37edd509..5b3bb83d10 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml | |||
@@ -634,6 +634,25 @@ | |||
634 | </para> | 634 | </para> |
635 | </section> | 635 | </section> |
636 | 636 | ||
637 | <section id='executing-a-list-of-task-and-recipe-combinations'> | ||
638 | <title>Executing a List of Task and Recipe Combinations</title> | ||
639 | |||
640 | <para> | ||
641 | The BitBake command line supports specifying different | ||
642 | tasks for individual targets when you specify multiple | ||
643 | targets. | ||
644 | For example, suppose you had two targets (or recipes) | ||
645 | <filename>myfirstrecipe</filename> and | ||
646 | <filename>mysecondrecipe</filename> and you needed | ||
647 | BitBake to run <filename>taskA</filename> for the first | ||
648 | recipe and <filename>taskB</filename> for the second | ||
649 | recipe: | ||
650 | <literallayout class='monospaced'> | ||
651 | $ bitbake myfirstrecipe recipe:do_taskA mysecondrecipe recipe:do_taskB | ||
652 | </literallayout> | ||
653 | </para> | ||
654 | </section> | ||
655 | |||
637 | <section id='generating-dependency-graphs'> | 656 | <section id='generating-dependency-graphs'> |
638 | <title>Generating Dependency Graphs</title> | 657 | <title>Generating Dependency Graphs</title> |
639 | 658 | ||