With the release of Ubuntu 9.04 the modules powernow-k8, speedstep-centrino and acpi-cpufreq are not longer available as module but compiled into the kernel.
This takes away the possibility of the easy way to get in touch with PHC: patching and recompiling the module only.
You have to compile the whole kernel now.
Here you get the short-manual how to do that.
Users can offer their compiled kernels in this forum (as a link to another storage place) if they want to.This howto is derived from:
https://help.ubuntu.com/community/Kernel/CompileStep 1 - Download needed packagessudo apt-get install build-dep linux fakeroot build-essential makedumpfile linux-sourceStep 2 - Unpack and prepare the sourcecd /usr/srcsudo -star -xjf linux-source-<version>copy /boot/config-<version> /usr/src/linux-source-<version>/.configStep 3 - Configure your new Kernelmake menuconfigNow you get the configuration GUI.
Go to
Code:
Power management and ACPI options --->
CPU Frequency scaling --->
and change the section *** CPUFreq processor drivers *** to look like that:
FOR INTEL PROCESSORS:
Code:
<M> ACPI Processor P-States driver
< > AMD Opteron/Athlon64 PowerNow!
< > Intel Enhanced SpeedStep (deprecated)
< > Intel Pentium 4 clock modulation
FOR AMD PROCESSORS:
Code:
< > ACPI Processor P-States driver
<M> AMD Opteron/Athlon64 PowerNow!
< > Intel Enhanced SpeedStep (deprecated)
< > Intel Pentium 4 clock modulation
now quit the configuration GUI and do not forget to save it.
Step 4 - Kompile and install the KernelTo speed things up you can set the following environment variable:
export CONCURRENCY_LEVEL=3The Level should be set to "amount of cores"+1.
For Single-Core use "2", for a Dual-Core use "3" and so on.
Finally compile the Kernel:
fakeroot make-kpkg --initrd --append-to-version=-phc001 kernel-image kernel-headersAfter everything is done there are two new deb-packages in /usr/src. Install them (apt-get -i *.deb).
Reboot with the new kernel and continue installing the phc-intel or phc-k8 package.