aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-07-07 08:57:19 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-21 11:00:57 +0100
commitb62b682aef0b63811d14d227e78a1b358a925a29 (patch)
tree51791e59a67350005c121f54095df48f7b9676d5 /bitbake
parent435e425976b72ef0962f1ca3de7cc4366c20ebeb (diff)
downloadopenembedded-core-contrib-b62b682aef0b63811d14d227e78a1b358a925a29.tar.gz
bitbake: bitbake-user-manual-metadata.xml: Replaced "populate_staging"
There is no "populate_staging" any longer, should be "populate_sysroot". (Bitbake rev: dbe5902e64259e2143f09ab1aa9afa03aa02f4c4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
index a9f5072128..a10a660017 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
@@ -1466,9 +1466,9 @@
complete before that task can be executed.
Here is an example:
<literallayout class='monospaced'>
- do_configure[deptask] = "do_populate_staging"
+ do_configure[deptask] = "do_populate_sysroot"
</literallayout>
- In this example, the <filename>do_populate_staging</filename>
+ In this example, the <filename>do_populate_sysroot</filename>
task of each item in <filename>DEPENDS</filename> must complete before
<filename>do_configure</filename> can execute.
</para>
@@ -1543,9 +1543,9 @@
the data in <filename>DEPENDS</filename>.
Here is an example:
<literallayout class='monospaced'>
- do_patch[depends] = "quilt-native:do_populate_staging"
+ do_patch[depends] = "quilt-native:do_populate_sysroot"
</literallayout>
- In this example, the <filename>do_populate_staging</filename>
+ In this example, the <filename>do_populate_sysroot</filename>
task of the target <filename>quilt-native</filename>
must have completed before the
<filename>do_patch</filename> task can execute.