diff --git a/bitbake/doc/user-manual/user-manual-intro.xml b/bitbake/doc/user-manual/user-manual-intro.xml index 824dee64eb..c76696f5d5 100644 --- a/bitbake/doc/user-manual/user-manual-intro.xml +++ b/bitbake/doc/user-manual/user-manual-intro.xml @@ -1,27 +1,59 @@ - + + BitBake User Manual + +
Introduction -
- Overview - BitBake is, at its simplest, a tool for executing -tasks and managing metadata. As such, its similarities to GNU make and other -build tools are readily apparent. It was inspired by Portage, the package management system used by the Gentoo Linux distribution. BitBake is the basis of the OpenEmbedded project, which is being used to build and maintain a number of embedded Linux distributions/projects such as Angstrom and the Yocto project. -
-
- Background and goals + + BitBake is a tool for executing tasks commonly performed by software + developers when building systems on a daily basis. + BitBake can build Systems consisting of numerous individual pieces + of software, or can be used to build a single application. + Example tasks that BitBake can execute are fetching source code, + applying patches to source code, configuring, compiling, and + packaging applications into a complete system, and managing metadata. + BitBake abstracts the information for completing individual tasks + into files known as recipes. + Recipes contain all of the relevant information required by BitBake + to complete a given task including dependencies, source file + locations, etc. + BitBake is similar to + GNU Make + and other build tools. + +
+
+ History and Goals + + BitBake was originally a part of the OpenEmbedded project. + It was inspired by the Portage package management system + used by the Gentoo Linux distribution. + On December 7, 2004, OpenEmbedded project team member, + Chris Larson split the project into two distinct pieces: + + BitBake, a generic task executor + OpenEmbedded, a metadata set utilized by + BitBake. + + Today, BitBake is the primary basis of the + OpenEmbedded + project, which is being used to build and maintain a + number of projects and embedded Linux distributions + such as the Angstrom Distribution and the Yocto + Project. + Prior to BitBake, no other build tool adequately met the needs of an aspiring embedded Linux distribution. All of the buildsystems used by traditional desktop Linux distributions lacked important functionality, and none of the ad-hoc buildroot systems, prevalent in the embedded space, were scalable or maintainable. - Some important original goals for BitBake were: Handle crosscompilation. Handle interpackage dependencies (build time on target architecture, build time on native architecture, and runtime). - Support running any number of tasks within a given package, including, but not limited to, fetching upstream sources, unpacking them, patching them, configuring them, et cetera. + Support running any number of tasks within a given package, including, but not limited to, fetching upstream sources, unpacking them, patching them, configuring them, etc. Must be Linux distribution agnostic (both build and target). Must be architecture agnostic Must support multiple build and target operating systems (including Cygwin, the BSDs, etc). @@ -39,12 +71,11 @@ share common metadata between many packages. Handle variants of a base recipe (native, sdk, multilib). Able to split metadata into layers and allow layers to override each other. - Allow representation of a given set of input variables to a task as a checksum. - based on that checksum, allow acceleration of builds with prebuilt components. + Allow representation of a given set of input variables to a task as a checksum. Based on that checksum, allow acceleration of builds with prebuilt components. - BitBake satisfies all the original requirements and many more with extensions being made to the basic functionality to reflect the additionl requirements. Flexibility and power have always been the priorities. It is highly extensible, supporting embedded Python code and execution of any arbitrary tasks. + BitBake satisfies all the original requirements and many more with extensions being made to the basic functionality to reflect the additional requirements. Flexibility and power have always been the priorities. It is highly extensible, supporting embedded Python code and execution of any arbitrary tasks.