|
I have heard of other intel cpu having a hardcoded lowest voltage. Mine is a duo T2500 and it has the same hardcode, mine at .95v. Since my cpu works at .95v for the next available higher frequency, I thought to just set the base frequency from the default lowest of 1,000,000 to 1,333,000 in that it aught to use the same power but yield a higher performance gain. So far so good.
Here is what I did to /etc/rc.local to set it for boot..
# By default this script does nothing.
echo 1333000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq echo 1333000 > /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq
exit 0
|