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.
source
share