mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
(wetek_play) platform_init: Assume SMP uses shared cpufreq policy for all CPUs
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user