2
0
mirror of https://github.com/koreader/koreader synced 2024-11-11 19:11:14 +00:00
koreader/platform/kobo/disable-wifi.sh
2016-12-14 11:39:46 -08:00

20 lines
430 B
Bash

#!/bin/sh
# Disable wifi, and remove all modules.
killall udhcpc default.script wpa_supplicant 2>/dev/null
wlarm_le -i eth0 down
ifconfig eth0 down
# Some sleep in between may avoid system getting hung
# (we test if a module is actually loaded to avoid unneeded sleeps)
if lsmod | grep -q dhd ; then
usleep 200000
rmmod -r dhd
fi
if lsmod | grep -q sdio_wifi_pwr ; then
usleep 200000
rmmod -r sdio_wifi_pwr
fi