How to create ordered lists of completed tasks when processing a package?

I know that I can list possible tasks with:

bitbake package -c listtasks

But this list also includes tasks that should be called explicitly (for example, do_devshell or do_clean), and I want to see what gets called at startup:

bitbake package

Looking at the results obtained with bitbake -e also did not provide much information that I could analyze.

Given that the order of the tasks should be explicitly defined using "before" and "after" when adding a task, I expect it to be saved in some form.

+6
source share
1 answer

The order in which all tasks are performed is usually stored in

poky/<build_directory>/tmp/work/<machine_toolchain>/<package_name>/<package_version>/temp/log.task_order

python v2.7.12, bitbake python,

poky/build/tmp/work/<machine_toolchain>/python/2.7.12-r1/temp/log.task_order

+8

All Articles