distribution/packages/hardware/quirks/devices/Hardkernel ODROID-GO-Ultra/001-hardwareinit

18 lines
424 B
Text
Raw Normal View History

2023-04-02 00:27:13 +00:00
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
. /etc/profile
2023-04-20 21:40:42 +00:00
### Set GPU Govorner to powersave during boot
echo powersave > /sys/devices/platform/soc/ffe40000.gpu/devfreq/ffe40000.gpu/governor
### Sleep is currently broken, so we'll disable it.
2023-04-02 00:27:13 +00:00
cat <<EOF >/storage/.config/sleep.conf.d/sleep.conf
[Sleep]
AllowSuspend=no
2023-04-02 00:27:13 +00:00
SuspendState=freeze
EOF