summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-10-01 12:32:20 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-02 17:41:35 +0100
commit13d147178a8ebb48f0ab6444c19cea5e67be0943 (patch)
tree7d171bdc12613574a06eb06c9f6b4ba52950ca81 /documentation/dev-manual
parente6ed2118fcde44d9a018c7df0f73ffa839f64a51 (diff)
downloadpoky-13d147178a8ebb48f0ab6444c19cea5e67be0943.tar.gz
documentation: dev-manual - Updated Git repo example
The new branch is named distro plus poky revision (e.g. danny-8.0). I had just the distro in there. (From yocto-docs rev: 9490849f7f6dc815d1b676b15b3f38f671a49be8) 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-bsp-appendix.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-bsp-appendix.xml b/documentation/dev-manual/dev-manual-bsp-appendix.xml
index 0962768713..1bb655666a 100644
--- a/documentation/dev-manual/dev-manual-bsp-appendix.xml
+++ b/documentation/dev-manual/dev-manual-bsp-appendix.xml
@@ -94,14 +94,14 @@
94 $ cd ~/poky 94 $ cd ~/poky
95 $ git fetch --tags 95 $ git fetch --tags
96 $ git checkout -b &DISTRO_NAME;-&POKYVERSION; origin/&DISTRO_NAME; 96 $ git checkout -b &DISTRO_NAME;-&POKYVERSION; origin/&DISTRO_NAME;
97 Switched to a new branch '&DISTRO_NAME;' 97 Switched to a new branch '&DISTRO_NAME;-&POKYVERSION;'
98 </literallayout> 98 </literallayout>
99 The <filename>git fetch --tags</filename> is somewhat redundant since you just set 99 The <filename>git fetch --tags</filename> is somewhat redundant since you just set
100 up the repository and should have all the tags. 100 up the repository and should have all the tags.
101 The <filename>fetch</filename> command makes sure all the tags are available in your 101 The <filename>fetch</filename> command makes sure all the tags are available in your
102 local repository. 102 local repository.
103 The Git <filename>checkout</filename> command with the <filename>-b</filename> option 103 The Git <filename>checkout</filename> command with the <filename>-b</filename> option
104 creates a local branch for you named <filename>&DISTRO_NAME;</filename>. 104 creates a local branch for you named <filename>&DISTRO_NAME;-&POKYVERSION;</filename>.
105 Your local branch begins in the same state as the Yocto Project &DISTRO; released tarball 105 Your local branch begins in the same state as the Yocto Project &DISTRO; released tarball
106 marked with the <filename>&DISTRO_NAME;-&POKYVERSION;</filename> tag in the source repositories. 106 marked with the <filename>&DISTRO_NAME;-&POKYVERSION;</filename> tag in the source repositories.
107 </para> 107 </para>