2022-02-05 14:23:32 +00:00
|
|
|
#!/bin/bash
|
2022-07-30 02:19:47 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
2022-03-26 16:15:38 +00:00
|
|
|
. /etc/profile
|
2022-02-05 14:23:32 +00:00
|
|
|
|
2023-01-20 02:30:33 +00:00
|
|
|
headphones() {
|
|
|
|
if [ "${DEVICE_FAKE_JACKSENSE}" == "true" ]
|
|
|
|
then
|
|
|
|
log $0 "Headphone sense: ${1}"
|
|
|
|
systemctl ${1} headphones >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
volumectl() {
|
|
|
|
if [ "${DEVICE_VOLUMECTL}" == "true" ]
|
|
|
|
then
|
|
|
|
log $0 "Volume control: ${1}"
|
|
|
|
systemctl ${1} volume >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
alsastate() {
|
|
|
|
alsactl ${1} -f /storage/.config/asound.state >/dev/null 2>&1
|
|
|
|
}
|
|
|
|
|
|
|
|
powerstate() {
|
|
|
|
if [ "$(get_setting system.powersave)" = 1 ]
|
|
|
|
then
|
|
|
|
systemctl ${1} powerstate >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
bluetooth() {
|
|
|
|
if [ "$(get_setting bluetooth.enabled)" == "1" ]
|
|
|
|
then
|
|
|
|
log $0 "Bluetooth: ${1}"
|
|
|
|
systemctl ${1} bluetooth >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
modules() {
|
|
|
|
log $0 "Modules: ${1}"
|
|
|
|
case ${1} in
|
|
|
|
stop)
|
|
|
|
if [ -e "/usr/config/modules.bad" ]
|
|
|
|
then
|
|
|
|
for module in $(cat /usr/config/modules.bad)
|
|
|
|
do
|
|
|
|
EXISTS=$(lsmod | grep ${module})
|
|
|
|
if [ $? = 0 ]
|
|
|
|
then
|
|
|
|
echo ${module} >>/tmp/modules.load
|
|
|
|
modprobe -r ${module}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
start)
|
|
|
|
if [ -e "/tmp/modules.load" ]
|
|
|
|
then
|
|
|
|
for module in $(cat /tmp/modules.load)
|
|
|
|
do
|
|
|
|
MODCNT=0
|
|
|
|
MODATTEMPTS=10
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
if (( "${MODCNT}" < "${MODATTEMPTS}" ))
|
|
|
|
then
|
|
|
|
modprobe ${module%% *}
|
|
|
|
if [ $? = 0 ]
|
|
|
|
then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
MODCNT=$((${MODCNT} + 1))
|
|
|
|
sleep .5
|
|
|
|
done
|
|
|
|
done
|
|
|
|
rm -f /tmp/modules.load
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:23:32 +00:00
|
|
|
case $1 in
|
2022-03-26 16:15:38 +00:00
|
|
|
pre)
|
2023-01-20 02:30:33 +00:00
|
|
|
alsastate store
|
|
|
|
headphones stop
|
|
|
|
volumectl stop
|
|
|
|
bluetooth stop
|
|
|
|
powerstate stop
|
|
|
|
device_powersave stop
|
|
|
|
modules stop
|
2022-02-05 14:23:32 +00:00
|
|
|
touch /run/.last_sleep_time
|
2022-03-26 16:15:38 +00:00
|
|
|
;;
|
|
|
|
post)
|
2023-02-05 22:42:47 +00:00
|
|
|
led_mgr
|
2023-01-20 02:30:33 +00:00
|
|
|
alsastate restore
|
|
|
|
modules start
|
|
|
|
powerstate start
|
|
|
|
headphones start
|
|
|
|
volumectl start
|
|
|
|
bluetooth start
|
2022-08-28 23:53:29 +00:00
|
|
|
|
2022-10-01 14:03:01 +00:00
|
|
|
if [ "$(get_setting wifi.enabled)" == "1" ]
|
2022-10-28 22:33:07 +00:00
|
|
|
then
|
2023-01-20 02:30:33 +00:00
|
|
|
log $0 "Connecting WIFI."
|
|
|
|
nohup wifictl enable >/dev/null 2>&1
|
2022-10-28 22:33:07 +00:00
|
|
|
fi
|
2022-10-01 14:03:01 +00:00
|
|
|
|
2022-07-30 02:19:47 +00:00
|
|
|
DEVICE_VOLUME=$(get_setting "audio.volume" 2>/dev/null)
|
2023-01-20 02:30:33 +00:00
|
|
|
log $0 "Restoring volume to ${DEVICE_VOLUME}%."
|
|
|
|
amixer -M set "${DEVICE_AUDIO_MIXER}" ${DEVICE_VOLUME}%
|
2022-07-30 02:19:47 +00:00
|
|
|
|
2022-09-25 19:22:56 +00:00
|
|
|
BRIGHTNESS=$(get_setting system.brightness)
|
2023-01-20 02:30:33 +00:00
|
|
|
log $0 "Restoring brightness to ${BRIGHTNESS}."
|
2022-10-02 00:22:43 +00:00
|
|
|
echo ${BRIGHTNESS} >/sys/class/backlight/$(brightness device)/brightness
|
2022-03-26 16:15:38 +00:00
|
|
|
;;
|
2022-02-05 14:23:32 +00:00
|
|
|
esac
|