blob: 1f37aaf744fbb6c4d2daed8b1d50b478ac2df32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# dont handle non-wireless interfaces
if [ -z "`grep $IFACE /proc/net/wireless`" ]; then
exit 0
fi
if test -e /sbin/cardctl; then
CARDCTL=/sbin/cardctl
elif test -e /sbin/pccardctl; then
CARDCTL=/sbin/pccardctl
else
exit 0
fi
# Special case for prism3 cards needing firmware upload
# Add more known manfids, if necessary
if [ `$CARDCTL info|grep "d601,0010\|d601,0101"` ]; then
iwpriv "$IFACE" reset 1
hostap_fw_load "$IFACE"
fi
# lets hope that run-parts obeys the order :D
exit 0
|