projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
AR7 2.6.24, removed duplicate patches
[openwrt.git]
/
package
/
broadcom-wl
/
files
/
lib
/
wifi
/
broadcom.sh
diff --git
a/package/broadcom-wl/files/lib/wifi/broadcom.sh
b/package/broadcom-wl/files/lib/wifi/broadcom.sh
index
6167247
..
f52e9b0
100644
(file)
--- a/
package/broadcom-wl/files/lib/wifi/broadcom.sh
+++ b/
package/broadcom-wl/files/lib/wifi/broadcom.sh
@@
-97,6
+97,8
@@
enable_broadcom() {
config_get slottime "$device" slottime
config_get rxant "$device" rxant
config_get txant "$device" txant
config_get slottime "$device" slottime
config_get rxant "$device" rxant
config_get txant "$device" txant
+ config_get macfilter "$device" macfilter
+ config_get maclist "$device" maclist
local vif_pre_up vif_post_up vif_do_up
_c=0
local vif_pre_up vif_post_up vif_do_up
_c=0
@@
-112,6
+114,18
@@
enable_broadcom() {
} || {
slottime="${slottime:--1}"
}
} || {
slottime="${slottime:--1}"
}
+
+ case "$macfilter" in
+ allow|2)
+ macfilter=2;
+ ;;
+ deny|1)
+ macfilter=1;
+ ;;
+ disable|none|0)
+ macfilter=0;
+ ;;
+ esac
for vif in $vifs; do
config_get mode "$vif" mode
for vif in $vifs; do
config_get mode "$vif" mode
@@
-232,8
+246,8
@@
rxant ${rxant:-3}
txant ${txant:-3}
radio ${radio:-1}
txant ${txant:-3}
radio ${radio:-1}
-macfilter
0
-maclist
none
+macfilter
${macfilter:-0}
+maclist
${maclist:-none}
wds none
${wds:+wds $wds}
${channel:+channel $channel}
wds none
${wds:+wds $wds}
${channel:+channel $channel}
This page took
0.022486 seconds
and
4
git commands to generate.