File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,24 @@ for cpu in $(ls -1d /sys/devices/system/cpu/cpu* | sort --version-sort) ; do
14
14
if [ -f $cpu /cpufreq/scaling_governor ]; then
15
15
chmod u+w $cpu /cpufreq/scaling_governor
16
16
fi
17
+ for boundary in min max; do
18
+ if [ -f $cpu /cpufreq/scaling_${boundary} _freq ]; then
19
+ chmod u+w $cpu /cpufreq/scaling_${boundary} _freq
20
+ fi
21
+ done
17
22
18
23
# Set governor to performance and do not allow changes later on.
19
24
if [ -f $cpu /cpufreq/scaling_governor ]; then
20
25
echo performance > $cpu /cpufreq/scaling_governor
21
26
chmod a-w $cpu /cpufreq/scaling_governor
22
27
fi
23
28
29
+ # Hardware maximum performance.
30
+ if [ -f $cpu /cpufreq/scaling_min_freq ] && [ -f $cpu /cpufreq/scaling_max_freq ]; then
31
+ cp $cpu /cpufreq/scaling_{max,min}_freq
32
+ chmod a-w $cpu /cpufreq/scaling_{max,min}_freq
33
+ fi
34
+
24
35
# Disable all but one thread on each core. Both core_id and physical_package_id are
25
36
# numbers it must be ensured that for the following examples are seen as distinct:
26
37
# - core_id=1, physical_package=11
You can’t perform that action at this time.
0 commit comments