diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml
index 822731af90..52be498b44 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -109,10 +109,15 @@
If you are going to be making modifications to a supported Linux Yocto kernel you
need to get set up so that you can edit local copies of the source.
This setup involves creating a bare clone of the Linux Yocto kernel and then cloning
- that repository.
+ that repository.
+ You can create the bare clone and the copy of the bare clone anywhere you like.
+ For simplicity, it is recommended that you create these structures outside of the
+ Yocto Project files Git repository.
As an example, the following transcript shows how to create the bare clone
- of the linux-yocto-2.6.37 kernel and then create a clone of
- that repository:
+ of the linux-yocto-2.6.37 kernel and then create a copy of
+ that clone.
+ The bare clone is named linux-yocto-2.6.37.git, while the
+ copy is named linux-yocto-2.6.37:
$ git clone --bare git://git.yoctoproject.org/linux-yocto-2.6.37 linux-yocto-2.6.37.git
Initialized empty Git repository in /home/scottrif/poky/linux-yocto-2.6.37.git/
@@ -127,14 +132,23 @@
$ git clone linux-yocto-2.6.37.git linux-yocto-2.6.37
Initialized empty Git repository in /home/scottrif/poky/linux-yocto-2.6.37/.git/
Checking out files: 100% (35188/35188), done.
-
- The final repository you need for kernel development is the
- meta-kernel-dev Git repository.
- This repository allows you to configure the build system so that you point to your
- local area for the Linux Yocto kernel source files.
- Pointing to these files locally is much more efficient than requiring a download of the
- source files from upstream each time you build the kernel image:
+
+