In what order are Yocto's "Normal Recipe Build Tasks" executed by default? Is there a list in text format in the reference manual? Or is it available elsewhere?
The Normal recipe build tasks such as do_fetch, do_unpack, etc is found the Yocto reference manual but says nothing about the order.
As far as I know there is no way to generate a list of tasks which have to be executed upfront. The next best thing to what you are looking for is most likely the file
log.task_orderwhich can be found under<your_build_directory>/tmp/work/...after you built a certain recipe.You can find all available
log.task_orderfiles by runningIf you are looking for a certain recipe better use
For example if I want to see all the tasks which were executed for building u-boot-tools I run the following from my build directory:
Looking at the file with
catlists the tasks in the order they were executed. Note that this only lists the tasks that have been tried so far. In case the recipe was built successfully this includes all tasks but if it fails only the tasks up to the failing one are listed.