[package] kernel: add missing AddDepends calls for kmod-usb-serial-qualcomm and kmod...
[openwrt.git] / package / madwifi / Config.in
index 168f1e7..7b72eb8 100644 (file)
@@ -1,10 +1,55 @@
-config PACKAGE_KMOD_MADWIFI
-       prompt "kmod-madwifi...................... Atheros Wifi driver"
-       tristate
-       default y if LINUX_2_6_BRCM || LINUX_2_6_ARUBA || LINUX_2_4_AR531X || LINUX_2_6_XSCALE
-       default m if DEVEL
+menu "Configuration"
+       depends on PACKAGE_kmod-madwifi
+
+config MADWIFI_DEBUG
+       bool "Enable compilation of debugging features"
+       depends on DEVEL
        default n
+
+config MADWIFI_COMPRESSION
+       bool "Enable Atheros Super A/G Compression"
+       depends !TARGET_ar71xx
+       default n
+       help
+         Enables Atheros Super A/G Hardware Compression Engine.
+
+config MADWIFI_SINGLE_MODULE
+       bool "Combine driver and net80211 into a single module"
+       default y
+       help
+         This option combines all driver and stack related code (except for HAL)
+         into a single module, thus saving space and removing unnecessary kernel
+         exports
+
+choice
+       prompt "Rate control algorithm selection"
+       default MADWIFI_RCA_MINSTREL
+       help
+         This option controls how MadWifi chooses its bitrate.
+
+config MADWIFI_RCA_MINSTREL
+       bool "Use the Minstrel rate control algorithm"
+       help
+         This code is takes a wandering minstrel approach. Wander around the
+         different rates, singing wherever you can. And then, look at the
+         performance, and make a choice. Note that the wandering minstrel will
+         always wander in directions where he/she feels he/she will get paid
+         the best for his/her work.
+
+config MADWIFI_RCA_SAMPLERATE
+       bool "Use the SampleRate rate control algorithm"
        help
-         Driver for Atheros 802.11a/b/g MiniPCI cards
-         
-         http://www.madwifi.org/
+         SampleRate decides on the transmission bit-rate based on the past
+         history of performance; it keeps a record of the number of successive
+         failures, the number of successful transmits and the total transmission
+         time along with the destination for that bit-rate. Stale samples are
+         removed based on a EWMA windowing mechanism. If in the sampling
+         process, no successful acknowledgment is received or the number of
+         packets sent is multiple of 10 on a specific link, it transmits the
+         packet with the highest rate which has not failed 4 successive times.
+         Other than that it transmits packets at the rate which has the lowest
+         average transmission time.
+
+endchoice
+
+endmenu
This page took 0.031465 seconds and 4 git commands to generate.