summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/user-manual/user-manual-execution.xml
diff options
context:
space:
mode:
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.