H96 Pro+ S912 Standby mode

@atomizasser you can do the following as a quick fix for wifi on resume

  1. Go to \\Configfiles\ and make a folder sleep.d
  2. Then in that folder create a file named 01-wifi-resume.power with this content:
#!/bin/sh
case "$1" in
pre)
# <do something on suspend>
;;
post)
# <do something on resume>
connmanctl disable wifi
sleep 5
connmanctl enable wifi
;;
esac