Ubuntu12.04下载Android系统源代码

前端之家收集整理的这篇文章主要介绍了Ubuntu12.04下载Android系统源代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

【参考链接

http://source.android.com/source/index.html

1.安装git-corecurl

apt-get update

apt-get install git-core curl

2.下载repo

mkdir ~/bin

PATH=~/bin:$PATH

curlhttps://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

chmod a+x ~/bin/repo


repo脚本下载以后,默认情况是从google的源下载源代码,可以改成从清华的源,编辑 ~/bin/repo,把

REPO_URL = 'https://gerrit.googlesource.com/git-repo'

换成

REPO_URL = 'https://gerrit-google.tuna.tsinghua.edu.cn/git-repo'

3.建立目录,配置git信息

mkdir android-2.3.3_r1

cd android-2.3.3_r1

git config --global user.name"shadowfaxghh"

git config --global user.email"shadowfaxghh@gmail.com"


初始化仓库

repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest-b android-2.3.3_r1

如果上面没有更改过下载源,则使用如下地址

repo init -uhttps://android.googlesource.com/platform/manifest -b android-2.3.3_r1


4.下载代码

repo sync


原文链接:https://www.f2er.com/ubuntu/352136.html

猜你在找的Ubuntu相关文章