summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-kernel-appendix.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-06-20 07:07:53 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-29 14:59:27 +0100
commitbf46fa7d50929f379dcd3f3af91fc2e382d29eb9 (patch)
tree02d8cba3537dc52e6fc2bbb0e95874effa7dc2cd /documentation/dev-manual/dev-manual-kernel-appendix.xml
parent35d25f853cbc3db1eb5c6b28663d933e907be8be (diff)
downloadpoky-bf46fa7d50929f379dcd3f3af91fc2e382d29eb9.tar.gz
documentation/dev-manual/dev-manual-kernel-appendix.xml: Fix example
The exmample that sets up poky-extras was not putting the user in the proper directory. I updated the cd command to place them in poky-extras before checking out the branch. (From yocto-docs rev: 4860ddacc1fc593e0c5b48b399638ab1ecdb1f94) 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-kernel-appendix.xml')
-rw-r--r--documentation/dev-manual/dev-manual-kernel-appendix.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml
index 80def3afdb..c8f37f1fb3 100644
--- a/documentation/dev-manual/dev-manual-kernel-appendix.xml
+++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml
@@ -180,18 +180,18 @@
180 From inside the repository you can see the branch names and the tag names used 180 From inside the repository you can see the branch names and the tag names used
181 in the Git repository using either of the following two commands: 181 in the Git repository using either of the following two commands:
182 <literallayout class='monospaced'> 182 <literallayout class='monospaced'>
183 $ cd poky 183 $ cd poky/poky-extras
184 $ git branch -a 184 $ git branch -a
185 $ git tag -l 185 $ git tag -l
186 </literallayout> 186 </literallayout>
187 This example uses the Yocto Project 1.1.1 Release code named "edison", 187 This example uses the Yocto Project &DISTRO; Release code named "&DISTRO_NAME;",
188 which maps to the <filename>edison</filename> branch in the repository. 188 which maps to the <filename>&DISTRO_NAME;</filename> branch in the repository.
189 The following commands create and checkout the local <filename>edison</filename> 189 The following commands create and checkout the local <filename>&DISTRO_NAME;</filename>
190 branch: 190 branch:
191 <literallayout class='monospaced'> 191 <literallayout class='monospaced'>
192 $ git checkout -b edison origin/edison 192 $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME;
193 Branch edison set up to track remote branch edison from origin. 193 Branch &DISTRO_NAME; set up to track remote branch &DISTRO_NAME; from origin.
194 Switched to a new branch 'edison' 194 Switched to a new branch '&DISTRO_NAME;'
195 </literallayout> 195 </literallayout>
196 </para> 196 </para>
197 </section> 197 </section>