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
??
时间: 2024-10-24 14:22:24