2017-10-19 19:19:26 -04:00
#!/bin/bash
2017-11-05 10:58:01 -05:00
#DivestOS: A privacy oriented Android distribution
2019-10-07 23:47:11 -04:00
#Copyright (c) 2017-2019 Divested Computing Group
2017-11-05 10:58:01 -05:00
#
#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/>.
2017-10-19 19:19:26 -04:00
#Attempts to increase performance and battery life
2018-04-27 23:49:40 -04:00
#Last verified: 2018-04-27
2017-10-19 19:19:26 -04:00
2018-04-23 08:59:18 -04:00
echo "Optimizing..." ;
2017-10-19 19:19:26 -04:00
2018-04-23 08:59:18 -04:00
enter "frameworks/base" ;
2019-03-17 17:27:51 -04:00
sed -i 's/ScaleSetting = 1.0f;/ScaleSetting = 0.5f;/' services/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
sed -i 's/AnimationScale = 1.0f;/AnimationScale = 0.5f;/' services/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
sed -i 's/DurationnScale = 1.0f;/DurationScale = 0.5f;/' services/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
sed -i 's/ScaleSetting = 1.0f;/ScaleSetting = 0.5f;/' services/core/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
sed -i 's/AnimationScale = 1.0f;/AnimationScale = 0.5f;/' services/core/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
sed -i 's/DurationnScale = 1.0f;/DurationScale = 0.5f;/' services/core/java/com/android/server/wm/WindowManagerService.java & >/dev/null || true;
2017-11-07 04:35:41 -05:00
#sed -i 's|||'
2017-10-19 19:19:26 -04:00
2018-05-20 23:28:01 -04:00
enter "kernel"
2018-06-23 00:21:48 -04:00
sed -i "s/#define VM_MAX_READAHEAD\t128/#define VM_MAX_READAHEAD\t512/" ./*/*/include/linux/mm.h; #Lee Susman <lsusman@codeaurora.org>: Change the VM_MAX_READAHEAD value from the default 128KB to 512KB. This will allow the readahead window to grow to a maximum size of 512KB, which greatly benefits to sequential read throughput.
2018-05-20 23:28:01 -04:00
2018-06-29 00:55:21 -04:00
cd " $DOS_BUILD_BASE " ;
2018-04-23 08:59:18 -04:00
echo "Optimizing complete!" ;