安装下载环境为ubuntu 11.04
<1>安装git
$sudo apt-get install git-core
<2>安装curl
$sudo apt-get install curl
<3>安装repo
$ mkdir ~/bin
$ PATH=~/bin:$PATH
$ curl > ~/bin/repo
$ chmod a+x ~/bin/repo
<4>初始化repo client
$ mkdir android2.3.7
$ cd android2.3.7
$ repo init -u http://android.googlesource.com/platform/manifest.git -b android-2.3.7_r1
其中-b为指定下载的版本,按照提示输入用户名和邮箱。
<5>下载源码
$ repo sync
开始同步源码,开始下载源码,下载的时间依你的网速而定。
下载时有时会出现错误,只要重新repo sync即可
阅读(5538) | 评论(0) | 转发(0) |