summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 @@
From inside the repository you can see the branch names and the tag names used
in the Git repository using either of the following two commands:
<literallayout class='monospaced'>
- $ cd poky
+ $ cd poky/poky-extras
$ git branch -a
$ git tag -l
</literallayout>
- This example uses the Yocto Project 1.1.1 Release code named "edison",
- which maps to the <filename>edison</filename> branch in the repository.
- The following commands create and checkout the local <filename>edison</filename>
+ This example uses the Yocto Project &DISTRO; Release code named "&DISTRO_NAME;",
+ which maps to the <filename>&DISTRO_NAME;</filename> branch in the repository.
+ The following commands create and checkout the local <filename>&DISTRO_NAME;</filename>
branch:
<literallayout class='monospaced'>
- $ git checkout -b edison origin/edison
- Branch edison set up to track remote branch edison from origin.
- Switched to a new branch 'edison'
+ $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME;
+ Branch &DISTRO_NAME; set up to track remote branch &DISTRO_NAME; from origin.
+ Switched to a new branch '&DISTRO_NAME;'
</literallayout>
</para>
</section>