From f38b88a66c5a8b2151955c35fbacf79a11d27807 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Fri, 28 Sep 2012 06:48:11 -0700 Subject: [PATCH] documentation: dev-manual - changed 3.2 to 3.4 for kernel support (From yocto-docs rev: 6305dc7b4cbeae7f5725a2c2bc003b361460cfdf) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-start.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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.