1
0
mirror of https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git synced 2025-10-19 09:01:10 +02:00

initial import of rtl8812AU_8821AU_linux_v4.2.2_7502.20130517

This commit is contained in:
Anand Babu (AB) Periasamy
2013-09-04 13:48:15 -07:00
parent d18becd73a
commit 6b9092c4ad
312 changed files with 227735 additions and 0 deletions

20
runwpa Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
if [ "`which iwconfig`" = "" ] ; then
echo "WARNING:Wireless tool not exist!"
echo " Please install it!"
exit
else
if [ `uname -r | cut -d. -f2` -eq 4 ]; then
wpa_supplicant -D ipw -c wpa1.conf -i wlan0
else
if [ `iwconfig -v |awk '{print $4}' | head -n 1` -lt 18 ] ; then
wpa_supplicant -D ipw -c wpa1.conf -i wlan0
else
wpa_supplicant -D wext -c wpa1.conf -i wlan0
fi
fi
fi