i want force-recompile package, that:
bitbake -f -c compile mypackage
however, want following tasks executed (like install
, package
, etc.), if had called bitbake mypackage
clean state. can done in one step, rather following two?
bitbake -f -c compile mypackage bitbake mypackage
or alternative solution, can somehow "taint" compile-task, such executing bitbake mypackage
compilation onwards?
this -c for:
bitbake -c compile mypackage
this run mypackage:do_build , force mypackage:do_compile execute. strictly speaking, taints mypackage:do_compile (so has execute) , executes mypackage:do_build, wanted.
Comments
Post a Comment