CM的资料整理

有关CM的一些资料:

CM官方有包含Source Code的Device 列表,另外有一些有单独建立github,比如defy,x10等。

http://wiki.cyanogenmod.com/wiki/Category:Build_from_Source


CM X10 source code:

https://github.com/CyanogenMod/android_device_semc_es209ra


CM支持的设备的stable版本:

http://download.cyanogenmod.com/?type=stable


Download CM source code时会遇到下面的错误:

from git://android.git.kernel.org/tools/repo.git
android.git.kernel.org[0: 199.6.1.173]: errno=Connection refused
android.git.kernel.org[0: 130.239.17.13]: errno=Connection refused
android.git.kernel.org[0: 149.20.4.77]: errno=Connection refused
android.git.kernel.org[0: 2001:500:60:10:1972:112:1:0]: errno=Network is unreachable
android.git.kernel.org[0: 2001:6b0:e:4017:1972:112:1:0]: errno=Network is unreachable
android.git.kernel.org[0: 2001:4f8:1:10:1972:112:1:0]: errno=Network is unreachable
android.git.kernel.org[0: 2001:4f8:8:10:1972:112:1:0]: errno=Network is unreachable
fatal: unable to connect a socket (Network is unreachable)

可以考虑按下面的方法修改:

REPO_URL='http://android.git.kernel.org/tools/repo.git'

改为:
REPO_URL='git://codeaurora.org/tools/repo.git'

因为 android.git.kernel.org 被封了

你可能感兴趣的:(socket,git,url,Build,NetWork)