diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-02-02 14:18:55 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-08 12:07:49 -0800 |
commit | 9cfbefcc3d25a00054166aeaac49b873a2aa5cd0 (patch) | |
tree | 659a658ccac2918e05f5fe5dd6971a44e01f57f8 /documentation/dev-manual/dev-manual-newbie.xml | |
parent | 11c290c3cff74b522c450915df46a9c7b449fda2 (diff) | |
download | poky-9cfbefcc3d25a00054166aeaac49b873a2aa5cd0.tar.gz |
documentation/dev-manual: Edits to clarify YP files
These edits help explain the differences between local YP files
created through a tarball extraction vs cloning a Git repository.
(From yocto-docs rev: ed368800c3e9ece71d27d6d690f0ddc264a4c2da)
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/dev-manual-newbie.xml')
-rw-r--r-- | documentation/dev-manual/dev-manual-newbie.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml index 95ef877856..2ff66a4b06 100644 --- a/documentation/dev-manual/dev-manual-newbie.xml +++ b/documentation/dev-manual/dev-manual-newbie.xml | |||
@@ -205,8 +205,8 @@ | |||
205 | by the maintainer of the source code. | 205 | by the maintainer of the source code. |
206 | For example, in order for a developer to work on a particular piece of code, they need to | 206 | For example, in order for a developer to work on a particular piece of code, they need to |
207 | first get a copy of it from an "upstream" source.</para></listitem> | 207 | first get a copy of it from an "upstream" source.</para></listitem> |
208 | <listitem><para><emphasis>Yocto Project Files:</emphasis> | 208 | <listitem><para id='yocto-project-files'><emphasis>Yocto Project Files:</emphasis> |
209 | This term refers to the directory structure created as a result of downloading | 209 | This term refers to the directory structure created as a result of either downloading |
210 | and unpacking a Yocto Project release tarball or setting up a Git repository | 210 | and unpacking a Yocto Project release tarball or setting up a Git repository |
211 | by cloning <filename>git://git.yoctoproject.org/poky</filename>. | 211 | by cloning <filename>git://git.yoctoproject.org/poky</filename>. |
212 | Sometimes the term "the Yocto Project Files structure" is used as well.</para> | 212 | Sometimes the term "the Yocto Project Files structure" is used as well.</para> |
@@ -220,6 +220,16 @@ | |||
220 | results in a Yocto Project file structure whose Yocto Project source directory is named | 220 | results in a Yocto Project file structure whose Yocto Project source directory is named |
221 | <filename>poky-edison-6.0</filename>. | 221 | <filename>poky-edison-6.0</filename>. |
222 | If you create a Git repository, then you can name the repository anything you like.</para> | 222 | If you create a Git repository, then you can name the repository anything you like.</para> |
223 | <para>It is important to understand the differences between Yocto Project Files created | ||
224 | by unpacking a release tarball as compared to cloning | ||
225 | <filename>git://git.yoctoproject.org/poky</filename>. | ||
226 | When you unpack a tarball, you have an exact copy of the files based on the time of | ||
227 | release - a fixed release point. | ||
228 | Any changes you make to your local Yocto Project files are on top of the release. | ||
229 | On the otherhand, when you clone the Yocto Project Git repository, you have an | ||
230 | active development repository. | ||
231 | In this case, any local changes you make to the Yocto Project can be later applied to active | ||
232 | development branches of the upstream Yocto Project Git repository.</para> | ||
223 | <para>You can find instruction on how to set up the Yocto Project files on your | 233 | <para>You can find instruction on how to set up the Yocto Project files on your |
224 | host development system by reading | 234 | host development system by reading |
225 | the | 235 | the |