diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml
index 3606fe89a0..e8b92d7f82 100644
--- a/documentation/yocto-project-qs/yocto-project-qs.xml
+++ b/documentation/yocto-project-qs/yocto-project-qs.xml
@@ -414,9 +414,9 @@
- $ wget &YOCTO_POKY_DL_URL;
- $ tar xjf &YOCTO_POKY;.tar.bz2
- $ cd &YOCTO_POKY;
+ $ git clone &YOCTO_GIT_URL;/git/poky
+ $ cd poky
+ $ git checkout -b &DISTRO_NAME; origin/&DISTRO_NAME;
$ source &OE_INIT_FILE;
@@ -433,30 +433,31 @@
- In the previous example, the first command retrieves the Yocto Project
- release tarball from the source repositories using the
- wget command.
- Alternatively, you can go to the
- Yocto Project website's
- "Downloads" page to retrieve the tarball.
- The second command extracts the files from the tarball and places
- them into a directory named &YOCTO_POKY; in the current
- directory.
- The third and fourth commands change the working directory to the
- Source Directory
- and run the Yocto Project
+ In the previous example, the first command uses
+ Git to create
+ a local repository named poky that is a
+ clone of the upstream Yocto Project
+ poky repository.
+ The third command checks out a local branch and
+ names it &DISTRO_NAME;.
+ The local branch tracks the upstream branch of the same name.
+ Creating your own branch based on the released branch ensures
+ you are using the latest files for that release.
+
+ The final command runs the Yocto Project
&OE_INIT_FILE;
environment setup script.
- Running this script defines OpenEmbedded build environment settings needed to
- complete the build.
+ Running this script defines OpenEmbedded build environment
+ settings needed to complete the build.
The script also creates the
Build Directory,
- which is build in this case and is located in the
- Source Directory.
+ which is build in this case and is located
+ in the
+ Source Directory.
After the script runs, your current working directory is set
to the Build Directory.
- Later, when the build completes, the Build Directory contains all the files
- created during the build.
+ Later, when the build completes, the Build Directory contains
+ all the files created during the build.
For information on running a memory-resident BitBake, see
the