Skip to content

Instantly share code, notes, and snippets.

@Eskuero
Created April 7, 2019 11:10
Show Gist options
  • Save Eskuero/710ddd8afc9f26f891e7443453463220 to your computer and use it in GitHub Desktop.
Save Eskuero/710ddd8afc9f26f891e7443453463220 to your computer and use it in GitHub Desktop.
LineageOS 14.1 April security patch
#!/bin/sh
WORKDIR=$(pwd)
cd $WORKDIR/external/libmpeg2;
git fetch https://github.com/LineageOS/android_external_libmpeg2 refs/changes/87/245487/1 && git cherry-pick FETCH_HEAD;
cd $WORKDIR/external/tremolo;
git fetch https://github.com/LineageOS/android_external_tremolo refs/changes/93/245493/1 && git cherry-pick FETCH_HEAD;
cd $WORKDIR/system/bt;
git fetch https://github.com/LineageOS/android_system_bt refs/changes/94/245494/1 && git cherry-pick FETCH_HEAD;
git fetch https://github.com/LineageOS/android_system_bt refs/changes/95/245495/1 && git cherry-pick FETCH_HEAD;
cd $WORKDIR/external/libnfc-nci;
git fetch https://github.com/LineageOS/android_external_libnfc-nci refs/changes/88/245488/6 && git cherry-pick FETCH_HEAD;
git fetch https://github.com/LineageOS/android_external_libnfc-nci refs/changes/89/245489/6 && git cherry-pick FETCH_HEAD;
git fetch https://github.com/LineageOS/android_external_libnfc-nci refs/changes/90/245490/6 && git cherry-pick FETCH_HEAD;
git fetch https://github.com/LineageOS/android_external_libnfc-nci refs/changes/91/245491/5 && git cherry-pick FETCH_HEAD;
git fetch https://github.com/LineageOS/android_external_libnfc-nci refs/changes/92/245492/5 && git cherry-pick FETCH_HEAD;
cd $WORKDIR/build;
git fetch https://github.com/LineageOS/android_build refs/changes/86/245486/1 && git cherry-pick FETCH_HEAD;
cd $WORKDIR;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment