projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[target/generic]: preliminary 2.6.38 support
[openwrt.git]
/
package
/
mac80211
/
files
/
lib
/
wifi
/
mac80211.sh
diff --git
a/package/mac80211/files/lib/wifi/mac80211.sh
b/package/mac80211/files/lib/wifi/mac80211.sh
index
2f4abd0
..
b20785c
100644
(file)
--- a/
package/mac80211/files/lib/wifi/mac80211.sh
+++ b/
package/mac80211/files/lib/wifi/mac80211.sh
@@
-103,12
+103,14
@@
mac80211_hostapd_setup_bss() {
config_get_bool wds "$vif" wds 0
[ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
config_get_bool wds "$vif" wds 0
[ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
+ local macaddr hidden maxassoc wmm
config_get macaddr "$vif" macaddr
config_get macaddr "$vif" macaddr
- config_get_bool hidden "$vif" hidden 0
config_get maxassoc "$vif" maxassoc
config_get maxassoc "$vif" maxassoc
+ config_get_bool hidden "$vif" hidden 0
+ config_get_bool wmm "$vif" wmm 1
cat >> /var/run/hostapd-$phy.conf <<EOF
$hostapd_cfg
cat >> /var/run/hostapd-$phy.conf <<EOF
$hostapd_cfg
-wmm_enabled=
1
+wmm_enabled=
$wmm
bssid=$macaddr
ignore_broadcast_ssid=$hidden
${maxassoc:+max_num_sta=$maxassoc}
bssid=$macaddr
ignore_broadcast_ssid=$hidden
${maxassoc:+max_num_sta=$maxassoc}
This page took
0.026455 seconds
and
4
git commands to generate.