pmaports/temp/iio-sensor-proxy/iio-sensor-proxy.initd

17 lines
453 B
Text
Raw Normal View History

#!/sbin/openrc-run
supervisor=supervise-daemon
command="/usr/libexec/iio-sensor-proxy"
# In some devices like OP6T/AYN Odin hexagonrpcd might take longer time to get initialized
# and iio-sensor-proxy may die before that. Let's workaround it by adding a 10 seconds delay.
# It doesnt break other devices and makes it work in devices like the OP6T and AYN Odin.
# This is just a temporary workaround.
start_pre() {
sleep 10
}
depend() {
need dbus
}