parse the a/g mode setting in /etc/config/wireless when setting up hostapd (instead of hardcoding it to g)

SVN-Revision: 12673
v19.07.3_mercusys_ac12_duma
Felix Fietkau 16 years ago
parent 065306a9a8
commit 69692e019a

@ -74,10 +74,17 @@ hostapd_setup_vif() {
config_get ssid "$vif" ssid
config_get device "$vif" device
config_get channel "$device" channel
config_get agmode "$device" agmode
case "$agmode" in
11a) agmode=a;;
11b) agmode=b;;
11g) agmode=g;;
*) agmode=;;
esac
cat > /var/run/hostapd-$ifname.conf <<EOF
driver=$driver
interface=$ifname
hw_mode=g
hw_mode=${agmode:-g}
channel=$channel
${bridge:+bridge=$bridge}
ssid=$ssid

Loading…
Cancel
Save