summaryrefslogtreecommitdiffstats
path: root/bitbake/doc
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/doc
parent435e425976b72ef0962f1ca3de7cc4366c20ebeb (diff)
downloadpoky-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/doc')
-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 @@
1466 complete before that task can be executed. 1466 complete before that task can be executed.
1467 Here is an example: 1467 Here is an example:
1468 <literallayout class='monospaced'> 1468 <literallayout class='monospaced'>
1469 do_configure[deptask] = "do_populate_staging" 1469 do_configure[deptask] = "do_populate_sysroot"
1470 </literallayout> 1470 </literallayout>
1471 In this example, the <filename>do_populate_staging</filename> 1471 In this example, the <filename>do_populate_sysroot</filename>
1472 task of each item in <filename>DEPENDS</filename> must complete before 1472 task of each item in <filename>DEPENDS</filename> must complete before
1473 <filename>do_configure</filename> can execute. 1473 <filename>do_configure</filename> can execute.
1474 </para> 1474 </para>
@@ -1543,9 +1543,9 @@
1543 the data in <filename>DEPENDS</filename>. 1543 the data in <filename>DEPENDS</filename>.
1544 Here is an example: 1544 Here is an example:
1545 <literallayout class='monospaced'> 1545 <literallayout class='monospaced'>
1546 do_patch[depends] = "quilt-native:do_populate_staging" 1546 do_patch[depends] = "quilt-native:do_populate_sysroot"
1547 </literallayout> 1547 </literallayout>
1548 In this example, the <filename>do_populate_staging</filename> 1548 In this example, the <filename>do_populate_sysroot</filename>
1549 task of the target <filename>quilt-native</filename> 1549 task of the target <filename>quilt-native</filename>
1550 must have completed before the 1550 must have completed before the
1551 <filename>do_patch</filename> task can execute. 1551 <filename>do_patch</filename> task can execute.