summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-10-22 09:59:12 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-23 00:03:13 +0100
commit3374926849eba0aab360ed23a45a630448928584 (patch)
treef0eadaaa7bcf89154661e77ec2fa4ce903b6307c
parent9137117b3ff946e5961c17662f853db74cb0a28a (diff)
downloadast2050-yocto-poky-3374926849eba0aab360ed23a45a630448928584.zip
ast2050-yocto-poky-3374926849eba0aab360ed23a45a630448928584.tar.gz
documentation: dev-manual - fixed capitalization on Source Directory.
(From yocto-docs rev: 8cfbd4eb519b2b966626c9a1ffd8515c198c2abd) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml28
1 files changed, 14 insertions, 14 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 2f73e28..20742ad 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -46,10 +46,10 @@
<title>Layers</title>
<para>
- The source directory contains several layers right out of the box.
- You can easily identify a layer in the source directory by its folder name.
+ The Source Directory contains several layers right out of the box.
+ You can easily identify a layer in the Source Directory by its folder name.
Folders that are layers begin with the string <filename>meta</filename>.
- For example, when you set up the <link linkend='source-directory'>source directory</link>
+ For example, when you set up the <link linkend='source-directory'>Source Directory</link>
structure, you will see several layers: <filename>meta</filename>,
<filename>meta-hob</filename>, <filename>meta-skeleton</filename>,
<filename>meta-yocto</filename>, and <filename>meta-yocto-bsp</filename>.
@@ -174,14 +174,14 @@
If this is the case, you need to address that deficiency instead of overlaying
the include file.
For example, consider how Qt 4 database support plug-ins are configured.
- The source directory does not have
+ The Source Directory does not have
MySQL or PostgreSQL, however OpenEmbedded's
layer <filename>meta-oe</filename> does.
Consequently, <filename>meta-oe</filename> uses <filename>.bbappend</filename>
files to modify the <filename>QT_SQL_DRIVER_FLAGS</filename> variable to enable
the appropriate plugins.
This variable was added to the <filename>qt4.inc</filename> include file in
- the source directory specifically to allow the <filename>meta-oe</filename> layer
+ the Source Directory specifically to allow the <filename>meta-oe</filename> layer
to be able to control which plugins are built.</para></listitem>
</itemizedlist>
</para>
@@ -193,9 +193,9 @@
<filename>meta-&lt;layer_name&gt;</filename> format.</para></listitem>
<listitem><para>Clone the repository alongside other <filename>meta</filename>
directories in the
- <link linkend='source-directory'>source directory</link>.</para></listitem>
+ <link linkend='source-directory'>Source Directory</link>.</para></listitem>
</itemizedlist>
- Following these recommendations keeps your source directory and
+ Following these recommendations keeps your Source Directory and
its configuration entirely inside the Yocto Project's core base.
</para>
</section>
@@ -283,7 +283,7 @@
<para>
As an example, consider the main formfactor recipe and a corresponding formfactor
append file both from the
- <link linkend='source-directory'>source directory</link>.
+ <link linkend='source-directory'>Source Directory</link>.
Here is the main formfactor recipe, which is named <filename>formfactor_0.0.bb</filename> and
located in the meta layer at <filename>meta/recipes-bsp/formfactor</filename>:
<literallayout class='monospaced'>
@@ -580,7 +580,7 @@
with specialized image <filename>.bb</filename> files.
You can also add more features by configuring the
<filename><ulink url='&YOCTO_DOCS_REF_URL;#var-EXTRA_IMAGE_FEATURES'>EXTRA_IMAGE_FEATURES</ulink></filename>
- variable in the <filename>local.conf</filename> file found in the source directory
+ variable in the <filename>local.conf</filename> file found in the Source Directory
located in the build directory.
</para>
@@ -1083,7 +1083,7 @@
You need to either create a new kernel recipe for this machine, or extend an
existing recipe.
You can find several kernel examples in the
- source directory at <filename>meta/recipes-kernel/linux</filename>
+ Source Directory at <filename>meta/recipes-kernel/linux</filename>
that you can use as references.
</para>
@@ -1206,7 +1206,7 @@
extended to support multiple libraries.
Many standard recipes are already extended and support multiple libraries.
You can check in the <filename>meta/conf/multilib.conf</filename>
- configuration file in the source directory to see how this is
+ configuration file in the Source Directory to see how this is
done using the
<ulink url='&YOCTO_DOCS_REF_URL;#var-BBCLASSEXTEND'><filename>BBCLASSEXTEND</filename></ulink>
variable.
@@ -1365,7 +1365,7 @@
script found in the
<link linkend='build-directory'>Build Directory</link>.
The following commands build and invoke <filename>menuconfig</filename> assuming the
- source directory top-level folder is <filename>~/poky</filename>:
+ Source Directory top-level folder is <filename>~/poky</filename>:
<literallayout class='monospaced'>
$ cd ~/poky
$ source oe-init-build-env
@@ -2013,7 +2013,7 @@
$ bitbake world -f -c distro_check
</literallayout>
The results are stored in the <filename>build/tmp/log/distro_check-${DATETIME}.results</filename>
- file found in the source directory.
+ file found in the Source Directory.
</para>
</section>
@@ -2029,7 +2029,7 @@
<para>
Situations exist where you might want to build software from source files that are external to
- and thus outside of the <link linkend='source-directory'>source directory</link>.
+ and thus outside of the <link linkend='source-directory'>Source Directory</link>.
For example, suppose you have a project that includes a new BSP with a heavily customized
kernel, a very minimal image, and some new user-space recipes.
And, you want to minimize exposing the build system to the
OpenPOWER on IntegriCloud