blob: e4dd24b57d2af53cc3344063a13b1b8ac1343560 [file] [log] [blame]
Robert Ly35f2fda2013-01-29 16:27:05 -08001page.title=Downloading the Source
2@jd:body
3
4<!--
5 Copyright 2010 The Android Open Source Project
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18-->
19<div id="qv-wrapper">
20 <div id="qv">
21 <h2>In this document</h2>
22 <ol id="auto-toc">
23 </ol>
24 </div>
25</div>
26
27<p>
28 The Android source tree is located in a Git repository hosted by Google. This document
29 describes how to download the source tree for a specific Android code-line.
30</p>
31<h2 id="installing-repo">
32 Installing Repo
33</h2>
34<p>
35 Repo is a tool that makes it easier to work with Git in the context of Android. For more
36 information about Repo, see the <a href="developing.html">Developing</a> section.
37</p>
38<p>
39 To install Repo:
40</p>
41<ol>
42 <li>
43 <p>
44 Make sure you have a bin/ directory in your home directory and that it is included in
45 your path:
46 </p>
47 <pre>
48<code>$ mkdir ~/bin
49$ PATH=~/bin:$PATH
50</code>
51</pre>
52 </li>
53 <li>
54 <p>
55 Download the Repo tool and ensure that it is executable:
56 </p>
57 <pre>
Conley Owens8abcd422013-10-01 11:18:03 -070058$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo &gt; ~/bin/repo
Robert Ly35f2fda2013-01-29 16:27:05 -080059$ chmod a+x ~/bin/repo
60</pre>
61 </li>
62</ol>
63<p>
64 For version 1.17, the SHA-1 checksum for repo is ddd79b6d5a7807e911b524cb223bc3544b661c28
65</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -070066<p>
67 For version 1.19, the SHA-1 checksum for repo is 92cbad8c880f697b58ed83e348d06619f8098e6c
68</p>
Conley Owens8abcd422013-10-01 11:18:03 -070069<p>
70 For version 1.20, the SHA-1 checksum for repo is e197cb48ff4ddda4d11f23940d316e323b29671c
71</p>
Robert Ly35f2fda2013-01-29 16:27:05 -080072<h2 id="initializing-a-repo-client">
73 Initializing a Repo client
74</h2>
75<p>
76 After installing Repo, set up your client to access the Android source repository:
77</p>
78<ol>
79 <li>
80 <p>
81 Create an empty directory to hold your working files. If you're using MacOS, this has to
82 be on a case-sensitive filesystem. Give it any name you like:
83 </p>
84<pre>
85$ mkdir WORKING_DIRECTORY
86$ cd WORKING_DIRECTORY
87</pre>
88 </li>
89 <li>
90 <p>
91 Run <code>repo init</code> to bring down the latest version of Repo with all its most
92 recent bug fixes. You must specify a URL for the manifest, which specifies where the
93 various repositories included in the Android source will be placed within your working
94 directory.
95 </p>
96<pre>
97$ repo init -u https://android.googlesource.com/platform/manifest
98</pre>
99 <p>
100 To check out a branch other than "master", specify it with -b:
101 </p>
102<pre>
103$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
104</pre>
105 </li>
106 <li>
107 <p>
108 When prompted, configure Repo with your real name and email address. To use the Gerrit
109 code-review tool, you will need an email address that is connected with a <a href=
110 "https://www.google.com/accounts">registered Google account</a>. Make sure this is a live
111 address at which you can receive messages. The name that you provide here will show up in
112 attributions for your code submissions.
113 </p>
114 </li>
115</ol>
116<p>
117 A successful initialization will end with a message stating that Repo is initialized in your
118 working directory. Your client directory should now contain a <code>.repo</code> directory
119 where files such as the manifest will be kept.
120</p>
121<h2 id="getting-the-files">
122 Downloading the Android Source Tree
123</h2>
124<p>
125 To pull down the Android source tree to your working directory from the repositories as
126 specified in the default manifest, run
127</p>
128<pre>$ repo sync</pre>
129<p>
130 The Android source files will be located in your working directory under their project names.
131 The initial sync operation will take an hour or more to complete. For more about <code>repo
132 sync</code> and other Repo commands, see the <a href="developing.html">Developing</a> section.
133</p>
134<h2 id="using-authentication">
135 Using Authentication
136</h2>
137<p>
138 By default, access to the Android source code is anonymous. To protect the servers against
139 excessive usage, each IP address is associated with a quota.
140</p>
141<p>
142 When sharing an IP address with other users (e.g. when accessing the source repositories from
143 beyond a NAT firewall), the quotas can trigger even for regular usage patterns (e.g. if many
144 users sync new clients from the same IP address within a short period).
145</p>
146<p>
147 In that case, it is possible to use authenticated access, which then uses a separate quota
148 for each user, regardless of the IP address.
149</p>
150<p>
151 The first step is to create a password from <a href=
152 "https://android.googlesource.com/new-password">the password generator</a> and to save it in
153 <code>~/.netrc</code> according to the instructions on that page.
154</p>
155<p>
156 The second step is to force authenticated access, by using the following manifest URI:
157 <code>https://android.googlesource.com/a/platform/manifest</code>. Notice how the
158 <code>/a/</code> directory prefix triggers mandatory authentication. You can convert an
159 existing client to use mandatory authentication with the following command:
160</p>
161<pre>
162$ repo init -u https://android.googlesource.com/a/platform/manifest
163</pre>
164<h2 id="troubleshooting-network-issues">
165 Troubleshooting network issues
166</h2>
167<p>
168 When downloading from behind a proxy (which is common in some corporate environments), it
169 might be necessary to explicitly specify the proxy that is then used by repo:
170</p>
171<pre>
172$ export HTTP_PROXY=http://&lt;proxy_user_id&gt;:&lt;proxy_password&gt;@&lt;proxy_server&gt;:&lt;proxy_port&gt;
173$ export HTTPS_PROXY=http://&lt;proxy_user_id&gt;:&lt;proxy_password&gt;@&lt;proxy_server&gt;:&lt;proxy_port&gt;
174</pre>
175<p>
176 More rarely, Linux clients experience connectivity issues, getting stuck in the middle of
177 downloads (typically during "Receiving objects"). It has been reported that tweaking the
178 settings of the TCP/IP stack and using non-parallel commands can improve the situation. You
179 need root access to modify the TCP setting:
180</p>
181<pre>
182$ sudo sysctl -w net.ipv4.tcp_window_scaling=0
183$ repo sync -j1
184</pre>
185<h2 id="using-a-local-mirror">
186 Using a local mirror
187</h2>
188<p>
189 When using several clients, especially in situations where bandwidth is scarce, it is better
190 to create a local mirror of the entire server content, and to sync clients from that mirror
191 (which requires no network access). The download for a full mirror is smaller than the
192 download of two clients, while containing more information.
193</p>
194<p>
195 These instructions assume that the mirror is created in <code>/usr/local/aosp/mirror</code>.
196 The first step is to create and sync the mirror itself, which uses close to 13GB of network
197 bandwidth and a similar amount of disk space. Notice the <code>--mirror</code> flag, which
198 can only be specified when creating a new client:
199</p>
200<pre>
201$ mkdir -p /usr/local/aosp/mirror
202$ cd /usr/local/aosp/mirror
203$ repo init -u https://android.googlesource.com/mirror/manifest --mirror
204$ repo sync
205</pre>
206<p>
207 Once the mirror is synced, new clients can be created from it. Note that it's important to
208 specify an absolute path:
209</p>
210<pre>$ mkdir -p /usr/local/aosp/master
211$ cd /usr/local/aosp/master
212$ repo init -u /usr/local/aosp/mirror/platform/manifest.git
213$ repo sync
214</pre>
215<p>
216 Finally, to sync a client against the server, the mirror needs to be synced against the
217 server, then the client against the mirror:
218</p>
219<pre>
220$ cd /usr/local/aosp/mirror
221$ repo sync
222$ cd /usr/local/aosp/master
223$ repo sync
224</pre>
225<p>
226 It's possible to store the mirror on a LAN server and to access it over NFS, SSH or Git. It's
227 also possible to store it on a removable drive and to pass that drive around between users or
228 between machines.
229</p>
230<h2 id="verifying-git-tags">
231 Verifying Git Tags
232</h2>
233<p>
234 Load the following public key into your GnuPG key database. The key is used to sign annotated
235 tags that represent releases.
236</p>
237<pre>
238$ gpg --import
239</pre>
240<p>
241 Copy and paste the key(s) below, then enter EOF (Ctrl-D) to end the input and process the
242 keys.
243</p>
244<pre>
245-----BEGIN PGP PUBLIC KEY BLOCK-----
246Version: GnuPG v1.4.2.2 (GNU/Linux)
247
248mQGiBEnnWD4RBACt9/h4v9xnnGDou13y3dvOx6/t43LPPIxeJ8eX9WB+8LLuROSV
249lFhpHawsVAcFlmi7f7jdSRF+OvtZL9ShPKdLfwBJMNkU66/TZmPewS4m782ndtw7
2508tR1cXb197Ob8kOfQB3A9yk2XZ4ei4ZC3i6wVdqHLRxABdncwu5hOF9KXwCgkxMD
251u4PVgChaAJzTYJ1EG+UYBIUEAJmfearb0qRAN7dEoff0FeXsEaUA6U90sEoVks0Z
252wNj96SA8BL+a1OoEUUfpMhiHyLuQSftxisJxTh+2QclzDviDyaTrkANjdYY7p2cq
253/HMdOY7LJlHaqtXmZxXjjtw5Uc2QG8UY8aziU3IE9nTjSwCXeJnuyvoizl9/I1S5
254jU5SA/9WwIps4SC84ielIXiGWEqq6i6/sk4I9q1YemZF2XVVKnmI1F4iCMtNKsR4
255MGSa1gA8s4iQbsKNWPgp7M3a51JCVCu6l/8zTpA+uUGapw4tWCp4o0dpIvDPBEa9
256b/aF/ygcR8mh5hgUfpF9IpXdknOsbKCvM9lSSfRciETykZc4wrRCVGhlIEFuZHJv
257aWQgT3BlbiBTb3VyY2UgUHJvamVjdCA8aW5pdGlhbC1jb250cmlidXRpb25AYW5k
258cm9pZC5jb20+iGAEExECACAFAknnWD4CGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIX
259gAAKCRDorT+BmrEOeNr+AJ42Xy6tEW7r3KzrJxnRX8mij9z8tgCdFfQYiHpYngkI
2602t09Ed+9Bm4gmEO5Ag0ESedYRBAIAKVW1JcMBWvV/0Bo9WiByJ9WJ5swMN36/vAl
261QN4mWRhfzDOk/Rosdb0csAO/l8Kz0gKQPOfObtyYjvI8JMC3rmi+LIvSUT9806Up
262hisyEmmHv6U8gUb/xHLIanXGxwhYzjgeuAXVCsv+EvoPIHbY4L/KvP5x+oCJIDbk
263C2b1TvVk9PryzmE4BPIQL/NtgR1oLWm/uWR9zRUFtBnE411aMAN3qnAHBBMZzKMX
264LWBGWE0znfRrnczI5p49i2YZJAjyX1P2WzmScK49CV82dzLo71MnrF6fj+Udtb5+
265OgTg7Cow+8PRaTkJEW5Y2JIZpnRUq0CYxAmHYX79EMKHDSThf/8AAwUIAJPWsB/M
266pK+KMs/s3r6nJrnYLTfdZhtmQXimpoDMJg1zxmL8UfNUKiQZ6esoAWtDgpqt7Y7s
267KZ8laHRARonte394hidZzM5nb6hQvpPjt2OlPRsyqVxw4c/KsjADtAuKW9/d8phb
268N8bTyOJo856qg4oOEzKG9eeF7oaZTYBy33BTL0408sEBxiMior6b8LrZrAhkqDjA
269vUXRwm/fFKgpsOysxC6xi553CxBUCH2omNV6Ka1LNMwzSp9ILz8jEGqmUtkBszwo
270G1S8fXgE0Lq3cdDM/GJ4QXP/p6LiwNF99faDMTV3+2SAOGvytOX6KjKVzKOSsfJQ
271hN0DlsIw8hqJc0WISQQYEQIACQUCSedYRAIbDAAKCRDorT+BmrEOeCUOAJ9qmR0l
272EXzeoxcdoafxqf6gZlJZlACgkWF7wi2YLW3Oa+jv2QSTlrx4KLM=
273=Wi5D
274-----END PGP PUBLIC KEY BLOCK-----
275</pre>
276<p>
277 After importing the keys, you can verify any tag with
278</p>
279<pre>
280$ git tag -v TAG_NAME
281</pre>
282<p>
283 If you haven't <a href="initializing.html#ccache">set up ccache</a> yet, now would be a good
284 time to do it.
Conley Owens8abcd422013-10-01 11:18:03 -0700285</p>