From 133224fb3189f0a1d1c32b83a04b923d53c4e397 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 6 Apr 2016 12:32:22 -0700 Subject: documentation: Fixed references using the DISTRO_NAME variable With the introduction of a DISTRO_NAME_NO_CAP variable, the occurrences of the DISTRO_NAME variable had to be checked to see if they really should be using the "NO_CAP" variable instead. Output and actual branch names are case-sensitive. (From yocto-docs rev: 711a3255538298dd3c4bd2af8ad13bc2d159c872) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/yocto-project-qs/yocto-project-qs.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'documentation/yocto-project-qs') diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml index 63e5cfb475..e769121930 100644 --- a/documentation/yocto-project-qs/yocto-project-qs.xml +++ b/documentation/yocto-project-qs/yocto-project-qs.xml @@ -360,7 +360,7 @@ remote: Total 226790 (delta 165212), reused 225887 (delta 164327) Receiving objects: 100% (226790/226790), 100.98 MiB | 263 KiB/s, done. Resolving deltas: 100% (165212/165212), done. - $ git checkout &DISTRO_NAME; + $ git checkout &DISTRO_NAME_NO_CAP; You can also get the Yocto Project Files by downloading Yocto Project releases from the @@ -464,12 +464,12 @@ Release: $ cd ~/poky - $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME; + $ git checkout -b &DISTRO_NAME_NO_CAP; origin/&DISTRO_NAME_NO_CAP; Git's checkout command checks out the current Yocto Project release into a local branch whose name matches the release (i.e. - &DISTRO_NAME;). + &DISTRO_NAME_NO_CAP;). The local branch tracks the upstream branch of the same name. Creating your own branch based on the released @@ -643,8 +643,8 @@ (meta-intel and poky) are using the same releases. Consequently, you need to checkout out the - "&DISTRO_NAME_NO_CAP;" release after cloning - meta-intel: + "&DISTRO_NAME_NO_CAP;" release after + cloning meta-intel: $ cd $HOME/poky/meta-intel $ git checkout &DISTRO_NAME_NO_CAP; -- cgit v1.2.3-54-g00ecf