hostapd only supports either b or g as hwmode configuration variable. If bg is set the scripts transfers it now to g mode.

SVN-Revision: 15182
This commit is contained in:
Hauke Mehrtens 2009-04-09 21:44:30 +00:00
parent 4e49486b3c
commit e2f8f72041

View File

@ -76,6 +76,9 @@ hostapd_setup_vif() {
config_get device "$vif" device
config_get channel "$device" channel
config_get hwmode "$device" hwmode
case "$hwmode" in
bg) hwmode=g;;
esac
config_get country "$device" country
[ "$channel" = auto ] && channel=
[ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode "$device"