summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-11-07 14:23:56 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-03 12:53:53 +0000
commit9addcf5ccbd96eb791c333c53dcb8ccab593b64c (patch)
tree12362068768b43fa66a501abb9045e34bf357597 /documentation/dev-manual
parenta665b9b68e54cb878e3d653bd049f3be6cc8ce73 (diff)
downloadpoky-9addcf5ccbd96eb791c333c53dcb8ccab593b64c.tar.gz
documentation: Scrubbed use of directory names
There was inconsistent use of the way directory names were handled throughout the YP documentation. I have scrubbed the set and replaced many instances such as the following: meta/<something> replaces /meta/<something> poky replaces ~/poky (except in some very specific examples) I basically got rid of leading slash characters. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> (From yocto-docs rev: 12a96db6dffe09fca7ce848e006c591a637be5a4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml18
-rw-r--r--documentation/dev-manual/dev-manual-model.xml6
-rw-r--r--documentation/dev-manual/dev-manual-newbie.xml4
3 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 43d6fa52c0..bd8c2c9be9 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -357,7 +357,7 @@
357 to cause the build to use your own version of 357 to cause the build to use your own version of
358 the file. 358 the file.
359 For example, an append file in your layer at 359 For example, an append file in your layer at
360 <filename>/meta-one/recipes-core/base-files/base-files.bbappend</filename> 360 <filename>meta-one/recipes-core/base-files/base-files.bbappend</filename>
361 could extend 361 could extend
362 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink> 362 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink>
363 using 363 using
@@ -369,7 +369,7 @@
369 The build for machine "one" will pick up your 369 The build for machine "one" will pick up your
370 machine-specific file as long as you have the 370 machine-specific file as long as you have the
371 file in 371 file in
372 <filename>/meta-one/recipes-core/base-files/base-files/</filename>. 372 <filename>meta-one/recipes-core/base-files/base-files/</filename>.
373 However, if you are building for a different 373 However, if you are building for a different
374 machine and the 374 machine and the
375 <filename>bblayers.conf</filename> file includes 375 <filename>bblayers.conf</filename> file includes
@@ -384,9 +384,9 @@
384 the file in a subdirectory specific to the 384 the file in a subdirectory specific to the
385 machine. 385 machine.
386 For example, rather than placing the file in 386 For example, rather than placing the file in
387 <filename>/meta-one/recipes-core/base-files/base-files/</filename> 387 <filename>meta-one/recipes-core/base-files/base-files/</filename>
388 as shown above, put it in 388 as shown above, put it in
389 <filename>/meta-one/recipes-core/base-files/base-files/one/</filename>. 389 <filename>meta-one/recipes-core/base-files/base-files/one/</filename>.
390 Not only does this make sure the file is used 390 Not only does this make sure the file is used
391 only when building for machine "one" but the 391 only when building for machine "one" but the
392 build process locates the file more quickly.</para> 392 build process locates the file more quickly.</para>
@@ -1957,7 +1957,7 @@
1957 <link linkend='source-directory'>Source Directory</link> 1957 <link linkend='source-directory'>Source Directory</link>
1958 top-level folder is <filename>~/poky</filename>: 1958 top-level folder is <filename>~/poky</filename>:
1959 <literallayout class='monospaced'> 1959 <literallayout class='monospaced'>
1960 $ cd ~/poky 1960 $ cd poky
1961 $ source oe-init-build-env 1961 $ source oe-init-build-env
1962 $ bitbake linux-yocto -c menuconfig 1962 $ bitbake linux-yocto -c menuconfig
1963 </literallayout> 1963 </literallayout>
@@ -2006,7 +2006,7 @@
2006 <filename>x86</filename> architecture, the 2006 <filename>x86</filename> architecture, the
2007 <filename>.config</filename> file would be located here: 2007 <filename>.config</filename> file would be located here:
2008 <literallayout class='monospaced'> 2008 <literallayout class='monospaced'>
2009 ~/poky/build/tmp/work/qemux86-poky-linux/linux-yocto-3.4.11+git1+84f... 2009 poky/build/tmp/work/qemux86-poky-linux/linux-yocto-3.4.11+git1+84f...
2010 ...656ed30-r1/linux-qemux86-standard-build 2010 ...656ed30-r1/linux-qemux86-standard-build
2011 </literallayout> 2011 </literallayout>
2012 <note> 2012 <note>
@@ -2079,7 +2079,7 @@
2079 kernel's configuration. 2079 kernel's configuration.
2080 For example, suppose you had a set of configuration options in a file called 2080 For example, suppose you had a set of configuration options in a file called
2081 <filename>myconfig.cfg</filename>. 2081 <filename>myconfig.cfg</filename>.
2082 If you put that file inside a directory named <filename>/linux-yocto</filename> 2082 If you put that file inside a directory named <filename>linux-yocto</filename>
2083 that resides in the same directory as the kernel's append file and then add 2083 that resides in the same directory as the kernel's append file and then add
2084 a <filename>SRC_URI</filename> statement such as the following to the kernel's append file, 2084 a <filename>SRC_URI</filename> statement such as the following to the kernel's append file,
2085 those configuration options will be picked up and applied when the kernel is built. 2085 those configuration options will be picked up and applied when the kernel is built.
@@ -5271,7 +5271,7 @@
5271 <listitem><para>You have checked out the 5271 <listitem><para>You have checked out the
5272 <filename>dora-toaster</filename> branch: 5272 <filename>dora-toaster</filename> branch:
5273 <literallayout class='monospaced'> 5273 <literallayout class='monospaced'>
5274 $ cd ~/poky 5274 $ cd poky
5275 $ git checkout -b dora-toaster origin/dora-toaster 5275 $ git checkout -b dora-toaster origin/dora-toaster
5276 </literallayout></para></listitem> 5276 </literallayout></para></listitem>
5277 <listitem><para>Be sure your build machine has 5277 <listitem><para>Be sure your build machine has
@@ -5595,7 +5595,7 @@
5595 <para> 5595 <para>
5596 Downloaded archives reside in the 5596 Downloaded archives reside in the
5597 <link linkend='build-directory'>Build Directory</link> in 5597 <link linkend='build-directory'>Build Directory</link> in
5598 <filename>/tmp</filename> and are cleared up when they are no longer in use. 5598 <filename>tmp</filename> and are cleared up when they are no longer in use.
5599 </para> 5599 </para>
5600 5600
5601 <para> 5601 <para>
diff --git a/documentation/dev-manual/dev-manual-model.xml b/documentation/dev-manual/dev-manual-model.xml
index cb09627d6e..929aee0527 100644
--- a/documentation/dev-manual/dev-manual-model.xml
+++ b/documentation/dev-manual/dev-manual-model.xml
@@ -1674,7 +1674,7 @@
1674 the following is the work directory for the <filename>acl</filename> recipe that 1674 the following is the work directory for the <filename>acl</filename> recipe that
1675 creates the <filename>acl</filename> package: 1675 creates the <filename>acl</filename> package:
1676 <literallayout class='monospaced'> 1676 <literallayout class='monospaced'>
1677 ~/poky/build/tmp/work/i586-poky-linux/acl/2.2.51-r3/ 1677 poky/build/tmp/work/i586-poky-linux/acl/2.2.51-r3/
1678 </literallayout> 1678 </literallayout>
1679 </para> 1679 </para>
1680 1680
@@ -1690,8 +1690,8 @@
1690 for the <filename>acl</filename> package that is being 1690 for the <filename>acl</filename> package that is being
1691 built for a MIPS-based device: 1691 built for a MIPS-based device:
1692 <literallayout class='monospaced'> 1692 <literallayout class='monospaced'>
1693 ~/poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2 1693 poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2
1694 ~/poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2/acl-2.2.51 1694 poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2/acl-2.2.51
1695 </literallayout> 1695 </literallayout>
1696 </para> 1696 </para>
1697 1697
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml
index 34326d10b6..cbb815a7f5 100644
--- a/documentation/dev-manual/dev-manual-newbie.xml
+++ b/documentation/dev-manual/dev-manual-newbie.xml
@@ -1459,8 +1459,8 @@
1459 <para>For help on using these scripts, simply provide the 1459 <para>For help on using these scripts, simply provide the
1460 <filename>-h</filename> argument as follows: 1460 <filename>-h</filename> argument as follows:
1461 <literallayout class='monospaced'> 1461 <literallayout class='monospaced'>
1462 $ ~/poky/scripts/create-pull-request -h 1462 $ poky/scripts/create-pull-request -h
1463 $ ~/poky/scripts/send-pull-request -h 1463 $ poky/scripts/send-pull-request -h
1464 </literallayout></para></listitem> 1464 </literallayout></para></listitem>
1465 </itemizedlist> 1465 </itemizedlist>
1466 </para> 1466 </para>