8b2b687eb8
This is in preparation for using wlantest to verify correct behavior in various test cases. Signed-hostap: Jouni Malinen <j@w1.fi>
11 lines
243 B
Bash
Executable file
11 lines
243 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sudo killall -q hostapd
|
|
sudo killall -q wpa_supplicant
|
|
sudo killall -q wlantest
|
|
if grep -q hwsim0 /proc/net/dev; then
|
|
sudo ifconfig hwsim0 down
|
|
fi
|
|
if grep -q mac80211_hwsim /proc/modules ; then
|
|
sudo rmmod mac80211_hwsim
|
|
fi
|