aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi/Config.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-10-07 12:50:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-10-07 12:50:15 +0000
commita4329ad3cc5a716bc25ea46f78ad52f6ca4d6073 (patch)
treeb1bd865ddc103600da0e66dbdaf6233a0ae3dd96 /package/madwifi/Config.in
parent5df4ff29731270d24a8ddd67fefcbc630e85ce3d (diff)
downloadupstream-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.tar.gz
upstream-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.tar.bz2
upstream-a4329ad3cc5a716bc25ea46f78ad52f6ca4d6073.zip
move a few unmaintained packages from trunk to /packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33634 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/Config.in')
-rw-r--r--package/madwifi/Config.in55
1 files changed, 0 insertions, 55 deletions
diff --git a/package/madwifi/Config.in b/package/madwifi/Config.in
deleted file mode 100644
index 7b72eb854e..0000000000
--- a/package/madwifi/Config.in
+++ /dev/null
@@ -1,55 +0,0 @@
-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
- 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