更改 CPU 根 android 设备的调控器

Changing CPU governor of a rooted android device

我正在开发一个应用程序,它可以更改根设备的 CPU 调速器。我知道我可以在 "sys/devices/system/cpu/cpu0/cpufreq/scaling_governor" 中获得现任州长,但我该如何更改它?

首先,从您所在的目录执行:

#cat scaling_available_governors

然后你会得到这样的输出:

ondemand userspace powersave performance

这些是您的内核支持的调控器。现在您可以通过 运行:

强制内核使用其中之一
#echo "powersave" > scaling_governor

您需要 root 权限才能运行。