android源码下载备注

时间:2014-05-20 14:13:38   收藏:0   阅读:348

android源码下载的参考网上比较多,就不贴上来了,主要是备注下下载源码过程中需要注意的地方。

1. google官方下载步骤地址:

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

里面的步骤比较详细

注:先需要安装git-core和curl

$: sudo apt-get install git-core curl


2. 由于国内的原因(你懂的),需要在/etc/hosts文件里面添加

74.125.31.82 www.googlesource.com
74.125.31.82 android.googlesource.com
203.208.46.172 cache.pack.google.com
59.24.3.173 cache.pack.google.com


3. 在下载源码的文件夹里创建reposync.sh,内容:

#! /bin/bash
echo "=====start repo sync======"
repo sync
while [ $? = 1 ]; do
echo “======sync failed, re-sync again======”
sleep 3
repo sync
done

执行

$: ./reposync.sh



android源码下载备注,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!