| #!/bin/bash | |
| # | |
| # Starts wfa_dut on default port. | |
| WFA_DIR=/usr/local/bin/wfa | |
| echo "shill: giving up managing WiFi devices" | |
| $WFA_DIR/shill_disable_wifi | |
| echo "Starting wfa_dut on localhost:9999" | |
| # Append $WFA_DIR to $PATH so that wfa_dut can run the scripts in it. | |
| PATH="$PATH:$WFA_DIR" $WFA_DIR/wfa_dut eth0 9999 & |