Bitbake
Running Specific Commands
To run a specific bitbake command, use the -c option followed by the command:
$ bitbake -c compile-c can be followed with things such as:
- fetch
- coinfigure
- compile
- package
- clean
To force a bitbake command, use the -f option:
$ bitbake -f -c compileDebug Output
The -v option increases the amount of info that bitbake prints.
$ bitbake -v core-image-minimalBut you can do better! You can also add the options -DDD for even more debug output!
$ bitbake -v -DDD core-image-minimal