这儿是官网描述的编译方法
Hands-on Notes:Build Android-x86 ICS 4 Virtualbox from Google Virtualbox Target and Intel Kernel
几点注意:
1、要编的是Android-x86版的映像文件,并附加Intel的相关内核,编成的东西在Virtualbox下运行。
2、环境是ubuntu10.04版本,桌面版,amd64bit
3、编的android包版本为android-4.0.1_r1
下载android源码
http://source.android.com/source/downloading.html
源码在虚拟机上不怎么好下,有各种问题,建议还是在windows下载,需要安装类似minwn的东西。
linux下载网上有个朋友说这样做:
1.本地PC环境:
ubuntu 10.04 64位
2. 按照 google 的官网设置会出现在下载:
3.下载的时候产生错误,从而不能下载
Android代码先前在Linux kernel(android.git.kernel.org)管理,被Kernel踢出来,现在直接由Google(android.googlesource.com)直接管理。用repo/git下载源码时,执行
$ repo init -u https://android.googlesource.com/platform/manifest -b android-2.3.3_r1
会报异常为
DownloadError: android.googlesource.com: <urlopen error [Errno 110] Connection timed out>
4.解决方法:
(1) 浏览器登录https://android.googlesource.com/new-password,并用gmail帐号登录;
(2) 点击网页上的“允许访问”,得到类似
1 machine android.googlesource.com login git-<userName>.gmail.com password <password>
2 machine android-review.googlesource.com login git-<userName>.gmail.com password <password>
(3) copy上述文本 到 ~/.netrc文件结尾(没有文件请新建一个);
(4) 下载地址更改为:https://android.googlesource.com/a/platform/manifest(中间加上了“ /a ”)。
(5) repo init -u https://android.googlesource.com/a/platform/manifest -b android-2.3.3_r1
(6) repo sync
Done!
5.原因分析
官方说法:因为访问基本是匿名的,为了防止同一IP连接过多(指内网/虚拟机),对同一IP地址的连接数做了限制。需要用gmail帐号进行认证。
源码官网指导网址: http://source.android.com/source/downloading.html
有必要安装的一些东西:sudo apt-get install ncurses-dev