diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml
index 34058f9be3..f389f68af7 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -131,18 +131,18 @@
For simplicity, it is recommended that you create these structures outside of the
source directory (usually poky).
As an example, the following transcript shows how to create the bare clone
- of the linux-yocto-3.2 kernel and then create a copy of
+ of the linux-yocto-3.4 kernel and then create a copy of
that clone.
When you have a local Yocto Project kernel Git repository, you can
reference that repository rather than the upstream Git repository as
part of the clone command.
Doing so can speed up the process.
In the following example, the bare clone is named
- linux-yocto-3.2.git, while the
- copy is named my-linux-yocto-3.2-work:
+ linux-yocto-3.4.git, while the
+ copy is named my-linux-yocto-3.4-work:
- $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.2 linux-yocto-3.2.git
- Initialized empty Git repository in /home/scottrif/linux-yocto-3.2.git/
+ $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.4 linux-yocto-3.4.git
+ Initialized empty Git repository in /home/scottrif/linux-yocto-3.4.git/
remote: Counting objects: 2468027, done.
remote: Compressing objects: 100% (392255/392255), done.
remote: Total 2468027 (delta 2071693), reused 2448773 (delta 2052498)
@@ -151,8 +151,8 @@
Now create a clone of the bare clone just created:
- $ git clone linux-yocto-3.2.git my-linux-yocto-3.2-work
- Initialized empty Git repository in /home/scottrif/my-linux-yocto-3.2-work/.git/
+ $ git clone linux-yocto-3.4.git my-linux-yocto-3.4-work
+ Initialized empty Git repository in /home/scottrif/my-linux-yocto-3.4-work/.git/
Checking out files: 100% (37619/37619), done.