Quote:
Originally Posted by h1ro
some other questions about power saving strategies:
testing shows that when i enable wifi, then go into koreader, then let the device go to standby, wifi stops working. i'd say that is supposed to happen because in standby wi-fi should be off.
But is there also a reason it doesn't reconnect after coming back out of standby?
|
This is a question you might want to ask the Koreader developers. You could do something like this in Koreader's suspend.sh:
Code:
# Disable wifi
if lsmod | grep -q sdio_wifi_pwr ; then
wlarm_le -i eth0 down
ifconfig eth0 down
rmmod -r dhd
rmmod -r sdio_wifi_pwr
echo "[$(date +'%x @ %X')] Kobo Suspend: Killed WiFi"
enableWifi=true
else
enableWifi=false
fi
#...
# Then at the very end of the script
if [ ${enableWifi} == true ]; then
/adds/kbmenu/scripts_intern/wifi/wifi_enable_dhcp.sh
fi
This script supposes that KSM is installed and wifi is expected to be started by wifi_enable_dhcp.sh rather than wifi_enable_static.sh. A script for general distribution would have to check for such things and provide other options.
Quote:
Originally Posted by h1ro
Are there still any known power issues or does it work perfectly now? So far, my 1 week test went really well!
|
I do not know for sure, but I guess there are still problems. The developers of Koreader will know the answer.