projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mark uclibc nptl and snapshot as broken
[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
e60674a
..
998a2f5
100644
(file)
--- a/
package/broadcom-wl/files/lib/wifi/broadcom.sh
+++ b/
package/broadcom-wl/files/lib/wifi/broadcom.sh
@@
-117,13
+117,14
@@
enable_broadcom() {
config_get vifs "$device" vifs
config_get distance "$device" distance
config_get slottime "$device" slottime
config_get vifs "$device" vifs
config_get distance "$device" distance
config_get slottime "$device" slottime
- config_get rxant
"$device" rxant
- config_get txant
"$device" txant
+ config_get rxant
enna "$device" rxantenna
+ config_get txant
enna "$device" txantenna
config_get_bool frameburst "$device" frameburst
config_get macfilter "$device" macfilter
config_get maclist "$device" maclist
config_get macaddr "$device" macaddr
config_get_bool frameburst "$device" frameburst
config_get macfilter "$device" macfilter
config_get maclist "$device" maclist
config_get macaddr "$device" macaddr
- local vif_pre_up vif_post_up vif_do_up
+ config_get txpower "$device" txpower
+ local vif_pre_up vif_post_up vif_do_up vif_txpower
_c=0
nas="$(which nas)"
_c=0
nas="$(which nas)"
@@
-152,6
+153,8
@@
enable_broadcom() {
esac
for vif in $vifs; do
esac
for vif in $vifs; do
+ config_get vif_txpower "$vif" txpower
+
config_get mode "$vif" mode
append vif_pre_up "vif $_c" "$N"
append vif_post_up "vif $_c" "$N"
config_get mode "$vif" mode
append vif_pre_up "vif $_c" "$N"
append vif_post_up "vif $_c" "$N"
@@
-230,18
+233,26
@@
enable_broadcom() {
append vif_post_up "monitor $monitor" "$N"
append vif_post_up "passive $passive" "$N"
}
append vif_post_up "monitor $monitor" "$N"
append vif_post_up "passive $passive" "$N"
}
+
+ [ "$mode" = "adhoc" ] && {
+ config_get bssid "$vif" bssid
+ [ -n "$bssid" ] && {
+ append vif_pre_up "des_bssid $bssid" "$N"
+ append vif_pre_up "allow_mode 1" "$N"
+ }
+ } || append vif_pre_up "allow_mode 0" "$N"
append vif_post_up "enabled 1" "$N"
config_get ifname "$vif" ifname
#append if_up "ifconfig $ifname up" ";$N"
append vif_post_up "enabled 1" "$N"
config_get ifname "$vif" ifname
#append if_up "ifconfig $ifname up" ";$N"
- [ -z "$macaddr" ] || append if_up "ifconfig $ifname hw ether $macaddr" ";$N"
+
local net_cfg bridge
net_cfg="$(find_net_config "$vif")"
[ -z "$net_cfg" ] || {
bridge="$(bridge_interface "$net_cfg")"
local net_cfg bridge
net_cfg="$(find_net_config "$vif")"
[ -z "$net_cfg" ] || {
bridge="$(bridge_interface "$net_cfg")"
- append if_up "start_net '$ifname' '$net_cfg'" ";$N"
append if_up "set_wifi_up '$vif' '$ifname'" ";$N"
append if_up "set_wifi_up '$vif' '$ifname'" ";$N"
+ append if_up "start_net '$ifname' '$net_cfg' \$(wlc ifname '$ifname' bssid)" ";$N"
}
[ -z "$nasopts" ] || {
eval "${vif}_ssid=\"\$ssid\""
}
[ -z "$nasopts" ] || {
eval "${vif}_ssid=\"\$ssid\""
@@
-271,8
+282,8
@@
infra $infra
${wet:+wet 1}
802.11d 0
802.11h 0
${wet:+wet 1}
802.11d 0
802.11h 0
-rxant ${rxant:-3}
-txant ${txant:-3}
+rxant ${rxant
enna
:-3}
+txant ${txant
enna
:-3}
monitor ${monitor:-0}
passive ${passive:-0}
monitor ${monitor:-0}
passive ${passive:-0}
@@
-295,6
+306,12
@@
EOF
wlc stdin <<EOF
$vif_do_up
EOF
wlc stdin <<EOF
$vif_do_up
EOF
+
+ # use vif_txpower (from last wifi-iface) instead of txpower (from
+ # wifi-device) if the latter does not exist
+ txpower=${txpower:-$vif_txpower}
+ [ -z "$txpower" ] || iwconfig $device txpower ${txpower}dBm
+
eval "$nas_cmd"
}
eval "$nas_cmd"
}
This page took
0.024484 seconds
and
4
git commands to generate.