From 7c5a1471412634b3eb1279e2db45d46dc55fe0f2 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 19 Jul 2016 11:37:00 -0700 Subject: 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 --- documentation/ref-manual/ref-tasks.xml | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'documentation') diff --git a/documentation/ref-manual/ref-tasks.xml b/documentation/ref-manual/ref-tasks.xml index 572740eaef..d180eee7bb 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. + -- cgit v1.2.3-54-g00ecf