summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-start.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-01-23 11:32:12 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-30 16:06:01 +0000
commit1ad79777424cc9e155a06cdabf19a4c9b3aa66c7 (patch)
tree543a63e4d2582c425ca0cca9d56600bec26bc992 /documentation/dev-manual/dev-manual-start.xml
parentfe40f117c1154ee148e4ddcc512da031e43fbc0d (diff)
downloadpoky-1ad79777424cc9e155a06cdabf19a4c9b3aa66c7.tar.gz
documentation/dev-manual: Changes to repo names and kernel example.
To make the kernel example more easily understood, Joshua Lock suggested that the names used for the bare clone of the kernel git repo and the copy of the bare clone be more different. So I have changed the example such that the bare clone repo is named linux-yocto-3.0-1.1.x.git and the copy of the bare clone (or working repo) is named my-linux-yocto-3.0-1.1.x-work. Note that this also implies the use of the linux-yocto_3.0-1.1.x kernel and not the linux-yocto_3.0 kernel. All the changes made here should take care of the example. I did have to introduce a new figure that showed the kernel repos based on the new names used in the example. Also, I had to delete the other from this branch. The examples are now diverging according to (master) work and 1.1.x work. Reported-by: Joshua Lock <joshua.lock@intel.com> (From yocto-docs rev: f4fdef6078fccfc2c72b6e0ad1dfae1f1ecb2aa6) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-start.xml')
-rw-r--r--documentation/dev-manual/dev-manual-start.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml
index 5cdc34be9c..d9f042bc61 100644
--- a/documentation/dev-manual/dev-manual-start.xml
+++ b/documentation/dev-manual/dev-manual-start.xml
@@ -117,18 +117,18 @@
117 For simplicity, it is recommended that you create these structures outside of the 117 For simplicity, it is recommended that you create these structures outside of the
118 Yocto Project files' Git repository.</para> 118 Yocto Project files' Git repository.</para>
119 <para>As an example, the following transcript shows how to create the bare clone 119 <para>As an example, the following transcript shows how to create the bare clone
120 of the <filename>linux-yocto-3.0</filename> kernel and then create a copy of 120 of the <filename>linux-yocto-3.0-1.1.x</filename> kernel and then create a copy of
121 that clone. 121 that clone.
122 <note>When you have a local Linux Yocto kernel Git repository, you can 122 <note>When you have a local Linux Yocto kernel Git repository, you can
123 reference that repository rather than the upstream Git repository as 123 reference that repository rather than the upstream Git repository as
124 part of the <filename>clone</filename> command. 124 part of the <filename>clone</filename> command.
125 Doing so can speed up the process.</note> 125 Doing so can speed up the process.</note>
126 In the following example, the bare clone is named 126 In the following example, the bare clone is named
127 <filename>linux-yocto-3.0.git</filename>, while the 127 <filename>linux-yocto-3.0-1.1.x.git</filename>, while the
128 copy is named <filename>linux-yocto-3.0</filename>: 128 copy is named <filename>my-linux-yocto-3.0-1.1.x-work</filename>:
129 <literallayout class='monospaced'> 129 <literallayout class='monospaced'>
130 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0 linux-yocto-3.0.git 130 $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.0-1.1.x linux-yocto-3.0-1.1.x.git
131 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0.git/ 131 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0-1.1.x.git/
132 remote: Counting objects: 2259181, done. 132 remote: Counting objects: 2259181, done.
133 remote: Compressing objects: 100% (373259/373259), done. 133 remote: Compressing objects: 100% (373259/373259), done.
134 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300) 134 remote: Total 2259181 (delta 1892638), reused 2231556 (delta 1865300)
@@ -137,8 +137,8 @@
137 </literallayout></para> 137 </literallayout></para>
138 <para>Now create a clone of the bare clone just created: 138 <para>Now create a clone of the bare clone just created:
139 <literallayout class='monospaced'> 139 <literallayout class='monospaced'>
140 $ git clone linux-yocto-3.0.git linux-yocto-3.0 140 $ git clone linux-yocto-3.0-1.1.x.git my-linux-yocto-3.0-1.1.x-work
141 Initialized empty Git repository in /home/scottrif/linux-yocto-3.0/.git/ 141 Initialized empty Git repository in /home/scottrif/my-linux-yocto-3.0-1.1.x/.git/
142 Checking out files: 100% (36898/36898), done. 142 Checking out files: 100% (36898/36898), done.
143 </literallayout></para></listitem> 143 </literallayout></para></listitem>
144 <listitem id='poky-extras-repo'><para><emphasis> 144 <listitem id='poky-extras-repo'><para><emphasis>