bitbake/doc/manual/usermanual.xml: Use version 2.5 of the license
[vuplus_bitbake] / doc / manual / usermanual.xml
1 <?xml version="1.0"?>
2 <!--
3   ex:ts=4:sw=4:sts=4:et
4   -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
5 -->
6 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
7                       "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
8 <book>
9     <bookinfo>
10         <title>BitBake User Manual</title>
11         <authorgroup>
12             <corpauthor>BitBake Team</corpauthor>
13         </authorgroup>
14         <copyright>
15             <year>2004, 2005, 2006</year>
16             <holder>Chris Larson</holder>
17             <holder>Phil Blundell</holder>
18         </copyright>
19         <legalnotice>
20             <para>This work is licensed under the Creative Commons Attribution License. To view a copy of this license, visit <ulink url="http://creativecommons.org/licenses/by/2.5/">http://creativecommons.org/licenses/by/2.5/</ulink> or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.</para>
21         </legalnotice>
22     </bookinfo>
23     <chapter>
24         <title>Introduction</title>
25         <section>
26             <title>Overview</title>
27             <para>BitBake is, at its simplest, a tool for executing
28 tasks and managing metadata.  As such, its similarities to GNU make and other
29 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 <ulink url="http://www.openembedded.org/">OpenEmbedded</ulink> project, which is being used to build and maintain a number of embedded Linux distributions, including OpenZaurus and Familiar.</para>
30         </section>
31         <section>
32             <title>Background and Goals</title>
33             <para>Prior to BitBake, no other build tool adequately met
34 the needs of an aspiring embedded Linux distribution.  All of the
35 buildsystems used by traditional desktop Linux distributions lacked
36 important functionality, and none of the ad-hoc
37 <emphasis>buildroot</emphasis> systems, prevalent in the
38 embedded space, were scalable or maintainable.</para>
39
40       <para>Some important goals for BitBake were:
41             <itemizedlist>
42                 <listitem><para>Handle crosscompilation.</para></listitem>
43                 <listitem><para>Handle interpackage dependencies (build time on target architecture, build time on native architecture, and runtime).</para></listitem>
44                 <listitem><para>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.</para></listitem>
45                 <listitem><para>Must be linux distribution agnostic (both build and target).</para></listitem>
46                 <listitem><para>Must be architecture agnostic</para></listitem>
47                 <listitem><para>Must support multiple build and target operating systems (including cygwin, the BSDs, etc).</para></listitem>
48                 <listitem><para>Must be able to be self contained, rather than tightly integrated into the build machine's root filesystem.</para></listitem>
49                 <listitem><para>There must be a way to handle conditional metadata (on target architecture, operating system, distribution, machine).</para></listitem>
50                 <listitem><para>It must be easy for the person using the tools to supply their own local metadata and packages to operate against.</para></listitem>
51                 <listitem><para>Must make it easy to collaborate
52 between multiple projects using BitBake for their
53 builds.</para></listitem>
54                 <listitem><para>Should provide an inheritance mechanism to
55 share common metadata between many packages.</para></listitem>
56                 <listitem><para>Et cetera...</para></listitem>
57             </itemizedlist>
58         </para>
59         <para>BitBake satisfies all these and many more.  Flexibility and power have always been the priorities.  It is highly extensible, supporting embedded Python code and execution of any arbitrary tasks.</para>
60         </section>
61     </chapter>
62     <chapter>
63         <title>Metadata</title>
64         <section>
65             <title>Description</title>
66             <itemizedlist>
67                 <para>BitBake metadata can be classified into 3 major areas:</para>
68                 <listitem>
69                     <para>Configuration Files</para>
70                 </listitem>
71                 <listitem>
72                     <para>.bb Files</para>
73                 </listitem>
74                 <listitem>
75                     <para>Classes</para>
76                 </listitem>
77             </itemizedlist>
78             <para>What follows are a large number of examples of BitBake metadata.  Any syntax which isn't supported in any of the aforementioned areas will be documented as such.</para>
79             <section>
80                 <title>Basic variable setting</title>
81                 <para><screen><varname>VARIABLE</varname> = "value"</screen></para>
82                 <para>In this example, <varname>VARIABLE</varname> is <literal>value</literal>.</para>
83             </section>
84             <section>
85                 <title>Variable expansion</title>
86                 <para>BitBake supports variables referencing one another's contents using a syntax which is similar to shell scripting</para>
87                 <para><screen><varname>A</varname> = "aval"
88 <varname>B</varname> = "pre${A}post"</screen></para>
89                 <para>This results in <varname>A</varname> containing <literal>aval</literal> and <varname>B</varname> containing <literal>preavalpost</literal>.</para>
90             </section>
91             <section>
92                 <title>Immediate variable expansion (:=)</title>
93                 <para>:= results in a variable's contents being expanded immediately, rather than when the variable is actually used.</para>
94                 <para><screen><varname>T</varname> = "123"
95 <varname>A</varname> := "${B} ${A} test ${T}"
96 <varname>T</varname> = "456"
97 <varname>B</varname> = "${T} bval"
98
99 <varname>C</varname> = "cval"
100 <varname>C</varname> := "${C}append"</screen></para>
101                 <para>In that example, <varname>A</varname> would contain <literal> test 123</literal>, <varname>B</varname> would contain <literal>456 bval</literal>, and <varname>C</varname> would be <literal>cvalappend</literal>.</para>
102             </section>
103             <section>
104                 <title>Appending (+=) and prepending (=+)</title>
105                 <para><screen><varname>B</varname> = "bval"
106 <varname>B</varname> += "additionaldata"
107 <varname>C</varname> = "cval"
108 <varname>C</varname> =+ "test"</screen></para>
109                 <para>In this example, <varname>B</varname> is now <literal>bval additionaldata</literal> and <varname>C</varname> is <literal>test cval</literal>.</para>
110             </section>
111             <section>
112                 <title>Appending (.=) and prepending (=.) without spaces</title>
113                     <para><screen><varname>B</varname> = "bval"
114 <varname>B</varname> .= "additionaldata"
115 <varname>C</varname> = "cval"
116 <varname>C</varname> =. "test"</screen></para>
117                 <para>In this example, <varname>B</varname> is now <literal>bvaladditionaldata</literal> and <varname>C</varname> is <literal>testcval</literal>. In contrast to the above Appending and Prepending operators no additional space
118 will be introduced.</para>
119             </section>
120             <section>
121                 <title>Conditional metadata set</title>
122                 <para>OVERRIDES is a <quote>:</quote> seperated variable containing each item you want to satisfy conditions.  So, if you have a variable which is conditional on <quote>arm</quote>, and <quote>arm</quote> is in OVERRIDES, then the <quote>arm</quote> specific version of the variable is used rather than the non-conditional version.  Example:</para>
123                 <para><screen><varname>OVERRIDES</varname> = "architecture:os:machine"
124 <varname>TEST</varname> = "defaultvalue"
125 <varname>TEST_os</varname> = "osspecificvalue"
126 <varname>TEST_condnotinoverrides</varname> = "othercondvalue"</screen></para>
127                 <para>In this example, <varname>TEST</varname> would be <literal>osspecificvalue</literal>, due to the condition <quote>os</quote> being in <varname>OVERRIDES</varname>.</para>
128             </section>
129             <section>
130                 <title>Conditional appending</title>
131                 <para>BitBake also supports appending and prepending to variables based on whether something is in OVERRIDES.  Example:</para>
132                 <para><screen><varname>DEPENDS</varname> = "glibc ncurses"
133 <varname>OVERRIDES</varname> = "machine:local"
134 <varname>DEPENDS_append_machine</varname> = " libmad"</screen></para>
135                 <para>In this example, <varname>DEPENDS</varname> is set to <literal>glibc ncurses libmad</literal>.</para>
136             </section>
137             <section>
138                 <title>Inclusion</title>
139                 <para>Next, there is the <literal>include</literal> directive, which causes BitBake to parse in whatever file you specify, and insert it at that location, which is not unlike <command>make</command>.  However, if the path specified on the <literal>include</literal> line is a relative path, BitBake will locate the first one it can find within <envar>BBPATH</envar>.</para>
140             </section>
141             <section>
142                 <title>Requiring Inclusion</title>
143                 <para>In contrast to the <literal>include</literal> directive, <literal>require</literal> will
144 raise an ParseError if the to be included file can not be found. Otherwise it will behave just like the <literal>
145 include</literal> directive.</para>
146             </section>
147             <section>
148                 <title>Python variable expansion</title>
149                 <para><screen><varname>DATE</varname> = "${@time.strftime('%Y%m%d',time.gmtime())}"</screen></para>
150                 <para>This would result in the <varname>DATE</varname> variable containing today's date.</para>
151             </section>
152             <section>
153                 <title>Defining executable metadata</title>
154                 <para><emphasis>NOTE:</emphasis> This is only supported in .bb and .bbclass files.</para>
155                 <para><screen>do_mytask () {
156     echo "Hello, world!"
157 }</screen></para>
158                 <para>This is essentially identical to setting a variable, except that this variable happens to be executable shell code.</para>
159                 <para><screen>python do_printdate () {
160     import time
161     print time.strftime('%Y%m%d', time.gmtime())
162 }</screen></para>
163                 <para>This is the similar to the previous, but flags it as python so that BitBake knows it is python code.</para>
164             </section>
165             <section>
166                 <title>Defining python functions into the global python namespace</title>
167                 <para><emphasis>NOTE:</emphasis> This is only supported in .bb and .bbclass files.</para>
168                 <para><screen>def get_depends(bb, d):
169     if bb.data.getVar('SOMECONDITION', d, True):
170         return "dependencywithcond"
171     else:
172         return "dependency"
173
174 <varname>SOMECONDITION</varname> = "1"
175 <varname>DEPENDS</varname> = "${@get_depends(bb, d)}"</screen></para>
176                 <para>This would result in <varname>DEPENDS</varname> containing <literal>dependencywithcond</literal>.</para>
177             </section>
178             <section>
179                 <title>Inheritance</title>
180                 <para><emphasis>NOTE:</emphasis> This is only supported in .bb and .bbclass files.</para>
181                 <para>The <literal>inherit</literal> directive is a means of specifying what classes of functionality your .bb requires.  It is a rudamentary form of inheritence.  For example, you can easily abstract out the tasks involved in building a package that uses autoconf and automake, and put that into a bbclass for your packages to make use of.  A given bbclass is located by searching for classes/filename.oeclass in <envar>BBPATH</envar>, where filename is what you inherited.</para>
182             </section>
183             <section>
184                 <title>Tasks</title>
185                 <para><emphasis>NOTE:</emphasis> This is only supported in .bb and .bbclass files.</para>
186                 <para>In BitBake, each step that needs to be run for a given .bb is known as a task.  There is a command <literal>addtask</literal> to add new tasks (must be a defined python executable metadata and must start with <quote>do_</quote>) and describe intertask dependencies.</para>
187                 <para><screen>python do_printdate () {
188     import time
189     print time.strftime('%Y%m%d', time.gmtime())
190 }
191
192 addtask printdate before do_build</screen></para>
193                 <para>This defines the necessary python function and adds it as a task which is now a dependency of do_build (the default task).  If anyone executes the do_build task, that will result in do_printdate being run first.</para>
194             </section>
195             <section>
196                 <title>Events</title>
197                 <para><emphasis>NOTE:</emphasis> This is only supported in .bb and .bbclass files.</para>
198                 <para>BitBake allows to install event handlers.  Events are triggered at certain points during operation, such as, the beginning of operation against a given .bb, the start of a given task, task failure, task success, et cetera.  The intent was to make it easy to do things like email notifications on build failure.</para>
199                 <para><screen>addhandler myclass_eventhandler
200 python myclass_eventhandler() {
201     from bb.event import NotHandled, getName
202     from bb import data
203
204     print "The name of the Event is %s" % getName(e)
205     print "The file we run for is %s" % data.getVar('FILE', e.data, True)
206
207     return NotHandled
208 }
209 </screen></para><para>
210 This event handler gets called every time an event is triggered. A global variable <varname>e</varname> is defined. <varname>e</varname>.data contains an instance of bb.data. With the getName(<varname>e</varname>)
211 method one can get the name of the triggered event.</para><para>The above event handler prints the name
212 of the event and the content of the <varname>FILE</varname> variable.</para>
213             </section>
214         </section>
215         <section>
216             <title>Parsing</title>
217             <section>
218                 <title>Configuration Files</title>
219                 <para>The first of the classifications of metadata in BitBake is configuration metadata.  This metadata is global, and therefore affects <emphasis>all</emphasis> packages and tasks which are executed.  Currently, BitBake has hardcoded knowledge of a single configuration file.  It expects to find 'conf/bitbake.conf' somewhere in the user specified <envar>BBPATH</envar>.  That configuration file generally has include directives to pull in any other metadata (generally files specific to architecture, machine, <emphasis>local</emphasis> and so on.</para>
220                 <para>Only variable definitions and include directives are allowed in .conf files.</para>
221             </section>
222             <section>
223                 <title>Classes</title>
224                 <para>BitBake classes are our rudamentary inheritence mechanism.  As briefly mentioned in the metadata introduction, they're parsed when an <literal>inherit</literal> directive is encountered, and they are located in classes/ relative to the dirs in <envar>BBPATH</envar>.</para>
225             </section>
226             <section>
227                 <title>.bb Files</title>
228                 <para>A BitBake (.bb) file is a logical unit of tasks to be executed.  Normally this is a package to be built.  Inter-.bb dependencies are obeyed.  The files themselves are located via the <varname>BBFILES</varname> variable, which is set to a space seperated list of .bb files, and does handle wildcards.</para>
229             </section>
230         </section>
231     </chapter>
232
233     <chapter>
234         <title>File Download support</title>
235         <section>
236             <title>Overview</title>
237             <para>BitBake provides support to download files this procedure is called fetching. The SRC_URI is normally used to indicate BitBake which files to fetch. The next sections will describe th available fetchers and the options they have. Each Fetcher honors a set of Variables and
238 a per URI parameters separated by a <quote>;</quote> consisting of a key and a value. The semantic of the Variables and Parameters are defined by the Fetcher. BitBakes tries to have a consistent semantic between the different Fetchers.
239             </para>
240         </section>
241
242         <section>
243             <title>Local File Fetcher</title>
244             <para>The URN for the Local File Fetcher is <emphasis>file</emphasis>. The filename can be either absolute or relative. If the filename is relative <varname>FILESPATH</varname> and <varname>FILESDIR</varname> will be used to find the appropriate relative file depending on the <varname>OVERRIDES</varname>. Single files and complete directories can be specified.
245 <screen><varname>SRC_URI</varname>= "file://relativefile.patch"
246 <varname>SRC_URI</varname>= "file://relativefile.patch;this=ignored"
247 <varname>SRC_URI</varname>= "file:///Users/ich/very_important_software"
248 </screen>
249             </para>
250         </section>
251
252         <section>
253             <title>CVS File Fetcher</title>
254             <para>The URN for the CVS Fetcher is <emphasis>cvs</emphasis>. This Fetcher honors the variables <varname>DL_DIR</varname>, <varname>SRCDATE</varname>, <varname>FETCHCOMMAND_cvs</varname>, <varname>UPDATECOMMAND_cvs</varname>. <varname>DL_DIRS</varname> specifies where a temporary checkout is saved, <varname>SRCDATE</varname> specifies which date to use when doing the fetching, <varname>FETCHCOMMAND</varname> and <varname>UPDATECOMMAND</varname> specify which executables should be used when doing the CVS checkout or update.
255             </para>
256             <para>The supported Parameters are <varname>module</varname>, <varname>tag</varname>, <varname>date</varname>, <varname>method</varname>, <varname>localdir</varname>, <varname>rsh</varname>. The <varname>module</varname> specifies which module to check out, the <varname>tag</varname> describes which CVS TAG should be used for the checkout by default the TAG is empty. A <varname>date</varname> can be specified to override the SRCDATE of the configuration to checkout a specific date. <varname>method</varname> is by default <emphasis>pserver</emphasis>, if <emphasis>ext</emphasis> is used the <varname>rsh</varname> parameter will be evaluated and <varname>CVS_RSH</varname> will be set. Finally <varname>localdir</varname> is used to checkout into a special directory relative to <varname>CVSDIR></varname>.
257 <screen><varname>SRC_URI</varname> = "cvs://CVSROOT;module=mymodule;tag=some-version;method=ext"
258 <varname>SRC_URI</varname> = "cvs://CVSROOT;module=mymodule;date=20060126;localdir=usethat"
259 </screen>
260             </para>
261         </section>
262
263         <section>
264             <title>HTTP/FTP Fetcher</title>
265             <para>The URNs for the HTTP/FTP are <emphasis>http</emphasis>, <emphasis>https</emphasis> and <emphasis>ftp</emphasis>. This Fetcher honors the variables <varname>DL_DIR</varname>, <varname>FETCHCOMMAND_wget</varname>, <varname>PREMIRRORS</varname>, <varname>MIRRORS</varname>. The <varname>DL_DIR</varname> defines where to store the fetched file, <varname>FETCHCOMMAND</varname> contains the command used for fetching. <quote>${URI}</quote> and <quote>${FILES}</quote> will be replaced by the uri and basename of the to be fetched file. <varname>PREMIRRORS</varname>
266 will be tried first when fetching a file if that fails the actual file will be tried and finally all <varname>MIRRORS</varname> will be tried.
267             </para>
268             <para>The only supported Parameter is <varname>md5sum</varname>. After a fetch the <varname>md5sum</varname> of the file will be calculated and the two sums will be compared.
269             </para>
270             <para><screen><varname>SRC_URI</varname> = "http://oe.handhelds.org/not_there.aac;md5sum=12343"
271 <varname>SRC_URI</varname> = "ftp://oe.handhelds.org/not_there_as_well.aac;md5sum=1234"
272 <varname>SRC_URI</varname> = "ftp://you@oe.handheld.sorg/home/you/secret.plan;md5sum=1234"
273 </screen></para>
274         </section>
275
276         <section>
277             <title>SVK Fetcher</title>
278             <para>
279             <emphasis>Currently NOT suppoered</emphasis>
280             </para>
281         </section>
282
283         <section>
284             <title>SVN Fetcher</title>
285             <para>The URN for the SVN Fetcher is <emphasis>svn</emphasis>.
286             </para>
287             <para>The Variables <varname>FETCHCOMMAND_svn</varname>, <varname>DL_DIR</varname> are used by the SVN Fetcher. <varname>FETCHCOMMAND</varname> contains the subversion command, <varname>DL_DIR</varname> is the directory where tarballs will be saved.
288             </para>
289             <para>The supported Parameters are <varname>proto</varname>, <varname>rev</varname>. <varname>proto</varname> is the subversion prototype, <varname>rev</varname> is the subversions revision.
290             </para>
291             <para><screen><varname>SRC_URI</varname> = "svn://svn.oe.handhelds.org/svn;module=vip;proto=http;rev=667"
292 <varname>SRC_URI</varname> = "svn://svn.oe.handhelds.org/svn/;module=opie;proto=svn+ssh;date=20060126"
293 </screen></para>
294         </section>
295
296         <section>
297             <title>GIT Fetcher</title>
298             <para>The URN for the GIT Fetcher is <emphasis>git</emphasis>.
299             </para>
300             <para>The Variables <varname>DL_DIR</varname>, <varname>GITDIR</varname> are used. <varname>DL_DIR</varname> will be used to store the checkedout version. <varname>GITDIR</varname> will be used as the base directory where the git tree is cloned to.
301             </para>
302             <para>The Parameters are <emphasis>tag</emphasis>, <emphasis>protocol</emphasis>. <emphasis>tag</emphasis> is a git tag, the default is <quote>master</quote>. <emphasis>protocol</emphasis> is the git protocol to use and defaults to <quote>rsync</quote>.
303             </para>
304             <para><screen><varname>SRC_URI</varname> = "git://git.oe.handhelds.org/git/vip.git;tag=version-1"
305 <varname>SRC_URI</varname> = "git://git.oe.handhelds.org/git/vip.git;protocol=http"
306             </screen></para>
307         </section>
308
309     </chapter>
310
311
312     <chapter>
313         <title>Commands</title>
314         <section>
315             <title>bbread</title>
316             <para>bbread is a command for displaying BitBake metadata.  When run with no arguments, it has the core parse 'conf/bitbake.conf', as located in BBPATH, and displays that.  If you supply a file on the commandline, such as a .bb, then it parses that afterwards, using the aforementioned configuration metadata.</para>
317         <para><emphasis>NOTE: the stand a lone bbread command was removed. Instead of bbread use bitbake -e.
318         </emphasis></para>
319         </section>
320         <section>
321             <title>bitbake</title>
322             <section>
323                 <title>Introduction</title>
324                 <para>bitbake is the primary command in the system.  It facilitates executing tasks in a single .bb file, or executing a given task on a set of multiple .bb files, accounting for interdependencies amongst them.</para>
325             </section>
326             <section>
327                 <title>Usage and Syntax</title>
328                 <para>
329                     <screen><prompt>$ </prompt>bitbake --help
330 usage: bitbake [options] [package ...]
331
332 Executes the specified task (default is 'build') for a given set of BitBake files.
333 It expects that BBFILES is defined, which is a space seperated list of files to
334 be executed.  BBFILES does support wildcards.
335 Default BBFILES are the .bb files in the current directory.
336
337 options:
338   --version             show program's version number and exit
339   -h, --help            show this help message and exit
340   -b BUILDFILE, --buildfile=BUILDFILE
341                         execute the task against this .bb file, rather than a
342                         package from BBFILES.
343   -k, --continue        continue as much as possible after an error. While the
344                         target that failed, and those that depend on it,
345                         cannot be remade, the other dependencies of these
346                         targets can be processed all the same.
347   -f, --force           force run of specified cmd, regardless of stamp status
348   -i, --interactive     drop into the interactive mode also called the BitBake
349                         shell.
350   -c CMD, --cmd=CMD     Specify task to execute. Note that this only executes
351                         the specified task for the providee and the packages
352                         it depends on, i.e. 'compile' does not implicitly call
353                         stage for the dependencies (IOW: use only if you know
354                         what you are doing). Depending on the base.bbclass a
355                         listtaks tasks is defined and will show available
356                         tasks
357   -r FILE, --read=FILE  read the specified file before bitbake.conf
358   -v, --verbose         output more chit-chat to the terminal
359   -D, --debug           Increase the debug level. You can specify this more
360                         than once.
361   -n, --dry-run         don't execute, just go through the motions
362   -p, --parse-only      quit after parsing the BB files (developers only)
363   -d, --disable-psyco   disable using the psyco just-in-time compiler (not
364                         recommended)
365   -s, --show-versions   show current and preferred versions of all packages
366   -e, --environment     show the global or per-package environment (this is
367                         what used to be bbread)
368   -g, --graphviz        emit the dependency trees of the specified packages in
369                         the dot syntax
370   -I IGNORED_DOT_DEPS, --ignore-deps=IGNORED_DOT_DEPS
371                         Stop processing at the given list of dependencies when
372                         generating dependency graphs. This can help to make
373                         the graph more appealing
374
375 </screen>
376                 </para>
377                 <para>
378                 <example>
379                     <title>Executing a task against a single .bb</title>
380                     <para>Executing tasks for a single file is relatively simple.  You specify the file in question, and bitbake parses it and executes the specified task (or <quote>build</quote> by default).  It obeys intertask dependencies when doing so.</para>
381                     <para><quote>clean</quote> task:</para>
382                     <para><screen><prompt>$ </prompt>bitbake -b blah_1.0.bb -c clean</screen></para>
383                     <para><quote>build</quote> task:</para>
384                     <para><screen><prompt>$ </prompt>bitbake -b blah_1.0.bb</screen></para>
385                 </example>
386                 </para>
387                 <para>
388                 <example>
389                     <title>Executing tasks against a set of .bb files</title>
390                     <para>There are a number of additional complexities introduced when one wants to manage multiple .bb files.  Clearly there needs to be a way to tell bitbake what files are available, and of those, which we want to execute at this time.  There also needs to be a way for each .bb to express its dependencies, both for build time and runtime.  There must be a way for the user to express their preferences when multiple .bb's provide the same functionality, or when there are multiple versions of a .bb.</para>
391                     <para>The next section, Metadata, outlines how one goes about specifying such things.</para>
392                     <para>Note that the bitbake command, when not using --buildfile, accepts a <varname>PROVIDER</varname>, not a filename or anything else.  By default, a .bb generally PROVIDES its packagename, packagename-version, and packagename-version-revision.</para>
393                     <screen><prompt>$ </prompt>bitbake blah</screen>
394                     <screen><prompt>$ </prompt>bitbake blah-1.0</screen>
395                     <screen><prompt>$ </prompt>bitbake blah-1.0-r0</screen>
396                     <screen><prompt>$ </prompt>bitbake -c clean blah</screen>
397                     <screen><prompt>$ </prompt>bitbake virtual/whatever</screen>
398                     <screen><prompt>$ </prompt>bitbake -c clean virtual/whatever</screen>
399                 </example>
400                 <example>
401                     <title>Generating dependency graphs</title>
402                     <para>BitBake is able to generate dependency graphs using the dot syntax. These graphs can be converted
403 to images using the <application>dot</application> application from <ulink url="http://www.graphviz.org">graphviz</ulink>. 
404 Three files will be written into the current working directory, <emphasis>depends.dot</emphasis> containing <varname>DEPENDS</varname> variables, <emphasis>rdepends.dot</emphasis> containing <varname>RDEPENDS</varname> and <emphasis>alldepends.dot</emphasis> containing all depends. To stop depending on common depends one can use the <prompt>-I depend</prompt> to omit these from the graph. This can lead to more readable graphs.</para>
405                     <screen><prompt>$ </prompt>bitbake -g blah</screen>
406                     <screen><prompt>$ </prompt>bitbake -g -I virtual/whatever -I bloom blah</screen>
407                 </example>
408                 </para>
409             </section>
410             <section>
411                 <title>Metadata</title>
412                 <para>As you may have seen in the usage information, or in the information about .bb files, the BBFILES variable is how the bitbake tool locates its files.  This variable is a space seperated list of files that are available, and supports wildcards.
413                 <example>
414                     <title>Setting BBFILES</title>
415                     <programlisting><varname>BBFILES</varname> = "/path/to/bbfiles/*.bb"</programlisting>
416                 </example></para>
417                 <para>With regard to dependencies, it expects the .bb to define a <varname>DEPENDS</varname> variable, which contains a space seperated list of <quote>package names</quote>, which themselves are the <varname>PN</varname> variable.  The <varname>PN</varname> variable is, in general, by default, set to a component of the .bb filename.</para>
418                 <example>
419                     <title>Depending on another .bb</title>
420                     <para>a.bb:
421     <screen>PN = "package-a"
422 DEPENDS += "package-b"</screen>
423                     </para>
424                     <para>b.bb:
425     <screen>PN = "package-b"</screen>
426                     </para>
427                 </example>
428                 <example>
429                     <title>Using PROVIDES</title>
430                     <para>This example shows the usage of the PROVIDES variable, which allows a given .bb to specify what functionality it provides.</para>
431                     <para>package1.bb:
432     <screen>PROVIDES += "virtual/package"</screen>
433                     </para>
434                     <para>package2.bb:
435     <screen>DEPENDS += "virtual/package"</screen>
436                     </para>
437                     <para>package3.bb:
438     <screen>PROVIDES += "virtual/package"</screen>
439                     </para>
440                     <para>As you can see, here there are two different .bb's that provide the same functionality (virtual/package).  Clearly, there needs to be a way for the person running bitbake to control which of those providers gets used.  There is, indeed, such a way.</para>
441                     <para>The following would go into a .conf file, to select package1:
442     <screen>PREFERRED_PROVIDER_virtual/package = "package1"</screen>
443                     </para>
444                 </example>
445                 <example>
446                     <title>Specifying version preference</title>
447                     <para>When there are multiple <quote>versions</quote> of a given package, bitbake defaults to selecting the most recent version, unless otherwise specified.  If the .bb in question has a <varname>DEFAULT_PREFERENCE</varname> set lower than the other .bb's (default is 0), then it will not be selected.  This allows the person or persons maintaining the repository of .bb files to specify their preferences for the default selected version.  In addition, the user can specify their preferences with regard to version.</para>
448                     <para>If the first .bb is named <filename>a_1.1.bb</filename>, then the <varname>PN</varname> variable will be set to <quote>a</quote>, and the <varname>PV</varname> variable will be set to 1.1.</para>
449                     <para>If we then have an <filename>a_1.2.bb</filename>, bitbake will choose 1.2 by default.  However, if we define the following variable in a .conf that bitbake parses, we can change that.
450     <screen>PREFERRED_VERSION_a = "1.1"</screen>
451                     </para>
452                 </example>
453                 <example>
454                     <title>Using <quote>bbfile collections</quote></title>
455                     <para>bbfile collections exist to allow the user to have multiple repositories of bbfiles that contain the same exact package.  For example, one could easily use them to make one's own local copy of an upstream repository, but with custom modifications that one does not want upstream.  Usage:</para>
456                     <screen>BBFILES = "/stuff/openembedded/*/*.bb /stuff/openembedded.modified/*/*.bb"
457 BBFILE_COLLECTIONS = "upstream local"
458 BBFILE_PATTERN_upstream = "^/stuff/openembedded/"
459 BBFILE_PATTERN_local = "^/stuff/openembedded.modified/"
460 BBFILE_PRIORITY_upstream = "5"
461 BBFILE_PRIORITY_local = "10"</screen>
462                 </example>
463             </section>
464         </section>
465     </chapter>
466 </book>