1.配置问题
参考教程链接,此文章已经写的很细致了,里面还有各种的其他配置或学习的链接:
ubuntu-18.04.4 Android系统源码R(Android 11)下载及编译_王人冉的博客-CSDN博客
尽量不要用ubuntu16的版本去编译,因为没有python3,最好升级到ubuntu 18的版本去编译;目前我编译的8.0.0_r1源码,但是同步下来的安卓系统源码包aosp-latest.tar已经有130G了(2021年9月)解压还需要很大的空间,我为了保险起见分配了300G的内存给虚拟机。
目前我的电脑配置为
2.repo和python的冲突
repo可以看作就是python写的git扩展工具类,为了更好的管理Androd系统源码,需要注意的问题是当前谷歌的repo是以python3为基准写的,在我使用ubuntu16版本时python默认是2.7版本,所以执行 repo sync 命令时出现了各种问题:
Traceback (most recent call last):
File "/xxx/.repo/repo/main.py", line 56, in <module>
from subcmds.version import Version
File "/xxx/.repo/repo/subcmds/__init__.py", line 38, in <module>
['%s' % name])
File "/xxx/.repo/repo/subcmds/upload.py", line 27, in <module>
from hooks import RepoHook
File "/xxx/.repo/repo/hooks.py", line 472
file=sys.stderr)
^
SyntaxError: invalid syntax
原因就是无论是谷歌官方的还是清华源上的repo都是最新的,是以python3为基准做的
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
//国内
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo > ~/bin/repo
只要我们去下载旧的版本repo文件就好了:
curl https://storage.googleapis.com/git-repo-downloads/repo-1 > ~/bin/repo
其实这在官网上有说明,我也是从官网上找到的这个版本,官网链接:
https://source.android.com/setup/develop?hl=zh-cn
3.repo sync 版本不一致问题??Could not reset index file to revision (无法将索引文件重置)
repo sync 从解压后的aosp中同步代码,但是出现了这个错误:
info: A new version of repo is available
warning: repo is not tracking a remote branch, so it will not receive updates
repo reset: error: Entry 'git_superproject.py' not uptodate. Cannot merge.
fatal: Could not reset index file to revision 'v2.15.4^0'
真的是一脑门官司,本来是以为bin目录下repo文件不是最新的,各种找文章搜索,终于在一个评论里找到了这个问题解决方法,评论在文章下方:Android 8.1.0 AOSP源码下载及编译 - 简书?;步骤也是大同小异,感谢评论区的大神给的解答,要不然一点头绪都没有,解决方式就是:
cd 到.repo/repo
git reset --hard 倒数第二个commit
git pull
最后再repo sync就可以了
具体的原因我猜应该就是git 提交的版本不一致导致的,但是为什么是这个repo文件夹出的问题我也不清楚具体原因。
|