From 5fbb1b77d094776c587ad66d367271c0c553a889 Mon Sep 17 00:00:00 2001 From: Brandon Stafford Date: Wed, 22 Jun 2011 16:30:26 +0100 Subject: doc/usermanual.xml: Tweaks for the manual This patch contains what I hope are non-controversial improvements to the manual. Most of the changes are single characters, but the line-by-line diff makes the patch look large. (Bitbake rev: 5481cc90645e13c4e3cdea41e8e369528a0b1649) Signed-off-by: Brandon Stafford Signed-off-by: Richard Purdie --- bitbake/doc/manual/usermanual.xml | 133 +++++++++++++++++++------------------- 1 file changed, 66 insertions(+), 67 deletions(-) (limited to 'bitbake') diff --git a/bitbake/doc/manual/usermanual.xml b/bitbake/doc/manual/usermanual.xml index 2ebdf32162..7dea949f4f 100644 --- a/bitbake/doc/manual/usermanual.xml +++ b/bitbake/doc/manual/usermanual.xml @@ -29,7 +29,7 @@ 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, including OpenZaurus and Familiar.
- Background and Goals + Background and goals 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 @@ -42,9 +42,9 @@ embedded space, were scalable or maintainable. 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. - Must be linux distribution agnostic (both build and target). + 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). + Must support multiple build and target operating systems (including Cygwin, the BSDs, etc). Must be able to be self contained, rather than tightly integrated into the build machine's root filesystem. There must be a way to handle conditional metadata (on target architecture, operating system, distribution, machine). It must be easy for the person using the tools to supply their own local metadata and packages to operate against. @@ -91,13 +91,13 @@ share common metadata between many packages.
Setting a default value (?=) A ?= "aval" - If A is set before the above is called, it will retain it's previous value. If A is unset prior to the above call, A will be set to aval. Note that this assignment is immediate, so if there are multiple ?= assignments to a single variable, the first of those will be used. + If A is set before the above is called, it will retain its previous value. If A is unset prior to the above call, A will be set to aval. Note that this assignment is immediate, so if there are multiple ?= assignments to a single variable, the first of those will be used.
Setting a default value (??=) A ??= "somevalue" A ??= "someothervalue" - If A is set before the above, it will retain that value. If A is unset prior to the above, A will be set to someothervalue. This is a lazy version of ?=, in that the assignment does not occur until the end of the parsing process, so that the last, rather than the first, ??= assignment to a given variable will be used. + If A is set before the above, it will retain that value. If A is unset prior to the above, A will be set to someothervalue. This is a lazy version of ??=, in that the assignment does not occur until the end of the parsing process, so that the last, rather than the first, ??= assignment to a given variable will be used.
Immediate variable expansion (:=) @@ -125,7 +125,7 @@ share common metadata between many packages. B .= "additionaldata" C = "cval" C =. "test" - In this example, B is now bvaladditionaldata and C is testcval. In contrast to the above Appending and Prepending operators no additional space + In this example, B is now bvaladditionaldata and C is testcval. In contrast to the above appending and prepending operators, no additional space will be introduced.
@@ -147,12 +147,12 @@ will be introduced.
Inclusion - Next, there is the include directive, which causes BitBake to parse in whatever file you specify, and insert it at that location, which is not unlike make. However, if the path specified on the include line is a relative path, BitBake will locate the first one it can find within BBPATH. + Next, there is the include directive, which causes BitBake to parse whatever file you specify, and insert it at that location, which is not unlike make. However, if the path specified on the include line is a relative path, BitBake will locate the first one it can find within BBPATH.
- Requiring Inclusion + Requiring inclusion In contrast to the include directive, require will -raise an ParseError if the to be included file can not be found. Otherwise it will behave just like the +raise an ParseError if the file to be included cannot be found. Otherwise it will behave just like the include directive.
@@ -171,10 +171,10 @@ include directive. import time print time.strftime('%Y%m%d', time.gmtime()) } - This is the similar to the previous, but flags it as python so that BitBake knows it is python code. + This is the similar to the previous, but flags it as Python so that BitBake knows it is Python code.
- Defining python functions into the global python namespace + Defining Python functions into the global Python namespace NOTE: This is only supported in .bb and .bbclass files. def get_depends(bb, d): if bb.data.getVar('SOMECONDITION', d, True): @@ -187,8 +187,8 @@ include directive. This would result in DEPENDS containing dependencywithcond.
- Variable Flags - Variables can have associated flags which provide a way of tagging extra information onto a variable. Several flags are used internally by bitbake but they can be used externally too if needed. The standard operations mentioned above also work on flags. + Variable flags + Variables can have associated flags which provide a way of tagging extra information onto a variable. Several flags are used internally by BitBake but they can be used externally too if needed. The standard operations mentioned above also work on flags. VARIABLE[SOMEFLAG] = "value" In this example, VARIABLE has a flag, SOMEFLAG which is set to value.
@@ -200,19 +200,19 @@ include directive.
Tasks NOTE: This is only supported in .bb and .bbclass files. - In BitBake, each step that needs to be run for a given .bb is known as a task. There is a command addtask to add new tasks (must be a defined python executable metadata and must start with do_) and describe intertask dependencies. + In BitBake, each step that needs to be run for a given .bb is known as a task. There is a command addtask to add new tasks (must be a defined Python executable metadata and must start with do_) and describe intertask dependencies. python do_printdate () { import time print time.strftime('%Y%m%d', time.gmtime()) } addtask printdate before do_build - 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. + 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.
Events NOTE: This is only supported in .bb and .bbclass files. - 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. + BitBake allows installation of 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 is to make it easy to do things like email notification on build failure. addhandler myclass_eventhandler python myclass_eventhandler() { from bb.event import getName @@ -228,20 +228,20 @@ of the event and the content of the FILE variable.
Variants - Two Bitbake features exist to facilitate the creation of multiple buildable incarnations from a single recipe file. - The first is BBCLASSEXTEND. This variable is a space separated list of classes to utilize to "extend" the recipe for each variant. As an example, setting BBCLASSEXTEND = "native" results in a second incarnation of the current recipe being available. This second incarantion will have the "native" class inherited. - The second feature is BBVERSIONS. This variable allows a single recipe to be able to build multiple versions of a project from a single recipe file, and allows you to specify conditional metadata (using the OVERRIDES mechanism) for a single version, or an optionally named range of versions: + Two BitBake features exist to facilitate the creation of multiple buildable incarnations from a single recipe file. + The first is BBCLASSEXTEND. This variable is a space separated list of classes used to "extend" the recipe for each variant. As an example, setting BBCLASSEXTEND = "native" results in a second incarnation of the current recipe being available. This second incarantion will have the "native" class inherited. + The second feature is BBVERSIONS. This variable allows a single recipe to build multiple versions of a project from a single recipe file, and allows you to specify conditional metadata (using the OVERRIDES mechanism) for a single version, or an optionally named range of versions: BBVERSIONS = "1.0 2.0 git" SRC_URI_git = "git://someurl/somepath.git" BBVERSIONS = "1.0.[0-6]:1.0.0+ \ 1.0.[7-9]:1.0.7+" SRC_URI_append_1.0.7+ = "file://some_patch_which_the_new_versions_need.patch;patch=1" - Note that the name of the range will default to the original version of the recipe, so given OE, a recipe file of foo_1.0.0+.bb will default the name of its versions to 1.0.0+. This is useful, as the range name is not only placed into overrides, it's also made available for the metadata to use in the form of the BPV variable, for use in file:// search paths (FILESPATH). + Note that the name of the range will default to the original version of the recipe, so given OE, a recipe file of foo_1.0.0+.bb will default the name of its versions to 1.0.0+. This is useful, as the range name is not only placed into overrides; it's also made available for the metadata to use in the form of the BPV variable, for use in file:// search paths (FILESPATH).
- Dependency Handling - Bitbake 1.7.x onwards works with the metadata at the task level since this is optimal when dealing with multiple threads of execution. A robust method of specifing task dependencies is therefore needed. + Dependency handling + BitBake 1.7.x onwards works with the metadata at the task level since this is optimal when dealing with multiple threads of execution. A robust method of specifing task dependencies is therefore needed.
Dependencies internal to the .bb file Where the dependencies are internal to a given .bb file, the dependencies are handled by the previously detailed addtask directive. @@ -249,26 +249,26 @@ SRC_URI_append_1.0.7+ = "file://some_patch_which_the_new_versions_need.patch;pat
DEPENDS - DEPENDS is taken to specify build time dependencies. The 'deptask' flag for tasks is used to signify the task of each DEPENDS which must have completed before that task can be executed. + DEPENDS lists build time dependencies. The 'deptask' flag for tasks is used to signify the task of each item listed in DEPENDS which must have completed before that task can be executed. do_configure[deptask] = "do_populate_staging" means the do_populate_staging task of each item in DEPENDS must have completed before do_configure can execute.
RDEPENDS - RDEPENDS is taken to specify runtime dependencies. The 'rdeptask' flag for tasks is used to signify the task of each RDEPENDS which must have completed before that task can be executed. + RDEPENDS lists runtime dependencies. The 'rdeptask' flag for tasks is used to signify the task of each item listed in RDEPENDS which must have completed before that task can be executed. do_package_write[rdeptask] = "do_package" means the do_package task of each item in RDEPENDS must have completed before do_package_write can execute.
Recursive DEPENDS - These are specified with the 'recdeptask' flag and is used to signify the task(s) of each DEPENDS which must have completed before that task can be executed. It applies recursively so also, the DEPENDS of each item in the original DEPENDS must be met and so on. + These are specified with the 'recdeptask' flag and is used signify the task(s) of each DEPENDS which must have completed before that task can be executed. It applies recursively so the DEPENDS of each item in the original DEPENDS must be met and so on.
Recursive RDEPENDS - These are specified with the 'recrdeptask' flag and is used to signify the task(s) of each RDEPENDS which must have completed before that task can be executed. It applies recursively so also, the RDEPENDS of each item in the original RDEPENDS must be met and so on. It also runs all DEPENDS first too. + These are specified with the 'recrdeptask' flag and is used signify the task(s) of each RDEPENDS which must have completed before that task can be executed. It applies recursively so the RDEPENDS of each item in the original RDEPENDS must be met and so on. It also runs all DEPENDS first.
- Inter Task + Inter task The 'depends' flag for tasks is a more generic form of which allows an interdependency on specific tasks rather than specifying the data in DEPENDS or RDEPENDS. do_patch[depends] = "quilt-native:do_populate_staging" means the do_populate_staging task of the target quilt-native must have completed before the do_patch can execute. @@ -278,35 +278,34 @@ SRC_URI_append_1.0.7+ = "file://some_patch_which_the_new_versions_need.patch;pat
Parsing
- Configuration Files - The first of the classifications of metadata in BitBake is configuration metadata. This metadata is global, and therefore affects all packages and tasks which are executed. - Bitbake will first search the current working directory for an optional "conf/bblayers.conf" configuration file. This file is expected to contain a BBLAYERS variable which is a space delimited list of 'layer' directories. For each directory in this list a "conf/layer.conf" file will be searched for and parsed with the LAYERDIR variable being set to the directory where the layer was found. The idea is these files will setup BBPATH and other variables correctly for a given build directory automatically for the user. - Bitbake will then expect to find 'conf/bitbake.conf' somewhere in the user specified BBPATH. That configuration file generally has include directives to pull in any other metadata (generally files specific to architecture, machine, local and so on. + Configuration files + The first kind of metadata in BitBake is configuration metadata. This metadata is global, and therefore affects all packages and tasks which are executed. + BitBake will first search the current working directory for an optional "conf/bblayers.conf" configuration file. This file is expected to contain a BBLAYERS variable which is a space delimited list of 'layer' directories. For each directory in this list, a "conf/layer.conf" file will be searched for and parsed with the LAYERDIR variable being set to the directory where the layer was found. The idea is these files will setup BBPATH and other variables correctly for a given build directory automatically for the user. + BitBake will then expect to find 'conf/bitbake.conf' somewhere in the user specified BBPATH. That configuration file generally has include directives to pull in any other metadata (generally files specific to architecture, machine, local and so on). Only variable definitions and include directives are allowed in .conf files.
Classes - BitBake classes are our rudimentary inheritance mechanism. As briefly mentioned in the metadata introduction, they're parsed when an inherit directive is encountered, and they are located in classes/ relative to the dirs in BBPATH. + BitBake classes are our rudimentary inheritance mechanism. As briefly mentioned in the metadata introduction, they're parsed when an inherit directive is encountered, and they are located in classes/ relative to the directories in BBPATH.
- .bb Files + .bb files 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 BBFILES variable, which is set to a space separated list of .bb files, and does handle wildcards.
- File Download support + File download support
Overview - 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 -a per URI parameters separated by a ; 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. + BitBake provides support to download files this procedure is called fetching. The SRC_URI is normally used to tell BitBake which files to fetch. The next sections will describe the available fetchers and their options. Each fetcher honors a set of variables and per URI parameters separated by a ; consisting of a key and a value. The semantics of the variables and parameters are defined by the fetcher. BitBake tries to have consistent semantics between the different fetchers.
- Local File Fetcher - The URN for the Local File Fetcher is file. The filename can be either absolute or relative. If the filename is relative FILESPATH and FILESDIR will be used to find the appropriate relative file depending on the OVERRIDES. Single files and complete directories can be specified. + Local file fetcher + The URN for the local file fetcher is file. The filename can be either absolute or relative. If the filename is relative, FILESPATH and FILESDIR will be used to find the appropriate relative file, depending on the OVERRIDES. Single files and complete directories can be specified. SRC_URI= "file://relativefile.patch" SRC_URI= "file://relativefile.patch;this=ignored" SRC_URI= "file:///Users/ich/very_important_software" @@ -315,10 +314,11 @@ a per URI parameters separated by a ; consisting of a key and a v
- CVS File Fetcher - The URN for the CVS Fetcher is cvs. This Fetcher honors the variables DL_DIR, SRCDATE, FETCHCOMMAND_cvs, UPDATECOMMAND_cvs. DL_DIR specifies where a temporary checkout is saved, SRCDATE specifies which date to use when doing the fetching (the special value of "now" will cause the checkout to be updated on every build), FETCHCOMMAND and UPDATECOMMAND specify which executables should be used when doing the CVS checkout or update. + CVS file fetcher + The URN for the CVS fetcher is cvs. This fetcher honors the variables DL_DIR, SRCDATE, FETCHCOMMAND_cvs, UPDATECOMMAND_cvs. DL_DIR specifies where a temporary checkout is saved. SRCDATE specifies which date to use when doing the fetching (the special value of "now" will cause the checkout to be updated on every build). FETCHCOMMAND and UPDATECOMMAND specify which executables to use for the CVS checkout or update. - The supported Parameters are module, tag, date, method, localdir, rsh and scmdata. The module specifies which module to check out, the tag describes which CVS TAG should be used for the checkout. By default the TAG is empty. A date can be specified to override the SRCDATE of the configuration to checkout a specific date. The special value of "now" will cause the checkout to be updated on every build.method is by default pserver, if ext is used the rsh parameter will be evaluated and CVS_RSH will be set. Finally localdir is used to checkout into a special directory relative to CVSDIR. If scmdata is set to keep + The supported parameters are module, tag, date, method, localdir, rsh and scmdata. The module specifies which module to check out, the tag describes which CVS TAG should be used for the checkout. By default the TAG is empty. A date can be specified to override the SRCDATE of the configuration to checkout a specific date. The special value of "now" will cause the checkout to be updated on every build.method is by default pserver. If ext is used the rsh parameter will be evaluated and CVS_RSH will be set. Finally, localdir is used to checkout into a special directory relative to CVSDIR. + SRC_URI = "cvs://CVSROOT;module=mymodule;tag=some-version;method=ext" SRC_URI = "cvs://CVSROOT;module=mymodule;date=20060126;localdir=usethat" @@ -326,11 +326,10 @@ a per URI parameters separated by a ; consisting of a key and a v
- HTTP/FTP Fetcher - The URNs for the HTTP/FTP are http, https and ftp. This Fetcher honors the variables DL_DIR, FETCHCOMMAND_wget, PREMIRRORS, MIRRORS. The DL_DIR defines where to store the fetched file, FETCHCOMMAND contains the command used for fetching. ${URI} and ${FILES} will be replaced by the uri and basename of the to be fetched file. PREMIRRORS -will be tried first when fetching a file if that fails the actual file will be tried and finally all MIRRORS will be tried. + HTTP/FTP fetcher + The URNs for the HTTP/FTP fetcher are http, https and ftp. This fetcher honors the variables DL_DIR, FETCHCOMMAND_wget, PREMIRRORS, MIRRORS. The DL_DIR defines where to store the fetched file. FETCHCOMMAND contains the command used for fetching. ${URI} and ${FILES} will be replaced by the URI and basename of the file to be fetched. PREMIRRORS will be tried first when fetching a file. If that fails, the actual file will be tried and finally all MIRRORS will be tried. - The only supported Parameter is md5sum. After a fetch the md5sum of the file will be calculated and the two sums will be compared. + The only supported parameter is md5sum. After a fetch the md5sum of the file will be calculated and the two sums will be compared. SRC_URI = "http://oe.handhelds.org/not_there.aac;md5sum=12343" SRC_URI = "ftp://oe.handhelds.org/not_there_as_well.aac;md5sum=1234" @@ -339,19 +338,19 @@ will be tried first when fetching a file if that fails the actual file will be t
- SVK Fetcher + SVK fetcher Currently NOT supported
- SVN Fetcher - The URN for the SVN Fetcher is svn. + SVN fetcher + The URN for the SVN fetcher is svn. - This Fetcher honors the variables FETCHCOMMAND_svn, DL_DIR, SRCDATE. FETCHCOMMAND contains the subversion command, DL_DIR is the directory where tarballs will be saved, SRCDATE specifies which date to use when doing the fetching (the special value of "now" will cause the checkout to be updated on every build). + This fetcher honors the variables FETCHCOMMAND_svn, DL_DIR, SRCDATE. FETCHCOMMAND contains the subversion command. DL_DIR is the directory where tarballs will be saved. SRCDATE specifies which date to use when doing the fetching (the special value of "now" will cause the checkout to be updated on every build). - The supported Parameters are proto, rev and scmdata. proto is the subversion protocol, rev is the subversion revision. If scmdata is set to keep, the .svn directories will be available during compile-time. + The supported parameters are proto, rev and scmdata. proto is the Subversion protocol, rev is the Subversion revision. If scmdata is set to keep, the .svn directories will be available during compile-time. SRC_URI = "svn://svn.oe.handhelds.org/svn;module=vip;proto=http;rev=667" SRC_URI = "svn://svn.oe.handhelds.org/svn/;module=opie;proto=svn+ssh;date=20060126" @@ -359,12 +358,12 @@ will be tried first when fetching a file if that fails the actual file will be t
- GIT Fetcher + GIT fetcher The URN for the GIT Fetcher is git. The Variables DL_DIR, GITDIR are used. DL_DIR will be used to store the checkedout version. GITDIR will be used as the base directory where the git tree is cloned to. - The Parameters are tag, protocol and scmdata. tag is a git tag, the default is master. protocol is the git protocol to use and defaults to rsync. If scmdata is set to keep, the .git directory will be available during compile-time. + The parameters are tag, protocol and scmdata. tag is a Git tag, the default is master. protocol is the Git protocol to use and defaults to rsync. If scmdata is set to keep, the .git directory will be available during compile-time. SRC_URI = "git://git.oe.handhelds.org/git/vip.git;tag=version-1" SRC_URI = "git://git.oe.handhelds.org/git/vip.git;protocol=http" @@ -375,13 +374,13 @@ will be tried first when fetching a file if that fails the actual file will be t - The bitbake command + The BitBake command
Introduction 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.
- Usage and Syntax + Usage and syntax $ bitbake --help usage: bitbake [options] [package ...] @@ -436,7 +435,7 @@ options: Executing a task against a single .bb - 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 build by default). It obeys intertask dependencies when doing so. + 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 build by default). It obeys intertask dependencies when doing so. clean task: $ bitbake -b blah_1.0.bb -c clean build task: @@ -446,8 +445,8 @@ options: Executing tasks against a set of .bb files - 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. - The next section, Metadata, outlines how one goes about specifying such things. + 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. + The next section, Metadata, outlines how to specify such things. Note that the bitbake command, when not using --buildfile, accepts a PROVIDER, not a filename or anything else. By default, a .bb generally PROVIDES its packagename, packagename-version, and packagename-version-revision. $ bitbake blah $ bitbake blah-1.0 @@ -459,8 +458,8 @@ options: Generating dependency graphs BitBake is able to generate dependency graphs using the dot syntax. These graphs can be converted -to images using the dot application from graphviz. -Two files will be written into the current working directory, depends.dot containing dependency information at the package level and task-depends.dot containing a breakdown of the dependencies at the task level. To stop depending on common depends one can use the -I depend to omit these from the graph. This can lead to more readable graphs. E.g. this way DEPENDS from inherited classes, e.g. base.bbclass, can be removed from the graph. +to images using the dot application from Graphviz. +Two files will be written into the current working directory, depends.dot containing dependency information at the package level and task-depends.dot containing a breakdown of the dependencies at the task level. To stop depending on common depends, one can use the -I depend to omit these from the graph. This can lead to more readable graphs. This way, DEPENDS from inherited classes such as base.bbclass can be removed from the graph. $ bitbake -g blah $ bitbake -g -I virtual/whatever -I bloom blah @@ -468,20 +467,20 @@ Two files will be written into the current working directory, depends.
Special variables - Certain variables affect bitbake operation: + Certain variables affect BitBake operation:
<varname>BB_NUMBER_THREADS</varname> - The number of threads bitbake should run at once (default: 1). + The number of threads BitBake should run at once (default: 1).
Metadata - 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 separated list of files that are available, and supports wildcards. + 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 separated list of files that are available, and supports wildcards. Setting BBFILES BBFILES = "/path/to/bbfiles/*.bb" - With regard to dependencies, it expects the .bb to define a DEPENDS variable, which contains a space separated list of package names, which themselves are the PN variable. The PN variable is, in general, by default, set to a component of the .bb filename. + With regard to dependencies, it expects the .bb to define a DEPENDS variable, which contains a space separated list of package names, which themselves are the PN variable. The PN variable is, in general, set to a component of the .bb filename by default. Depending on another .bb a.bb: @@ -494,7 +493,7 @@ DEPENDS += "package-b" Using PROVIDES - This example shows the usage of the PROVIDES variable, which allows a given .bb to specify what functionality it provides. + This example shows the usage of the PROVIDES variable, which allows a given .bb to specify what functionality it provides. package1.bb: PROVIDES += "virtual/package" @@ -504,16 +503,16 @@ DEPENDS += "package-b" package3.bb: PROVIDES += "virtual/package" - 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. + As you can see, we have 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. The following would go into a .conf file, to select package1: PREFERRED_PROVIDER_virtual/package = "package1" Specifying version preference - When there are multiple versions of a given package, bitbake defaults to selecting the most recent version, unless otherwise specified. If the .bb in question has a DEFAULT_PREFERENCE 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. + When there are multiple versions of a given package, BitBake defaults to selecting the most recent version, unless otherwise specified. If the .bb in question has a DEFAULT_PREFERENCE 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 preference for the default selected version. In addition, the user can specify their preferred version. If the first .bb is named a_1.1.bb, then the PN variable will be set to a, and the PV variable will be set to 1.1. - If we then have an a_1.2.bb, bitbake will choose 1.2 by default. However, if we define the following variable in a .conf that bitbake parses, we can change that. + If we then have an a_1.2.bb, BitBake will choose 1.2 by default. However, if we define the following variable in a .conf that BitBake parses, we can change that. PREFERRED_VERSION_a = "1.1" -- cgit v1.2.3-54-g00ecf