From bf46fa7d50929f379dcd3f3af91fc2e382d29eb9 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 20 Jun 2012 07:07:53 -0700 Subject: 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 Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-kernel-appendix.xml | 14 +++++++------- 1 file 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: - $ cd poky + $ cd poky/poky-extras $ git branch -a $ git tag -l - This example uses the Yocto Project 1.1.1 Release code named "edison", - which maps to the edison branch in the repository. - The following commands create and checkout the local edison + This example uses the Yocto Project &DISTRO; Release code named "&DISTRO_NAME;", + which maps to the &DISTRO_NAME; branch in the repository. + The following commands create and checkout the local &DISTRO_NAME; branch: - $ 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;' -- cgit v1.2.3-54-g00ecf