2017-03-25 19:09:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Disable wifi, and remove all modules.
|
|
|
|
|
2017-03-26 23:25:37 +00:00
|
|
|
pkill dhcpcd
|
|
|
|
pkill wpa_supplicant
|
2017-03-25 19:09:12 +00:00
|
|
|
|
|
|
|
ifconfig wlan0 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 $WIFI_MODULE ; then
|
|
|
|
rmmod $WIFI_MODULE
|
|
|
|
fi
|
|
|
|
if lsmod | grep -q sdio_wifi_pwr ; then
|
|
|
|
rmmod sdio_wifi_pwr
|
|
|
|
fi
|