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. :-))
domsl source