* Try to load the p4_clockmod kernel module, which provides

CPU frequency scaling on some Intel CPUs.

svn path=/nixos/trunk/; revision=23082
This commit is contained in:
Eelco Dolstra 2010-08-10 01:00:09 +00:00
parent 163a54886c
commit cddc67a653

View file

@ -70,7 +70,10 @@ in
target = "pm/sleep.d/00sleep-hook";
};
boot.kernelModules = [ "acpi_cpufreq" "cpufreq_performance" "cpufreq_powersave" "cpufreq_ondemand" ];
boot.kernelModules =
[ "acpi_cpufreq" "cpufreq_performance" "cpufreq_powersave" "cpufreq_ondemand"
"p4_clockmod"
];
};