Created
April 7, 2019 11:10
-
-
Save Eskuero/710ddd8afc9f26f891e7443453463220 to your computer and use it in GitHub Desktop.
LineageOS 14.1 April security patch
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 | |
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