From: Scott Rifenbark Date: Tue, 19 Jul 2016 18:37:00 +0000 (-0700) Subject: ref-manual: Applied review changes to the do_deploy task. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c5a1471412634b3eb1279e2db45d46dc55fe0f2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ref-manual: Applied review changes to the do_deploy task. Cleared up the last third of the description with better structure and wording. Fixes [YOCTO #9970] (From yocto-docs rev: a2dbea4f3bbdddd72c86a5ade86ac822cd9bfecd) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- diff --git a/documentation/ref-manual/ref-tasks.xml b/documentation/ref-manual/ref-tasks.xml index 572740eaef8..d180eee7bb7 100644 --- a/documentation/ref-manual/ref-tasks.xml +++ b/documentation/ref-manual/ref-tasks.xml @@ -158,22 +158,29 @@ - The do_deploy task is not added as a task by - default and needs to be added manually. - You can add this task using the following: + The do_deploy task is not added as a task + by default and consequently needs to be added manually. + If you want the task to run after + do_compile, + you can add it by doing the following: addtask deploy after do_compile - If the do_deploy should run some time after - the do_compile, the - base.bbclass has the following to ensure that - all do_deploy tasks run by default. - See the - "Dependencies" - section in the BitBake User Manual for more information. - + Adding do_deploy after other tasks works the + same way. + + You do not need to add before do_build + to the addtask command (though it is + harmless), because the + base + class contains the following: + do_build[recrdeptask] += "do_deploy" - + + See the + "Dependencies" + section in the BitBake User Manual for more information. +