每天教大家一个小技巧!
很多人想让openwrt支持13个信道 ,但网上下载的固件总是不支持。
想要openwrt 编译出的固件支持13个信道 得做两步
第一步,修改默认国家
这个目录下
/package/kernel/mac80211/files/lib/wifi修改 mac80211.sh文件
config wifi-device radio$devidx option type mac80211 option channel ${channel} option hwmode 11${mode_band} $dev_id # REMOVE THIS LINE TO ENABLE WIFI: option disabled 0 option htmode HT40 option country NZ #增加这NZ 新西兰国家支持大功率的同时支持13个信道,其实cn也支持13信道 ,但不支持大功率。
第二步(重要):
make menuconfig Kernel modules ---> Wireless Drivers ---> <*> kmod-ath #一般默认选中了的,按回车,随即选中以下选项即可 [*] Force Atheros drivers to respect the user's regdomain
OK
到这里 你的op固件就支持13信道咯
评论