如何下载Android的linux内核的某个指定版本
我用下面两个地址
$ git clone https://android.googlesource.com/kernel/common.git
$ git clone https://android.googlesource.com/kernel/goldfish.git
发现common.git的分支情况如下:
carrot@carrot-System-Product-Name:~/kernel/common$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/android-2.6.39
remotes/origin/android-3.0
remotes/origin/master
而goldfish只有2.6.29的版本,我想下个2.6.36的内核版本如何下?? 比如其他版本又怎么下??
[解决办法]
clone下来的没有那个版本的话应该就是没有在那个上面做过了, 需要的话估计要自己移植了.....
[解决办法]
一般情况下一个版本的Android SDK的话只对应一个版本的Linux内核, 就是发布的时候只会在一个内核版本的Linux下面做好相关的移植工作, 其他Linux版本的话可能是其他芯片商或是机构移植定制的.
[解决办法]