ral
Android Expert
I wanted to adjust the voltage for 806 MHz to 1025 vdd from 1050 vdd. I tried adjusting it with AnTuTu CPU Master, but the setting would not stick past reboot. I found this guide by LeeDroid which taught me how you do it by editing the init.d file.
Open /system/etc/init.d/01sysctl with a text editor and this is what I the contents of the file are
On reboot, 860 MHz is set to 1025 vdd
A bit confused about this line:
This is supposed to load settings from /etc/sysctl.conf
But I cannot find /etc/sysctl.conf on my device. Maybe a junk line left from some app I installed? If I remember correctly, entries behind a # are ignored.
I really gotta learn more about what else I can edit init.d to do
Next project would be how to enable a governor and configure it from init.d.
Open /system/etc/init.d/01sysctl with a text editor and this is what I the contents of the file are
I edited the file to read:#!/system/bin/sh
# - sysctl - p -
#!/system/bin/sh
# - sysctl - p -
#CONFIG_CPU_FREQ_VDD_LEVELS
echo '806400 1025' > /sys/devices/system/cpu/cpu0/cpufreq/vdd_levels
On reboot, 860 MHz is set to 1025 vdd

A bit confused about this line:
# - sysctl - p -
This is supposed to load settings from /etc/sysctl.conf
But I cannot find /etc/sysctl.conf on my device. Maybe a junk line left from some app I installed? If I remember correctly, entries behind a # are ignored.
I really gotta learn more about what else I can edit init.d to do

Next project would be how to enable a governor and configure it from init.d.