From 0e90d0f1a4e5b9b89b88bd4d34049b9cdf7f03f7 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 18 Jan 2014 11:34:47 +0000 Subject: bitbake: user-manual-metadata: Update whitespace (no content changes) (Bitbake rev: 7eb1e340321ab4a5baa23e83eebf65ba13d23aef) Signed-off-by: Richard Purdie --- bitbake/doc/user-manual/user-manual-metadata.xml | 868 ++++++++++++++++------- 1 file changed, 621 insertions(+), 247 deletions(-) (limited to 'bitbake/doc') diff --git a/bitbake/doc/user-manual/user-manual-metadata.xml b/bitbake/doc/user-manual/user-manual-metadata.xml index efbbfb4..c693e1e 100644 --- a/bitbake/doc/user-manual/user-manual-metadata.xml +++ b/bitbake/doc/user-manual/user-manual-metadata.xml @@ -1,8 +1,10 @@ - - Metadata -
+"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> + + + Metadata + +
Description BitBake metadata can be classified into 3 major areas: @@ -16,230 +18,430 @@ Classes - 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. + + 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. +
Basic Syntax -
- Basic variable setting - VARIABLE = "value" - In this example, VARIABLE is value. -
- -
- Variable expansion - BitBake supports variables referencing one another's contents using a syntax which is similar to shell scripting - A = "aval" -B = "pre${A}post" - This results in A containing aval and B containing preavalpost. -
- -
- Setting a default value (?=) - A ?= "aval" - 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 weak 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/weak assignment 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. Any other setting of A using = or ?= will however override the value set with ??= -
- -
- Immediate variable expansion (:=) - := results in a variable's contents being expanded immediately, rather than when the variable is actually used. - T = "123" +
+ Basic variable setting + + + VARIABLE = "value" + + + In this example, VARIABLE is value. + +
+ +
+ Variable expansion + + + BitBake supports variables referencing one another's + contents using a syntax which is similar to shell + scripting + + + + A = "aval" +B = "pre${A}post" + + + This results in A containing + aval and B containing + preavalpost. + +
+ +
+ Setting a default value (?=) + + + A ?= "aval" + + + 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 weak 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/weak assignment 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. + Any other setting of A using = or ?= + will however override the value set with ??= + +
+ +
+ Immediate variable expansion (:=) + + + := results in a variable's contents being expanded immediately, rather than when the variable is actually used. + + + T = "123" A := "${B} ${A} test ${T}" T = "456" B = "${T} bval" C = "cval" -C := "${C}append" - In that example, A would contain test 123, B would contain 456 bval, and C would be cvalappend. -
+C := "${C}append"
+
+ + In that example, A would contain test 123, B would contain 456 bval, and C would be cvalappend. + +
+ +
+ Appending (+=) and prepending (=+) -
- Appending (+=) and prepending (=+) - B = "bval" + + B = "bval" B += "additionaldata" C = "cval" -C =+ "test" - In this example, B is now bval additionaldata and C is test cval. -
+C =+ "test" + + + In this example, B is now bval additionaldata and C is test cval. + +
+ +
+ Appending (.=) and prepending (=.) without spaces -
- Appending (.=) and prepending (=.) without spaces - B = "bval" + + B = "bval" 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 -will be introduced. -
- -
- Appending and Prepending (override style syntax) - B = "bval" +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 will be introduced. + +
+ +
+ Appending and Prepending (override style syntax) + + + B = "bval" B_append = " additional data" C = "cval" -C_prepend = "additional data " - This example results in B becoming bval additional data -and C becoming additional data cval. Note the spaces in the append. -Unlike the += operator, additional space is not automatically added. You must take steps to add space -yourself. -
- -
- Removing (override style syntax) - FOO = "123 456 789 123456 123 456 123 456" +C_prepend = "additional data " + + + This example results in B + becoming bval additional data + and C becoming + additional data cval. + Note the spaces in the append. + Unlike the += operator, additional space is not automatically added. + You must take steps to add space +yourself. + +
+ +
+ Removing (override style syntax) + + FOO = "123 456 789 123456 123 456 123 456" FOO_remove = "123" -FOO_remove = "456" - In this example, FOO is now 789 123456. -
- -
- 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. -
- -
- Python variable expansion - DATE = "${@time.strftime('%Y%m%d',time.gmtime())}" - This would result in the DATE variable containing today's date. -
- -
- Conditional metadata set - OVERRIDES is a : separated variable containing each item you want to satisfy conditions. So, if you have a variable which is conditional on arm, and arm is in OVERRIDES, then the arm specific version of the variable is used rather than the non-conditional version. Example: - OVERRIDES = "architecture:os:machine" +FOO_remove = "456" + + + In this example, FOO is now 789 123456. + +
+ +
+ 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. + +
+ +
+ Python variable expansion + + + DATE = "${@time.strftime('%Y%m%d',time.gmtime())}" + + + This would result in the DATE + variable containing today's date. + +
+ +
+ Conditional metadata set + + + OVERRIDES is a : separated variable containing + each item you want to satisfy conditions. + So, if you have a variable which is conditional on arm, and arm + is in OVERRIDES, then the arm specific + version of the variable is used rather than the non-conditional + version. + Example: + + + OVERRIDES = "architecture:os:machine" TEST = "defaultvalue" TEST_os = "osspecificvalue" -TEST_condnotinoverrides = "othercondvalue" - In this example, TEST would be osspecificvalue, due to the condition os being in OVERRIDES. -
- -
- Conditional appending - BitBake also supports appending and prepending to variables based on whether something is in OVERRIDES. Example: - DEPENDS = "glibc ncurses" -OVERRIDES = "machine:local" -DEPENDS_append_machine = " libmad" - In this example, DEPENDS is set to glibc ncurses libmad. -
+TEST_condnotinoverrides = "othercondvalue" + + + In this example, TEST would be + osspecificvalue, due to the condition + os being in OVERRIDES. + +
-
- Variable interaction: Worked Examples - Despite the documentation of the different forms of variable definition above, it can be hard to work out what happens when variable operators are combined. This section documents some common questions people have regarding the way variables interact. +
+ Conditional appending - There is often confusion about which order overrides and the various append operators take effect. + + BitBake also supports appending and prepending to variables based + on whether something is in OVERRIDES. Example: + + + DEPENDS = "glibc ncurses" +OVERRIDES = "machine:local" +DEPENDS_append_machine = " libmad" + + + In this example, DEPENDS is set to + glibc ncurses libmad. + +
- OVERRIDES = "foo" -A_foo_append = "X" - In this case, X is unconditionally appended to the variable A_foo. Since foo is an override, A_foo would then replace A. +
+ Variable interaction: Worked Examples - OVERRIDES = "foo" + + Despite the documentation of the different forms of + variable definition above, it can be hard to work + out what happens when variable operators are combined. + This section documents some common questions people have + regarding the way variables interact. + + + + There is often confusion about which order overrides and the + various append operators take effect. + + + + OVERRIDES = "foo" +A_foo_append = "X" + + + In this case, X is unconditionally appended + to the variable A_foo. + Since foo is an override, A_foo would then replace + A. + + + OVERRIDES = "foo" A = "X" A_append_foo = "Y" - In this case, only when foo is in OVERRIDES, Y is appended to the variable A so the value of A would become XY (NB: no spaces are appended). - - OVERRIDES = "foo" + + In this case, only when foo is in + OVERRIDES, Y + is appended to the variable A + so the value of A would + become XY (NB: no spaces are appended). + + + OVERRIDES = "foo" A_foo_append = "X" -A_foo_append += "Y" - This behaves as per the first case above, but the value of A would be "X Y" instead of just "X". - - A = "1" +A_foo_append += "Y" + + + This behaves as per the first case above, but the value of + A would be "X Y" instead of just "X". + + + A = "1" A_append = "2" A_append = "3" A += "4" -A .= "5" - - Would ultimately result in A taking the value "1 4523" since the _append operator executes at the same time as the expansion of other overrides. - -
-
- Key Expansion +A .= "5" + + + Would ultimately result in A taking the value + "1 4523" since the _append operator executes at the + same time as the expansion of other overrides. + +
- Key expansion happens at the data store finalisation time just before overrides are expanded. +
+ Key Expansion - A${B} = "X" + + Key expansion happens at the data store finalisation + time just before overrides are expanded. + + + A${B} = "X" B = "2" -A2 = "Y" - So in this case A2 would take the value of "X". -
+A2 = "Y" + + + So in this case A2 would take the value of "X". + +
Inheritance -
- Inheritance - NOTE: This is only supported in .bb and .bbclass files. - The inherit directive is a means of specifying what classes of functionality your .bb requires. It is a rudimentary form of inheritance. 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.bbclass in BBPATH, where filename is what you inherited. -
- -
- Inclusion - 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 - In contrast to the include directive, require will -raise an ParseError if the file to be included cannot be found. Otherwise it will behave just like the -include directive. -
+
+ Inheritance + NOTE: + This is only supported in .bb and .bbclass files. + + + The inherit directive is a means of specifying what classes + of functionality your .bb requires. + It is a rudimentary form of inheritance. + 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.bbclass + in BBPATH, where filename is what you inherited. + +
+ +
+ Inclusion + + + 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 + + In contrast to the include directive, require will +raise an + ParseError if the file to be included cannot + be found. + Otherwise it will behave just like the include directive. + +
-
- Defining Python functions into the global Python namespace - NOTE: This is only supported in .bb and .bbclass files. - def get_depends(bb, d): +
+ Defining Python functions into the global Python namespace + + NOTE: This is only supported in .bb and .bbclass files + + + def get_depends(bb, d): if d.getVar('SOMECONDITION', True): return "dependencywithcond" else: return "dependency" SOMECONDITION = "1" -DEPENDS = "${@get_depends(bb, d)}" - This would result in DEPENDS containing dependencywithcond. -
- -
- Defining executable metadata - NOTE: This is only supported in .bb and .bbclass files. - do_mytask () { +DEPENDS = "${@get_depends(bb, d)}" + + + This would result in DEPENDS containing dependencywithcond. + +
+ +
+ Defining executable metadata + NOTE: This is only supported in .bb and .bbclass files. + + + do_mytask () { echo "Hello, world!" -} - This is essentially identical to setting a variable, except that this variable happens to be executable shell code. - python do_printdate () { +} + + + This is essentially identical to setting a variable, except that this variable happens to be executable shell code. + + + python do_printdate () { 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. -
- -
- 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. - python do_printdate () { +} + + + This is the similar to the previous, but flags it as Python so that BitBake knows it is Python code. + +
+ +
+ 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. + + + 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. -
+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. + +
+ +
+ Task Flags -
- Task Flags - Tasks support a number of flags which control various functionality of the task. These are as follows: + + Tasks support a number of flags which control various + functionality of the task. These are as follows: + 'dirs' - directories which should be created before the task runs 'cleandirs' - directories which should be created before the task runs but should be empty 'noexec' - marks the tasks as being empty and no execution required. These are used as dependency placeholders or used when added tasks need to be subsequently disabled. @@ -247,32 +449,89 @@ addtask printdate before do_build 'fakeroot' - this task needs to be run in a fakeroot environment, obtained by adding the variables in FAKEROOTENV to the environment. 'umask' - the umask to run the task under. For the 'deptask', 'rdeptask', 'depends', 'rdepends' and 'recrdeptask' flags please see the dependencies section. -
+
Parsing -
- 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 directories in BBPATH. -
-
- .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. -
+
+ 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 directories in BBPATH. +
-
- Events - NOTE: This is only supported in .bb and .bbclass files. - 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 +
+ .bb files + + + 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. + +
+
+ +
+ Events + + + NOTE: + This is only supported in .bb and .bbclass files. + + + 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 from bb import data @@ -280,61 +539,176 @@ python myclass_eventhandler() { print("The name of the Event is %s" % getName(e)) print("The file we run for is %s" % data.getVar('FILE', e.data, True)) } - -This event handler gets called every time an event is triggered. A global variable e is defined. e.data contains an instance of bb.data. With the getName(e) -method one can get the name of the triggered event.The above event handler prints the name -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 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 incarnation 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+ \ + + + + This event handler gets called every time an event is + triggered. + A global variable e is defined. + e.data contains an instance of + bb.data. + With the getName(e) method one can get + the name of the triggered event. + + + + The above event handler prints the name 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 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 incarnation 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). -
- -
- Dependency handling - BitBake handles dependencies at the task level since to allow for efficient operation with multiple processed executing in parallel. A robust method of specifying 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. -
- -
- Build Dependencies - 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. -
- -
- Runtime Dependencies - The PACKAGES variable lists runtime packages and each of these can have RDEPENDS and RRECOMMENDS runtime dependencies. The 'rdeptask' flag for tasks is used to signify the task of each item runtime dependency 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 Dependencies - These are specified with the 'recrdeptask' flag which is used signify the task(s) of dependencies which must have completed before that task can be executed. It works by looking though the build and runtime dependencies of the current recipe as well as any inter-task dependencies the task has, then adding a dependency on the listed task. It will then recurse through the dependencies of those tasks and so on. - It may be desireable to recurse not just through the dependencies of those tasks but through the build and runtime dependencies of dependent tasks too. If that is the case, the taskname itself should be referenced in the task list, e.g. do_a[recrdeptask] = "do_a do_b". -
- -
- 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. - 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. - The 'rdepends' flag works in a similar way but takes targets in the runtime namespace instead of the build time dependency namespace. -
+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). + +
+ +
+ Dependency handling + + + BitBake handles dependencies at the task level since to + allow for efficient operation with multiple + processed executing in parallel. A robust method of + specifying 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. +
+
+ Build Dependencies + + + 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. + +
+ +
+ Runtime Dependencies + + + The PACKAGES variable lists runtime + packages and each of these can have RDEPENDS and + RRECOMMENDS runtime dependencies. + The 'rdeptask' flag for tasks is used to signify the task of each + item runtime dependency 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 Dependencies + + + These are specified with the 'recrdeptask' flag + which is used signify the task(s) of dependencies + which must have completed before that task can be + executed. + It works by looking though the build + and runtime dependencies of the current recipe as well + as any inter-task dependencies the task has, + then adding a dependency on the listed task. + It will then recurse through the dependencies of those + tasks and so on. + + + + It may be desireable to recurse not just through the + dependencies of those tasks but through the + build and runtime dependencies of dependent tasks too. + If that is the case, the taskname itself should + be referenced in the task list, e.g. + do_a[recrdeptask] = "do_a do_b". + +
+ +
+ 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. + + + 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. + + + + The 'rdepends' flag works in a similar way but takes targets + in the runtime namespace instead of the build time dependency + namespace. + +
+
+ -- cgit v1.1