summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/user-manual/user-manual-execution.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-03-07 12:41:08 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-09 18:59:04 -0700
commitda6926bc6a17478bd38f0df176116b6552c124f6 (patch)
tree4a08504d87891a6a296f7794f3476e56f7febd4a /bitbake/doc/user-manual/user-manual-execution.xml
parent40ab94036081f9fdc4ebf6126b077149c2a97c31 (diff)
downloadpoky-da6926bc6a17478bd38f0df176116b6552c124f6.tar.gz
bitbake: user-manual: Review edits applied throughout from Paul Eggleton.
Applied review edits from Paul Eggleton spanning the entire book. Small areas affected in all chapters except the "Hello World" Appendix. Noteworthy changes in the variables chapter where I added two new variables: BBINCLUDELOGS_LINES and BB_CONSOLELOG. (Bitbake rev: 2d4b09be70c6df0c1605f7e291149c682999cf50) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc/user-manual/user-manual-execution.xml')
-rw-r--r--bitbake/doc/user-manual/user-manual-execution.xml12
1 files changed, 7 insertions, 5 deletions
diff --git a/bitbake/doc/user-manual/user-manual-execution.xml b/bitbake/doc/user-manual/user-manual-execution.xml
index 6110a93e2a..a67516e858 100644
--- a/bitbake/doc/user-manual/user-manual-execution.xml
+++ b/bitbake/doc/user-manual/user-manual-execution.xml
@@ -85,8 +85,10 @@
85 Next, the <filename>bitbake.conf</filename> file is searched 85 Next, the <filename>bitbake.conf</filename> file is searched
86 using the <filename>BBPATH</filename> variable that was 86 using the <filename>BBPATH</filename> variable that was
87 just constructed. 87 just constructed.
88 The <filename>bitbake.conf</filename> file usually indicates 88 The <filename>bitbake.conf</filename> file may also include other
89 all the other key include files to parse. 89 configuration files using the
90 <filename>include</filename> or
91 <filename>require</filename> directives.
90 </para> 92 </para>
91 93
92 <para> 94 <para>
@@ -358,11 +360,11 @@
358 360
359 <para> 361 <para>
360 As an example of adding an extra provider, suppose a recipe named 362 As an example of adding an extra provider, suppose a recipe named
361 <filename>package1.bb</filename> contained the following: 363 <filename>foo_1.0.bb</filename> contained the following:
362 <literallayout class='monospaced'> 364 <literallayout class='monospaced'>
363 PROVIDES += "virtual/package" 365 PROVIDES += "virtual/bar_1.0"
364 </literallayout> 366 </literallayout>
365 The recipe now provides both "package1" and "virtual/package". 367 The recipe now provides both "foo_1.0" and "virtual/bar_1.0".
366 The "virtual/" namespace is often used to denote cases where 368 The "virtual/" namespace is often used to denote cases where
367 multiple providers are expected with the user choosing between 369 multiple providers are expected with the user choosing between
368 them. 370 them.