Chinaunix首页 | 论坛 | 博客
  • 博客访问: 235778
  • 博文数量: 25
  • 博客积分: 643
  • 博客等级: 上士
  • 技术积分: 359
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-03 13:18
文章分类

全部博文(25)

文章存档

2017年(1)

2013年(1)

2012年(7)

2011年(16)

分类: LINUX

2011-09-21 09:25:43

    最近需要下载TI OMAP4系列CPU的android源码,但是据说android服务器被黑客攻击了,所以不能访问。错误现象如下:
$ curl > ./repo         //从android服务器获取repo失败
curl: (6) Couldn't resolve host 'android.git.kernel.org' //出错信息
 
    查询相关资讯后得知,android源码网站被黑客攻击了,以至不能访问android服务器。上说道:
“As you may already know, kernel.org site which hosts the Android git repository . Because of this we can’t obtain the Android source code from its servers.”所以要想获得android源码,那必须通过其他服务器获取,具体方法如上说介绍。
 
     我这里只需要获取repo文件,而不需要纯净的android源码。所以我的方法是,使用上述网页介绍的方法获取repo,在按照omapzoom的方法从omapzoom获取omap相关的android源码。
通过其他网站服务器得到repo文件
$ curl "" > ./repo //获取repo
$ chmod a+x repo
$ PATH= ~/omap4/L27.12.1-P2/mydroid:$PATH
 
下面就是获取源码了:
$ repo init -u git://git.omapzoom.org/platform/omapmanifest.git -b 27.x -m RLS27.12.1-P2_Gingerbread.xml
$ repo sync
 
阅读(6291) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~