From fcbacff6837268e9ca94a9512029d826b44841b8 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 2 Dec 2010 10:20:52 -0800 Subject: documentation/poky-ref-manual: Changed spelling of bitbake to "BitBake" when used in text. There is inconsistent use of how BitBake is spelled. Sometimes it uses no capitalization, just a leading "B", or "BitBake". I looked at the BitBake manual and it seems that "BitBake" is the correct way to refer to it. Signed-off-by: Scott Rifenbark --- documentation/poky-ref-manual/ref-bitbake.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'documentation') diff --git a/documentation/poky-ref-manual/ref-bitbake.xml b/documentation/poky-ref-manual/ref-bitbake.xml index ed6c8bc15b..6221a963d8 100644 --- a/documentation/poky-ref-manual/ref-bitbake.xml +++ b/documentation/poky-ref-manual/ref-bitbake.xml @@ -3,10 +3,10 @@ - Reference: Bitbake + Reference: BitBake - Bitbake is a program written in Python that interprets the metadata + BitBake is a program written in Python that interprets the metadata that makes up Poky. At some point, people wonder what actually happens when you type bitbake poky-image-sato. This section aims to give an overview of what happens behind the scenes from a @@ -14,7 +14,7 @@ - It is worth noting that bitbake aims to be a generic "task" executor + It is worth noting that BitBake aims to be a generic "task" executor capable of handling complex dependency relationships. As such it has no real knowledge of what the tasks it is executing actually do. It just considers a list of tasks with dependencies and handles metadata @@ -28,7 +28,7 @@ The first thing BitBake does is work out its configuration by looking for a file called bitbake.conf. - Bitbake searches through the BBPATH environment + BitBake searches through the BBPATH environment variable looking for a conf/ directory containing a bitbake.conf file and adds the first bitbake.conf file found in @@ -83,12 +83,12 @@ meta-extras/ can be included too. Adding extra content to BBFILES is best - acheived through the use of Bitbake + acheived through the use of BitBake "layers". - Bitbake parses each .bb file in + BitBake parses each .bb file in BBFILES and stores the values of various variables. In summary, for each .bb @@ -138,7 +138,7 @@ Understanding how providers are chosen is complicated by the fact - multiple versions might be present. Bitbake defaults to the highest + multiple versions might be present. BitBake defaults to the highest version of a provider by default. Version comparisons are made using the same method as Debian. The PREFERRED_VERSION @@ -316,7 +316,7 @@ Options: As well as the containing the parsing and task/dependency handling - code, bitbake also contains a set of "fetcher" modules which allow + code, BitBake also contains a set of "fetcher" modules which allow fetching of source code from various types of sources. Example sources might be from disk with the metadata, from websites, from remote shell accounts or from SCM systems like cvs/subversion/git. -- cgit 1.2.3-korg