13 lines
231 B
Bash
Executable File
13 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if modinfo cpufreq-xen > /dev/null 2>&1; then
|
|
modprobe acpi-cpufreq || exit 1
|
|
modprobe cpufreq-xen
|
|
|
|
for f in /sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_governor; do
|
|
echo xen > $f
|
|
done
|
|
|
|
fi
|
|
|