Differences between fixes between android kernel and linux kernel linux

What I was trying to do was patch or combine the differences in the android kernel with the linux kernel for a specific board. I have problems with successful merge 2. I tried to merge the kernel using these commands to make a fix file: 1st: I tried to find the point in time when the linux linux kernel was merged with the android tree.

 git log --pretty=oneline --format="%Cgreen%h %Creset%s" \
            --grep="Linux 3." -n 20 

Then I make a patch:

git diff c16fa4f HEAD > 3.4-to-android.patch

The patch was huge ~ 200 MB, but when I apply the patch, I get a long string of errors. I follow this site: http://blogs.arm.com/software-enablement/498-from-zero-to-boot-porting-android-to-your-arm-platform/

I appreciate any help you may have. (Just trying to learn something new. :-))

+5
source
1

Android Vanilla:

http://www.linaro.org/blog/android-blog/androidization-of-linux-kernel/

CONFIG_ASHMEM=y
CONFIG_STAGING=y
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=y
CONFIG_ANDROID_LOGGER=y
CONFIG_ANDROID_RAM_CONSOLE=y
CONFIG_ANDROID_LOW_MEMORY_KILLER=y

IPC, Android IPC (, , ​​ ), Linux: , , .. Android BINDER.

, :

http://community.arm.com/groups/android-community/blog/2013/09/18/from-zero-to-boot-porting-android-to-your-arm-platform

Android (, Ubuntu/Fedora ..), Android :

https://lkml.org/lkml/2013/12/4/469

+2

All Articles