forked from altcloud/mkimage-profiles
aarch64-rpi4: Change the default governor to conservative
By default, in cpufreq-simple feature the ondemand governor is configured. But only the conservative governor is available at Raspberry Pi 4 kernels. This is change the default governor to conservative.
This commit is contained in:
parent
5d5ce4ab5e
commit
cef45dd80d
12
features.in/aarch64-rpi4/image-scripts.d/93-default-gouvernor-conservative
Executable file
12
features.in/aarch64-rpi4/image-scripts.d/93-default-gouvernor-conservative
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh -efu
|
||||
# By default, in cpufreq-simple feature the ondemand governor is configured.
|
||||
# But only the conservative governor is available at Raspberry Pi 4 kernels.
|
||||
# This is change the default governor to conservative.
|
||||
|
||||
cfgfile="/etc/sysconfig/cpufreq-simple"
|
||||
|
||||
if [ -f "$cfgfile" ]
|
||||
then
|
||||
echo "GOVERNOR_AC_ON=conservative" >> "$cfgfile"
|
||||
echo "GOVERNOR_AC_OFF=conservative" >> "$cfgfile"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user