9 lines
343 B
Text
9 lines
343 B
Text
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
# Copyright (C) 2023-present Fewtarius (https://github.com/fewtarius)
|
||
|
|
||
|
cat <<EOF >/storage/.config/profile.d/010-governors
|
||
|
CPU_FREQ=("/sys/devices/system/cpu/cpufreq/policy0" "/sys/devices/system/cpu/cpufreq/policy2")
|
||
|
GPU_FREQ=("/sys/devices/platform/soc/ffe40000.gpu/devfreq/ffe40000.gpu")
|
||
|
EOF
|