Here is the procedure while porting kernel from 3.4.5 to 3.10
kernel.
$cd
/projects/mobcom_andrwks_ext8/users/arunks/kernel-porting/aosp/
Clone the AOSP kernel,
Now move into 3.4.5 kernel,
$git
remote add porting-3.10
/projects/mobcom_andrwks_ext8/users/arunks/kernel-porting/aosp/common
$git
fetch porting-3.10
/*Set the renamelimit to make merge complete. Otherwise git merge will
stop rename resolution when default value of renamelimit is reached.*/
$git config merge.renameLimit 999999
/*Set the renamelimit to make merge complete. Otherwise git merge will
stop rename resolution when default value of renamelimit is reached.*/
$git config merge.renameLimit 999999
Create a local branch with name android-3.10 tracking
remotes/origin/experimental/android-3.10
$git
merge -s recursive android-3.10
Now resolve all merge conflicts and git add or rm according.
Then do a git commit.
No comments:
Post a Comment