1.repo 相关命令:
repo init --depth 1 -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-8.1.0_r52
repo sync -c --no-tags -j4 -c,表示只更新当前分支;--no-tags,不获取标签
git --git-dir=.repo/manifests/.git/ branch -a
repo branch
2.刷真机:
不能只通过纯源代码来使用 AOSP,还需要运行与硬件相关的其他专有库(例如用于硬件图形加速的专有库)。
https://developers.google.cn/android/drivers
出厂设备的代号和编译配置选项 :
https://source.android.google.cn/setup/build/running
在安卓手机中fastboot是一种比recovery更底层的刷机模式。
3.刷机参考:
https://github.com/r0ysue/AndroidSecurityStudy/blob/master/FRIDA/A01/README.md