码迷,mamicode.com
首页 > 移动开发 > 详细

国内android aosp源代码下载方法

时间:2015-11-24 12:31:54      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

 

https://mirrors.tuna.tsinghua.edu.cn/help/#AOSP

1、下载repo工具,修改权限并添加到环境变量中。

$git clone git://aosp.tuna.tsinghua.edu.cn/android/git-repo.git/

$mkdir -p ~/bin

$cp git-repo/repo ~/bin/

$chmod a+x ~/bin/repo

$vim ~/bin/repo

将repo文件中的 REPO_URL = ‘https://gerrit.googlesource.com/git-repo‘修改为REPO_URL = ‘git://aosp.tuna.tsinghua.edu.cn/android/git-repo‘

$export PATH=~/bin/:$PATH

2、初始化git,如果需要按branch下载,加上-b branch_name即可

$repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest

3、repo sync 使用以下脚本同步代码

export PATH=~/bin:$PATH

repo sync -j4

if [  "$?" != "0" ]; then  

 sleep 30

 repo sync -j4

fi

附1:对于已从Google下载的源码,可以通过修改代码目录中的 .repo/manifest.xml 文件,https://android.googlesource.com改从清华的源同步git://aosp.tuna.tsinghua.edu.cn/android/。

 

国内android aosp源代码下载方法

标签:

原文地址:http://www.cnblogs.com/thjfk/p/4991064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!