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.
+