Skip to content

Instantly share code, notes, and snippets.

@Eskuero
Created November 8, 2018 19:59
Show Gist options
  • Save Eskuero/45a9a17d9d04b22efb37caaae6c248d8 to your computer and use it in GitHub Desktop.
Save Eskuero/45a9a17d9d04b22efb37caaae6c248d8 to your computer and use it in GitHub Desktop.
#!/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