diff options
author | Travis Kemen <thepeople@openwrt.org> | 2007-05-08 01:11:33 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2007-05-08 01:11:33 +0000 |
commit | cae78388d1af6bb494629b1cc45629a15b7f6e5d (patch) | |
tree | 24289485e22cbf8175a0831e59d6be5bd6b22ae2 | |
parent | 4463c16036d76e853b6949a397cfca1228b20c07 (diff) | |
download | upstream-cae78388d1af6bb494629b1cc45629a15b7f6e5d.tar.gz upstream-cae78388d1af6bb494629b1cc45629a15b7f6e5d.tar.bz2 upstream-cae78388d1af6bb494629b1cc45629a15b7f6e5d.zip |
add isolate closes #1636
SVN-Revision: 7133
-rwxr-xr-x | package/madwifi/files/lib/wifi/madwifi.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/madwifi/files/lib/wifi/madwifi.sh b/package/madwifi/files/lib/wifi/madwifi.sh index 69230a71f1..3e8df9ded4 100755 --- a/package/madwifi/files/lib/wifi/madwifi.sh +++ b/package/madwifi/files/lib/wifi/madwifi.sh @@ -194,6 +194,9 @@ enable_atheros() { iwconfig "$ifname" essid "$ssid" case "$mode" in ap) + config_get_bool isolate "$vif" isolate 0 + iwpriv "$ifname" ap_bridge "$isolate" + if eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then hostapd_setup_vif "$vif" madwifi || { echo "enable_atheros($device): Failed to set up wpa for interface $ifname" >&2 |