repo下载android-4.0.1_r1 源码
1) 下载repo
由于google官网访问不畅,使用中科大镜像
mkdir ~/android
PATH=~/android:$PATH
curl https://storage-googleapis.lug.ustc.edu.cn/git-repo-downloads/repo > ~/android/repo
chmod a+x ~/android/repo
2) 使用特定版本初始化源码目录
mkdir ~/android/src
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-4.0.1_r1
3) 下载源码
cd ~/android/src
repo sync
tips
repo是封装的git,所以童鞋们最好了解下git,以便于对repo有一个更好的理解