SmartAudio/package/testtools/tinatest/testcase/stress/wifi/wpa_action.sh

14 lines
296 B
Bash
Raw Permalink Normal View History

2018-12-13 10:48:25 +00:00
#!/bin/sh
case "$2" in
CONNECTED)
if ps | grep [u]udhcpc;then
killall -q -KILL uhdcpc
fi
/sbin/udhcpc -i wlan0 -T 10 -s /usr/share/udhcpc/default.script
;;
DISCONNECTED)
echo "WPA supplicant: connection lost" >/dev/ttyS1
ifconfig wlan0 0.0.0.0
;;
esac