Aosp10内核源码下载

AOSP内核源码组成

Android内核完整源码包括:内核源码,用于编译内核的所有工具,以及编译脚本build/build.sh用于构建内核使用。

其中,内核源代码中根目录下包括编译脚本build/build.sh。Android源码树仅包含预编译的内核二进制文件。

android内核源码下载过程

官方链接参考https://source.android.com/setup/build/building-kernels#customize-build

官方具体步骤如下:

最新的内核,可以使用repo下载源码代码,工具链和构建脚本。一些内核(例如,Pixel 3内核)需要从多个git代码库获取源码,而其他内核(通用内核)只需要一份源代码,使用repo方法可缺包源目录设置正确。

下载过程如下:

$ mkdir android-kernel && cd android-kernel
$ repo init -u https://android.googlesource.com/kernel/manifest -b BRANCH
$ repo sync

分支Branch如下:不同的设备对应不同的分支源码

Aosp10内核源码下载_第1张图片

注意:上面的下载有2个问题:(1)国内无法下载 https://android.googlesource.com,如何解决?(2)BRANCH分支全是android11的,并不是android10,如果解决?

问题(1)需要替换镜像,国内有很多镜像源可以使用(中科大,华科),我通常选择清华镜像,步骤如下:

步骤如上述过程,但是依据清华官方的镜像使用方法: 将 https://android.googlesource.com/ 全部使用 https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/ 代替即可。

内核源码下载之后,记得修改reop文件内部的repo_url内部的 https://android.googlesource.com/ 再次替换为 https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/ 。

问题(2)我们下的是android10的内核,最后应该是数字10才对,可以从官方源码网站确认:https://android.googlesource.com/kernel/manifest/+refs,

同时也可以从该博客确认:https://blog.csdn.net/u010164190/article/details/106561022  ;  https://groups.google.com/g/android-building/c/Zj5VVapM8H8/m/wYc2KAQNAwAJ?pli=1

 

附:

google官方的android源码查看链接:https://android.googlesource.com/?format=HTML

android源码:

repo init -u https://android.googlesource.com/platform/manifest    

Aosp10内核源码下载_第2张图片

其中android 源码下载说明的官方文档链接:https://source.android.com/setup/build/downloading

android 内核代码

repo init -u https://android.googlesource.com/kernel/manifest -b BRANCH

Aosp10内核源码下载_第3张图片

其中android内核源码下载说明的官方文档链接:https://source.android.com/setup/build/building-kernels#customize-build

清华镜像链接:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/

你可能感兴趣的:(android系统)