Hello, i'm curious as to why some things are not happening at boot time (i end up having to manually load them).
In
/etc/rc.d/rc.modules (near the bottom) i have set "CPUFREQ=on"
and commented out any modules not specific to my hardware.
I have left this one uncommented:
Code:
# AMD Cool&Quiet PowerNow!:
/sbin/modprobe powernow-k8 2>/dev/null
and below the "### CPU frequency scaling policies:" i have;
Code:
/sbin/modprobe cpufreq_ondemand 2>/dev/null
uncommented. My scaling governor is set to:
Code:
SCALING_GOVERNOR=ondemand
Now whenever i reboot my machine `lsmod` is not showing any of either powernow-k8 or cpufreq* related modules.
I know i could use
/etc/rc.d/rc.local with these:
Code:
/sbin/modprobe powernow-k8
/sbin/modprobe cpufreq_ondemand
/usr/bin/cpufreq-set -g ondemand
But seems to defeat the purpose of rc.modules, any idea why they are not being loaded at boot... ?
Code:
$ uname -a
Linux slackware 2.6.35.7 #3 SMP Mon Oct 11 01:34:00 CDT 2010 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 5000+ AuthenticAMD GNU/Linux
with slackware64-current
Cheers.