1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 14:55:28 +03:00

improve handling of 11a/b/g mode setting. redirect iwconfig channel errors to /dev/null (the command fails at times and needs to be run multiple times, because it's a bit unreliable)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6975 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-04-16 20:59:16 +00:00
parent 3aed7ac36f
commit 6803b04791

View File

@ -99,12 +99,13 @@ enable_atheros() {
*bg) agmode=11g;;
*g) agmode=11g; pureg=1;;
*a) agmode=11a;;
*) agmode=11g;;
*) agmode=auto;;
esac
iwconfig "$ifname" channel 0
iwconfig "$ifname" channel 0 >/dev/null 2>/dev/null
ifconfig "$ifname" up
iwpriv "$ifname" mode "$agmode"
iwpriv "$ifname" pureg "$pureg"
iwconfig "$ifname" channel "$channel"
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
}
config_get_bool hidden "$vif" hidden
@ -181,7 +182,7 @@ enable_atheros() {
fi
ifconfig "$ifname" up
iwconfig "$ifname" channel "$channel"
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
local net_cfg bridge
net_cfg="$(find_net_config "$vif")"