diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-09-23 18:18:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-09-23 18:18:21 +0000 |
commit | 69692e019a06c29b9146b2658420c8f50f863519 (patch) | |
tree | 9451efff442e8d2e24a8218e35634a51d7a64a2a /package/hostapd | |
parent | 065306a9a8ac22f4bed6f84ab4a355628e52d7c6 (diff) | |
download | upstream-69692e019a06c29b9146b2658420c8f50f863519.tar.gz upstream-69692e019a06c29b9146b2658420c8f50f863519.tar.bz2 upstream-69692e019a06c29b9146b2658420c8f50f863519.zip |
parse the a/g mode setting in /etc/config/wireless when setting up hostapd (instead of hardcoding it to g)
SVN-Revision: 12673
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 49b30cfd57..7a67cec949 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -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 |