Created
November 8, 2018 19:59
-
-
Save Eskuero/45a9a17d9d04b22efb37caaae6c248d8 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
BASE=$(pwd); | |
cd $BASE/system/bt; | |
git fetch https://github.com/LineageOS/android_system_bt refs/changes/54/233854/4 && git cherry-pick FETCH_HEAD; | |
git fetch https://github.com/LineageOS/android_system_bt refs/changes/55/233855/2 && git cherry-pick FETCH_HEAD; | |
git fetch https://github.com/LineageOS/android_system_bt refs/changes/02/233902/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/external/sonivox; | |
git fetch https://github.com/LineageOS/android_external_sonivox refs/changes/56/233856/1 && git cherry-pick FETCH_HEAD; | |
git fetch https://github.com/LineageOS/android_external_sonivox refs/changes/57/233857/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/external/tremolo; | |
git fetch https://github.com/LineageOS/android_external_tremolo refs/changes/48/233848/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/frameworks/base; | |
git fetch https://github.com/LineageOS/android_frameworks_base refs/changes/47/233847/1 && git cherry-pick FETCH_HEAD; | |
git fetch https://github.com/LineageOS/android_frameworks_base refs/changes/59/233859/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/frameworks/av; | |
git fetch https://github.com/LineageOS/android_frameworks_av refs/changes/58/233858/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/build; | |
git fetch https://github.com/LineageOS/android_build refs/changes/60/233860/1 && git cherry-pick FETCH_HEAD; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment