Created
July 6, 2019 15:01
-
-
Save Eskuero/9f4ce8fec8bc1cee71f841a630a03ca3 to your computer and use it in GitHub Desktop.
LineageOS July 2019 patches
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
#/bin/bash | |
BASE=$(pwd) | |
cd $BASE/.repo/manifests; | |
git fetch "https://github.com/LineageOS/android" refs/changes/67/250967/2 && git cherry-pick FETCH_HEAD; | |
cd $BASE; | |
repo sync --force-sync | |
cd $BASE/build/make; | |
git fetch "https://github.com/LineageOS/android_build" refs/changes/68/250968/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/frameworks/av; | |
git fetch "https://github.com/LineageOS/android_frameworks_av" refs/changes/70/250970/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/frameworks/native; | |
git fetch "https://github.com/LineageOS/android_frameworks_native" refs/changes/72/250972/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/packages/apps/PackageInstaller; | |
git fetch "https://github.com/LineageOS/android_packages_apps_PackageInstaller" refs/changes/73/250973/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/packages/apps/Traceur; | |
git fetch "https://github.com/LineageOS/android_packages_apps_Traceur" refs/changes/74/250974/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/packages/providers/TelephonyProvider; | |
git fetch "https://github.com/LineageOS/android_packages_providers_TelephonyProvider" refs/changes/75/250975/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/system/bt; | |
git fetch "https://github.com/LineageOS/android_system_bt" refs/changes/76/250976/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/system/core; | |
git fetch "https://github.com/LineageOS/android_system_core" refs/changes/77/250977/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/system/netd; | |
git fetch "https://github.com/LineageOS/android_system_netd" refs/changes/78/250978/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/system/security; | |
git fetch "https://github.com/LineageOS/android_system_security" refs/changes/79/250979/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/system/tools/hidl; | |
git fetch "https://github.com/LineageOS/android_system_tools_hidl" refs/changes/80/250980/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/external/icu; | |
git fetch "https://github.com/LineageOS/android_external_icu" refs/changes/69/250969/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE/frameworks/base; | |
git fetch "https://github.com/LineageOS/android_frameworks_base" refs/changes/71/250971/1 && git cherry-pick FETCH_HEAD; | |
cd $BASE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment