四年前的笔记,由于github不好登上去,可算搬到最后一篇了。今日已达上限15篇文章,明日发表。(2024.8.16)
Google-Nexus9-compile AOSP and kernel
write by 涂涂, commit by Lihua
Aosp上的f2fs
官方文档
https://source.android.google.cn/source/building-kernels?hl=zh-cn
https://source.android.google.cn/setup/build/building-kernels-deprecated
版本选择
AOSP:
android8.0不能刷nexus9,所以下载版本选择android-7.1.1_r39
内核:
nexus 9 代号volantis(flounder)
user_debug选择flounder
内核代码下载选择kernel/tegra
下载AOSP
参考地址:https://lug.ustc.edu.cn/wiki/mirrors/help/aosp
mkdir ~/bin
PATH= ~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
##如果上述 URL 不可访问,可以用下面的:
##curl -sSL ‘https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT’ |base64 -d > ~/bin/repo
chmod a+x ~/bi