Android内核源代码的git repo在哪里?

时间:2011-11-13 10:09:13

标签: android linux-kernel android-source

我想从源代码为我的设备构建内核,但是我无法找到内核源代码的git repo。

我发现的全是:

git://android.git.kernel.org/kernel/common.git

但是,最近在kernel.org大惊小怪之后它似乎被弃用了,git提示

  

致命:远程端意外挂断

他们是移动到某个地方还是无处可去?

2 个答案:

答案 0 :(得分:3)

As the docs on Android say你必须使用他们自己的自定义工具来处理名为repo的Git。

  1. 您需要创建一个安装存储库的目录。
  2. curl和chmod shell脚本
  3. repo sync#这将花费大量时间
  4. source build / envsetup.sh
  5. 午餐
  6. make -jN#其中N是cpus的数量*每个cpu的核心数量* 1.5

答案 1 :(得分:3)

现在可以在https://android.googlesource.com/找到git://android.git.kernel.org/处的内容。

我在您的网址中进行了替换,结果就是:

$ git ls-remote https://android.googlesource.com/kernel/common.git
844e64ac186e89d7721bcf6d98cbbce8e1002839    refs/heads/android-2.6.39
0d8f32b7e8e99f593d7d7ff1afac4e6320e1d5ab    refs/heads/android-3.0

我不知道这是不是你想要的,但值得一看。