mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:21:51 +02:00
set rate in wificonf from wl0_rate (fixes #159)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2883 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a26bbdb7a5
commit
9ffdc69752
@ -622,6 +622,10 @@ static void setup_bcom_common(int skfd, char *ifname)
|
||||
val = nvram_enabled(wl_var("lazywds"));
|
||||
bcom_ioctl(skfd, ifname, WLC_SET_LAZYWDS, &val, sizeof(val));
|
||||
|
||||
if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) {
|
||||
val *= 2;
|
||||
bcom_ioctl(skfd, ifname, WLC_SET_RATE, &val, sizeof(val));
|
||||
}
|
||||
if (v = nvram_get(wl_var("dtim"))) {
|
||||
val = atoi(v);
|
||||
bcom_ioctl(skfd, ifname, WLC_SET_DTIMPRD, &val, sizeof(val));
|
||||
|
Loading…
Reference in New Issue
Block a user