I do research on bringing down the powerconsumtion for cooking
thats the kernel info
tux@slitaz:~$ zcat /proc/config.gz | grep -i freq # CPU Frequency scaling CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_TABLE=y # CONFIG_CPU_FREQ_DEBUG is not set CONFIG_CPU_FREQ_STAT=y # CONFIG_CPU_FREQ_STAT_DETAILS is not set CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_POWERSAVE=m CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_ONDEMAND=y CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m # CPUFreq processor drivers CONFIG_X86_PCC_CPUFREQ=m CONFIG_X86_ACPI_CPUFREQ=m CONFIG_X86_CPUFREQ_NFORCE2=m tux@slitaz:~$
You have to use the cpufreq tool to set up the governor; you can use cpufreq-set to do that. argument -c allow to select a cpu (count start from 0), and -g a governor (ondemand scale smoothly the CPU consuption in function of the needs); so, if I have two CPU I do : cpufreq-set -c 0 -g ondemand cpufreq-set -c 1 -g ondemand