Last active
November 14, 2021 10:06
-
-
Save ArianK16a/019731ea5d10ec55e6ae5b711ea8be7c to your computer and use it in GitHub Desktop.
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 | |
set -e | |
source "build/envsetup.sh"; | |
# device/lineage/sepolicy | |
changes=( | |
282358 # common: Label IAntiFlicker live display service | |
) | |
repopick -f -P device/lineage/sepolicy ${changes[@]}& | |
# hardware/lineage/interfaces | |
changes=( | |
282218 # Add support for anti flicker mode in LiveDisplay | |
) | |
repopick -f -P hardware/lineage/interfaces ${changes[@]}& | |
# hardware/qcom-caf/sm8150/audio | |
changes=( | |
284161 # hal: msm8974: Allow to set headset echo reference | |
) | |
repopick -f -P hardware/qcom-caf/sm8150/audio ${changes[@]}& | |
# lineage-sdk | |
changes=( | |
275769 # [3/3]lineage-sdk: Bring back burnIn protection | |
282217 # Add support for anti flicker mode in LiveDisplay | |
) | |
repopick -f -P lineage-sdk ${changes[@]}& | |
# packages/apps/LineageParts | |
changes=( | |
275770 # [2/3] LineageParts: add burnIn protection setting | |
282216 # Add support for anti flicker mode in LiveDisplay | |
) | |
repopick -f -P packages/apps/LineageParts ${changes[@]}& | |
# frameworks/base | |
changes=( | |
275768 # [1/3] SystemUI: add burnIn protection setting | |
285725 # SystemUI: Add anti flicker tile | |
#285271 # VolumeDialog: Show the media output selector always in expanded state | |
) | |
repopick -f -P frameworks/base ${changes[@]}& | |
# vendor/qcom/opensource/power | |
changes=( | |
289516 # power: Handle launch and interaction hints for sm6150 | |
) | |
repopick -f -P vendor/qcom/opensource/power ${changes[@]}& | |
wait | |
# frameworks/base | |
changes=( | |
266938 # SystemUI: get rid of build text in qs | |
268939 # [DNM] Always use release-keys | |
) | |
repopick -f -P frameworks/base ${changes[@]}& | |
wait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment