diff options
| author | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-06-01 14:32:34 +0000 | 
|---|---|---|
| committer | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-06-01 14:32:34 +0000 | 
| commit | 49d35fc6af0f01b1f423eabed3a34aaefa66e23a (patch) | |
| tree | b93d7ed572ca40e16fa9ed5b353ca79721b3508c /package/hostap-driver/files | |
| parent | c5757539b2ac71eed67f9131affcafe37a137d22 (diff) | |
[hostap-driver] Add diversity option
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16255 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostap-driver/files')
| -rwxr-xr-x | package/hostap-driver/files/lib/wifi/hostap.sh | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/package/hostap-driver/files/lib/wifi/hostap.sh b/package/hostap-driver/files/lib/wifi/hostap.sh index cacc3baa8..0c7a9d37b 100755 --- a/package/hostap-driver/files/lib/wifi/hostap.sh +++ b/package/hostap-driver/files/lib/wifi/hostap.sh @@ -54,9 +54,13 @@ enable_prism2() {  	local device="$1"  	config_get rxantenna "$device" rxantenna -	[ -n "$rxantenna" ] && iwpriv $device antsel_rx "$rxantenna" -  	config_get txantenna "$device" txantenna +	config_get_bool diversity "$device" diversity +	[ -n "$diversity" ] && { +		rxantenna="1" +		txantenna="1" +	} +	[ -n "$rxantenna" ] && iwpriv $device antsel_rx "$rxantenna"  	[ -n "$txantenna" ] && iwpriv $device antsel_tx "$txantenna"  	config_get channel "$device" channel  | 
