summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-06-26 13:49:34 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-29 15:54:26 +0100
commit6b06a4fa1b99768516ac5bee9e70922af811d285 (patch)
tree5a0b11416a191e5d2409e2eba5d257a5d1ed3e69
parent2dcbb48df9a135e29fa38e3321cd82ac7b294c2c (diff)
downloadpoky-6b06a4fa1b99768516ac5bee9e70922af811d285.tar.gz
documentation/dev-manual/dev-manual-kernel-appendix.xml: Added branch step
The example did not specify to switch to the "denzil" branch after establishing the local repo of poky-extras. The example will not work without this step. (From yocto-docs rev: 69b99a77f1f8247c217e77af89ecec3982adc264) 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-kernel-appendix.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml
index db6629da2f..da74721c63 100644
--- a/documentation/dev-manual/dev-manual-kernel-appendix.xml
+++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml
@@ -178,6 +178,21 @@
178 <filename>poky-extras</filename> Git Repository</link>" 178 <filename>poky-extras</filename> Git Repository</link>"
179 for information on how to get the <filename>poky-extras</filename> repository. 179 for information on how to get the <filename>poky-extras</filename> repository.
180 </para> 180 </para>
181
182 <para>
183 Because this example uses the Yocto Project &DISTRO; Release code
184 named "&DISTRO_NAME;", which maps to the <filename>&DISTRO_NAME;</filename>
185 branch in the repository, you need to be sure you are using that
186 branch for <filename>poky-extra</filename>.
187 The following commands create and checkout the local
188 branch you are using for the <filename>&DISTRO_NAME;</filename>
189 branch:
190 <literallayout class='monospaced'>
191 $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME;
192 Branch &DISTRO_NAME; set up to track remote branch &DISTRO_NAME; from origin.
193 Switched to a new branch '&DISTRO_NAME;'
194 </literallayout>
195 </para>
181 </section> 196 </section>
182 197
183 <section id='setting-up-the-bare-clone-and-its-copy'> 198 <section id='setting-up-the-bare-clone-and-its-copy'>