Forked from DD3Boh/gist:6c51fd3c5f91b1042e956771483714de
Last active
July 27, 2019 00:38
-
-
Save PIPIPIG233666/986d2675de7abcff0c5f6407de7bdff8 to your computer and use it in GitHub Desktop.
How to merge a newer CAF tag in an android kernel (For msm kernel)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For msm | |
Go into your kernel folder with a terminal and do | |
git fetch https://source.codeaurora.org/quic/la/kernel/msm-xxx/ LA.UM.x.x.rx-0XXXX-xxxxxx.x | |
Then to do the merge you just have to do | |
git merge FETCH_HEAD | |
Now just fix the conflicts if there and then do | |
git add -A git add . | |
git merge --continue or git commit | |
Congratulation, you have fucked up your kernel. | |
----------------------------------------------------------------------------------------------------------------------------- | |
For WLAN modules | |
Go into your kernel folder with a terminal and do | |
git remote add xxx URL | |
Then | |
git subtree add --prefix drivers/staging/xxx xxx TAG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment