Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

BitBake is the task executor and scheduler used by the OpenEmbedded build system to build images. BitBake is a generic task execution engine that allows shell and Python tasks to be run efficiently and in parallel while working within complex inter-task dependency constraints. BitBake stores the output of each task in a directory, the shared state cache. Its location is controlled by the SSTATE_DIR variable. This cache is use to speed up compilation.

Usage:

bitbake

...

[options]

...

[recipename/target

...

...] 

Bitbake executes all the layers starting with a prefix ‘meta’.

...