From: Felix Fietkau Date: Wed, 20 Dec 2006 05:07:11 +0000 (+0000) Subject: add wlc commands for setting 802.11d and 802.11h mode, disable both by default (helps... X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=7996262da2db4f051e652d045c3cc9034616a6da;p=15.05%2Fopenwrt.git add wlc commands for setting 802.11d and 802.11h mode, disable both by default (helps with ipw2200 assoc problems, see #1075 for more information) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5874 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh index d423288d0c..71f81a7c65 100644 --- a/package/broadcom-wl/files/lib/wifi/broadcom.sh +++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh @@ -211,6 +211,8 @@ mssid $mssid apsta $apsta infra $infra ${wet:+wet 1} +802.11d 0 +802.11h 0 radio ${radio:-1} macfilter 0 diff --git a/package/broadcom-wl/src/wlc/wlc.c b/package/broadcom-wl/src/wlc/wlc.c index ea56c1a040..382e83a7b7 100644 --- a/package/broadcom-wl/src/wlc/wlc.c +++ b/package/broadcom-wl/src/wlc/wlc.c @@ -900,6 +900,20 @@ static const struct wlc_call wlc_calls[] = { .desc = "WME ACK disable request", }, { + .name = "802.11d", + .param = INT, + .handler = wlc_ioctl, + .data.num = ((WLC_GET_REGULATORY << 16) | WLC_SET_REGULATORY), + .desc = "Enable/disable 802.11d regulatory management", + }, + { + .name = "802.11h", + .param = INT, + .handler = wlc_ioctl, + .data.num = ((WLC_GET_SPECT_MANAGMENT << 16) | WLC_SET_SPECT_MANAGMENT), + .desc = "Enable/disable 802.11h spectrum management", + }, + { .name = "fragthresh", .param = INT, .handler = wlc_iovar,