mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
(wetek_play) platform_init: Assume SMP uses shared cpufreq policy for all CPUs
This commit is contained in:
parent
eda2b9b08b
commit
8a26958aed
@ -61,14 +61,15 @@ echo rm default > /sys/class/vfm/map
|
||||
echo add default decoder ppmgr deinterlace amvideo > /sys/class/vfm/map
|
||||
|
||||
# Boot with performance governor, then switch to the governor specified in the kernel command line
|
||||
for cpufreq in /sys/devices/system/cpu/cpu[0-9]*/cpufreq; do
|
||||
if [ -n "$scaling_governor" ]; then
|
||||
echo "$scaling_governor" > "$cpufreq/scaling_governor"
|
||||
fi
|
||||
if [ -n "$scaling_min_freq" ]; then
|
||||
echo "$scaling_min_freq" > "$cpufreq/scaling_min_freq"
|
||||
fi
|
||||
if [ -n "$scaling_max_freq" ]; then
|
||||
echo "$scaling_max_freq" > "$cpufreq/scaling_max_freq"
|
||||
fi
|
||||
done
|
||||
# Assume SMP uses shared cpufreq policy for all CPUs
|
||||
cpufreq="/sys/devices/system/cpu/cpu0/cpufreq"
|
||||
if [ -n "$scaling_governor" ]; then
|
||||
echo "$scaling_governor" > "$cpufreq/scaling_governor"
|
||||
fi
|
||||
if [ -n "$scaling_min_freq" ]; then
|
||||
echo "$scaling_min_freq" > "$cpufreq/scaling_min_freq"
|
||||
fi
|
||||
if [ -n "$scaling_max_freq" ]; then
|
||||
echo "$scaling_max_freq" > "$cpufreq/scaling_max_freq"
|
||||
echo "$scaling_max_freq" > "$cpufreq/scaling_dflt_freq"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user