I want to force-recompile a package, like that:
bitbake -f -c compile mypackage
However, I also want all following tasks to be executed (like install
, package
, etc.), just as if I had called bitbake mypackage
from a completely clean state. Can this be done in one step, rather than the following two?
bitbake -f -c compile mypackage
bitbake mypackage
Or as an alternative solution, can I somehow "taint" the compile-task, such that executing bitbake mypackage
does everything from compilation onwards?