Android 4.0 kernel source code? [closed]

本秂侑毒 提交于 2019-12-03 08:01:43

Watch the android source code hosted on Github.

JohnnyLambada

In his Nov 30, 2011 post, Jean-Baptiste Queru explains why the kernel source is invisible after cloning. This post describes the kernel source branches that exist for the various hardware flavors of ICS.

And in general, here's how to make a specific branch visible:

git clone https://android.googlesource.com/kernel/common.git # clone the repo
git branch -a # lists branches, both local and remote
git checkout -b android-3.0 remotes/origin/android-3.0 # create local branch
# android-3.0 that tracks the named remote branch

https://android.googlesource.com/kernel/common/

Different android kernels are listed above. To pull all of them down using git.

git clone https://android.googlesource.com/kernel/common
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!