mac80211: Allow to select VHT80 in IBSS mode
authorFelix Fietkau <nbd@openwrt.org>
Sat, 5 Dec 2015 09:52:10 +0000 (09:52 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 5 Dec 2015 09:52:10 +0000 (09:52 +0000)
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 47781

package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh

index 43c01d3491de1665b87204c0b0b9359aa7254660..e177978c7f611f68037c15cee9acbd68e63ec0be 100644 (file)
@@ -499,7 +499,7 @@ mac80211_setup_supplicant() {
 mac80211_setup_adhoc_htmode() {
        case "$htmode" in
                VHT20|HT20) ibss_htmode=HT20;;
-               HT40*|VHT40|VHT80|VHT160)
+               HT40*|VHT40|VHT160)
                        case "$hwmode" in
                                a)
                                        case "$(( ($channel / 4) % 2 ))" in
@@ -523,6 +523,9 @@ mac80211_setup_adhoc_htmode() {
                        esac
                        [ "$auto_channel" -gt 0 ] && ibss_htmode="HT40+"
                ;;
+               VHT80)
+                       ibss_htmode="80Mhz"
+               ;;
                *) ibss_htmode="" ;;
        esac