Skip to content

Commit a285bb0

Browse files
committed
adding Wireless drivers for 8192eu, 8812au, 8188eu and mt7610
1 parent f39b553 commit a285bb0

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

‎scripts/raspberryconfig.sh‎

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,41 @@ sudo /sbin/iw dev wlan0 set power_save off
168168
echo"Give proper permissions to wifistart.sh"
169169
chmod a+x /bin/wifistart.sh
170170

171+
echo"Installing Wireless drivers for 8192eu, 8812au, 8188eu and mt7610. Many thanks mrengman"
172+
173+
KERNEL_VERSION="4.4.9"
174+
KERNEL_REV="884"
175+
176+
mkdir wifi
177+
cd wifi
178+
179+
echo"WIFI: 8192EU"
180+
wget https://dl.dropboxusercontent.com/u/80256631/8192eu-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
181+
tar xf 8192eu-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
182+
./install.sh
183+
rm -rf *
184+
185+
echo"WIFI: 8812AU"
186+
wget https://dl.dropboxusercontent.com/u/80256631/8812au-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
187+
tar xf 8812au-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
188+
./install.sh
189+
rm -rf *
190+
191+
echo"WIFI: 8188EU"
192+
wget https://dl.dropboxusercontent.com/u/80256631/8188eu-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
193+
tar xf 8188eu-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
194+
./install.sh
195+
rm -rf *
196+
197+
echo"WIFI: MT7610"
198+
wget https://dl.dropboxusercontent.com/u/80256631/mt7610-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
199+
tar xf mt7610-$KERNEL_VERSION-v7-$KERNEL_REV.tar.gz
200+
./install.sh
201+
rm -rf *
202+
203+
cd ..
204+
rm -rf wifi
205+
171206
#On The Fly Patch
172207
if [ "$PATCH"="volumio" ];then
173208
echo"No Patch To Apply"

0 commit comments

Comments
(0)