9 lines
381 B
Text
9 lines
381 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/policy4" "/sys/devices/system/cpu/cpufreq/policy6")
|
||
|
GPU_FREQ=("/sys/devices/platform/fb000000.gpu/devfreq/fb000000.gpu")
|
||
|
EOF
|