hostapd expects basic_rates list to be space separated and in 100kbit/s units. --- package/network/services/hostapd/files/netifd.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh index c8518b4..2e8e045 100644 --- a/package/network/services/hostapd/files/netifd.sh +++ b/package/network/services/hostapd/files/netifd.sh @@ -1,9 +1,7 @@ hostapd_add_rate() { local var="$1" - local val="$(($2 / 1000))" - local sub="$((($2 / 100) % 10))" - append $var "$val" "," - [ $sub -gt 0 ] && append $var "." + local val="$(($2 / 100))" + append $var "$val" " " } hostapd_append_wep_key() { -- 1.8.5.3 _______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel