DivestOS/Scripts/LineageOS-14.1/Overclock.sh

37 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/bash
#DivestOS: A privacy oriented Android distribution
2018-06-03 14:13:59 -04:00
#Copyright (c) 2017-2018 Divested Computing, Inc.
#
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <https://www.gnu.org/licenses/>.
#Overclocks the CPU to increase performance
2018-04-27 23:49:40 -04:00
#Last verified: 2018-04-27
2018-04-23 08:59:18 -04:00
echo "Applying overclocks...";
enter "kernel/amazon/hdx-common";
2018-06-23 00:21:48 -04:00
patch -p1 < "$patches/android_kernel_amazon_hdx-common/0001-Overclock.patch"; #300Mhz -> 268Mhz, 2.26Ghz -> 2.41Ghz =+0.60Ghz
patch -p1 < "$patches/android_kernel_amazon_hdx-common/0002-Overclock.patch";
patch -p1 < "$patches/android_kernel_amazon_hdx-common/0003-Overclock.patch";
patch -p1 < "$patches/android_kernel_amazon_hdx-common/0004-Overclock.patch";
2018-04-23 08:59:18 -04:00
enter "kernel/lge/hammerhead";
2018-06-23 00:21:48 -04:00
patch -p1 < "$patches/android_kernel_lge_hammerhead/0001-Overclock.patch"; #2.26Ghz -> 2.95Ghz =+2.76Ghz XXX: Untested!
2018-04-23 08:59:18 -04:00
enter "kernel/motorola/msm8916";
2018-06-23 00:21:48 -04:00
patch -p1 < "$patches/android_kernel_motorola_msm8916/0001-Overclock.patch"; #1.36Ghz -> 1.88Ghz =+ 2.07Ghz
2018-04-23 08:59:18 -04:00
2018-06-23 00:21:48 -04:00
cd "$base";
2018-04-23 08:59:18 -04:00
echo "Overclocks applied!";