repo init和sync命令的实用小技巧
2018-07-09 本文已影响210人
阿群1986
以下是安卓5.1系统固件编译的学习笔记
首先选择manifest源,一般直接使用清华或中科大的镜像源
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest
是清华提供的镜像源
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest
是中国科学技术大学的镜像源
repo init
推荐使用-b 分支标签
、--depth=1
和--platform=auto
这几个选项加快速度
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-5.1.1_r9 --depth=1 --platform=auto
repo sync
推荐使用--current-branch
选项加快速度
repo sync --current-branch
另外:中科大限制了每个用户最多使用4线程,因此指定-j8选项并不能提高下载速度。