summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual/ref-bitbake.xml
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 17:25:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-21 13:08:45 +0100
commite9b17e3fa7f15740d8e5cfdfe19c0565a74c0d20 (patch)
treed5bbbbe052a51dc4494e4913a03c95045682efd6 /documentation/poky-ref-manual/ref-bitbake.xml
parentb3d84fb35a2d11587d973c59a6d0851c1988d409 (diff)
downloadpoky-e9b17e3fa7f15740d8e5cfdfe19c0565a74c0d20.tar.gz
Rename poky-image-* -> core-image-* and task-poky-* -> task-core-*
(From yocto-docs rev: 0feb6b8f9621087ba5fd77d3c8f3e23132c97187) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/poky-ref-manual/ref-bitbake.xml')
-rw-r--r--documentation/poky-ref-manual/ref-bitbake.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/poky-ref-manual/ref-bitbake.xml b/documentation/poky-ref-manual/ref-bitbake.xml
index 75b3bf5e54..df8432c91b 100644
--- a/documentation/poky-ref-manual/ref-bitbake.xml
+++ b/documentation/poky-ref-manual/ref-bitbake.xml
@@ -9,7 +9,7 @@
9 BitBake is a program written in Python that interprets the metadata that makes up Poky. 9 BitBake is a program written in Python that interprets the metadata that makes up Poky.
10 At some point, people wonder what actually happens when you enter: 10 At some point, people wonder what actually happens when you enter:
11 <literallayout class='monospaced'> 11 <literallayout class='monospaced'>
12 $ bitbake poky-image-sato 12 $ bitbake core-image-sato
13 </literallayout> 13 </literallayout>
14 </para> 14 </para>
15 15
@@ -111,11 +111,11 @@
111 111
112 <para> 112 <para>
113 Once all the <filename>.bb</filename> files have been 113 Once all the <filename>.bb</filename> files have been
114 parsed, BitBake starts to build the target (poky-image-sato in the previous section's 114 parsed, BitBake starts to build the target (core-image-sato in the previous section's
115 example) and looks for providers of that target. 115 example) and looks for providers of that target.
116 Once a provider is selected, BitBake resolves all the dependencies for 116 Once a provider is selected, BitBake resolves all the dependencies for
117 the target. 117 the target.
118 In the case of "poky-image-sato", it would lead to <filename>task-base.bb</filename>, 118 In the case of "core-image-sato", it would lead to <filename>task-base.bb</filename>,
119 which in turn leads to packages like <application>Contacts</application>, 119 which in turn leads to packages like <application>Contacts</application>,
120 <application>Dates</application> and <application>BusyBox</application>. 120 <application>Dates</application> and <application>BusyBox</application>.
121 These packages in turn depend on glibc and the toolchain. 121 These packages in turn depend on glibc and the toolchain.