Kaynağa Gözat

mac80211: Allow to select VHT80 in IBSS mode

Signed-off-by: Sven Eckelmann <[email protected]>

SVN-Revision: 47781
Felix Fietkau 10 yıl önce
ebeveyn
işleme
028666e75f

+ 4 - 1
package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh

@@ -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