summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/usingpoky.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-11-21 10:19:12 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-03 12:54:05 +0000
commit65b7f134fb2e7c5e53aa7e3aeb3743cc21fa3ce3 (patch)
tree5338108546435012a33ba6e9d6f36fb17102a7f5 /documentation/ref-manual/usingpoky.xml
parent33e7953a5828a68d0468281a4e65df8092658a2b (diff)
downloadpoky-65b7f134fb2e7c5e53aa7e3aeb3743cc21fa3ce3.tar.gz
ref-manual: Added the pn-buildlist file to list of files
In the "Dependency Graphs" section, the pn-buildlist file was not mentioned as a file generated by the 'bitbake -g <target>' command. I added this in and provided a bit of re-writing. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> (From yocto-docs rev: 811a6af8fdb2cfa0b38d260665ed00260a939251) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/usingpoky.xml')
-rw-r--r--documentation/ref-manual/usingpoky.xml21
1 files changed, 13 insertions, 8 deletions
diff --git a/documentation/ref-manual/usingpoky.xml b/documentation/ref-manual/usingpoky.xml
index 94f113590a..3251490063 100644
--- a/documentation/ref-manual/usingpoky.xml
+++ b/documentation/ref-manual/usingpoky.xml
@@ -207,14 +207,19 @@
207 <title>Dependency Graphs</title> 207 <title>Dependency Graphs</title>
208 208
209 <para> 209 <para>
210 Sometimes it can be hard to see why BitBake wants to build some other packages before a given 210 Sometimes it can be hard to see why BitBake wants to build
211 package you have specified. 211 other packages before building a given package you have specified.
212 The <filename>bitbake -g targetname</filename> command creates the 212 The <filename>bitbake -g &lt;targetname&gt;</filename> command
213 <filename>depends.dot</filename>, <filename>package-depends.dot</filename>, 213 creates the <filename>pn-buildlist</filename>,
214 and <filename>task-depends.dot</filename> files in the current directory. 214 <filename>depends.dot</filename>,
215 These files show the package and task dependencies and are useful for debugging problems. 215 <filename>package-depends.dot</filename>, and
216 You can use the <filename>bitbake -g -u depexp targetname</filename> command to 216 <filename>task-depends.dot</filename> files in the current
217 display the results in a more human-readable form. 217 directory.
218 These files show what will be built and the package and task
219 dependencies, which are useful for debugging problems.
220 You can use the
221 <filename>bitbake -g -u depexp &lt;targetname&gt;</filename>
222 command to display the results in a more human-readable form.
218 </para> 223 </para>
219 </section> 224 </section>
220 225