mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
wifi-scripts: Support HE Iftypes with multiple entries
With mac80211_hwsim I have seen such entries in OpenWrt 22.03:
HE Iftypes: managed, AP
The mac80211.sh script did not detect the entry and failed. Allow
arbitrary other entries before to fix this problem.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 5df7a78e82
)
This commit is contained in:
parent
60768064ce
commit
48c81b80b2
@ -428,9 +428,9 @@ mac80211_hostapd_setup_base() {
|
|||||||
he_bss_color:128 \
|
he_bss_color:128 \
|
||||||
he_bss_color_enabled:1
|
he_bss_color_enabled:1
|
||||||
|
|
||||||
he_phy_cap=$(iw phy "$phy" info | sed -n '/HE Iftypes: AP/,$p' | awk -F "[()]" '/HE PHY Capabilities/ { print $2 }' | head -1)
|
he_phy_cap=$(iw phy "$phy" info | sed -n '/HE Iftypes: .*AP/,$p' | awk -F "[()]" '/HE PHY Capabilities/ { print $2 }' | head -1)
|
||||||
he_phy_cap=${he_phy_cap:2}
|
he_phy_cap=${he_phy_cap:2}
|
||||||
he_mac_cap=$(iw phy "$phy" info | sed -n '/HE Iftypes: AP/,$p' | awk -F "[()]" '/HE MAC Capabilities/ { print $2 }' | head -1)
|
he_mac_cap=$(iw phy "$phy" info | sed -n '/HE Iftypes: .*AP/,$p' | awk -F "[()]" '/HE MAC Capabilities/ { print $2 }' | head -1)
|
||||||
he_mac_cap=${he_mac_cap:2}
|
he_mac_cap=${he_mac_cap:2}
|
||||||
|
|
||||||
append base_cfg "ieee80211ax=1" "$N"
|
append base_cfg "ieee80211ax=1" "$N"
|
||||||
|
Loading…
Reference in New Issue
Block a user