#!/bin/sh
# This is a manual test for the TS-WIFIBOX
# for TS production process which will test
# the wifi radio and report good or bad
# accordingly based on results
# -DRH 01/05/10

ifconfig wlan0 up
iwlist scan | grep "wappy" > /dev/null

if [ $? -eq 0 ]
then
   echo ">> test successfull"
else
   echo ">> test failed"
fi


