mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-31 18:52:32 +00:00
18 lines
566 B
Bash
Executable File
18 lines
566 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2015 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
SYS_CPUFREQ_GOV=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)
|
|
SYS_CPUFREQ_DIR="/sys/devices/system/cpu/cpufreq"
|
|
|
|
# Configure frequency scaling properties
|
|
if [ $SYS_CPUFREQ_GOV = "ondemand" ]; then
|
|
for policy in ${SYS_CPUFREQ_DIR}/ondemand ${SYS_CPUFREQ_DIR}/policy*/; do
|
|
if [ -e $policy/up_threshold ]; then
|
|
echo 50 >$policy/up_threshold
|
|
fi
|
|
done
|
|
fi
|