214cc34276184bae0f072907bed03857a8de01ea
[15.05/openwrt.git] / package / madwifi / Config.in
1 # MadWifi configuration
2
3 config MADWIFI_DEBUG
4         bool "Enable compilation of debugging features"
5         depends on DEVEL && PACKAGE_kmod-madwifi
6         default n
7
8 config MADWIFI_COMPRESSION
9         bool "Enable Atheros Super A/G Compression"
10         depends on PACKAGE_kmod-madwifi
11         depends !TARGET_ar71xx
12         default n
13         help
14           Enables Atheros Super A/G Hardware Compression Engine.
15
16 choice
17         prompt "Madwifi version"
18         depends on PACKAGE_kmod-madwifi
19         default MADWIFI_STABLE
20         help
21           This option allows you to select the version of MadWifi to be built.
22
23 config MADWIFI_STABLE
24         bool "Use the OpenWrt stable version of madwifi"
25
26 endchoice
27
28 config MADWIFI_SINGLE_MODULE
29         bool "Combine driver and net80211 into a single module"
30         depends on PACKAGE_kmod-madwifi
31         default y
32         help
33           This option combines all driver and stack related code (except for HAL)
34           into a single module, thus saving space and removing unnecessary kernel
35           exports
36
37 choice
38         prompt "Rate control algorithm selection"
39         depends on PACKAGE_kmod-madwifi
40         default MADWIFI_RCA_MINSTREL
41         help
42           This option controls how MadWifi chooses its bitrate.
43
44 config MADWIFI_RCA_MINSTREL
45         bool "Use the Minstrel rate control algorithm"
46         help
47           This code is takes a wandering minstrel approach. Wander around the
48           different rates, singing wherever you can. And then, look at the
49           performance, and make a choice. Note that the wandering minstrel will
50           always wander in directions where he/she feels he/she will get paid
51           the best for his/her work.
52
53 config MADWIFI_RCA_SAMPLERATE
54         bool "Use the SampleRate rate control algorithm"
55         help
56           SampleRate decides on the transmission bit-rate based on the past
57           history of performance; it keeps a record of the number of successive
58           failures, the number of successful transmits and the total transmission
59           time along with the destination for that bit-rate. Stale samples are
60           removed based on a EWMA windowing mechanism. If in the sampling
61           process, no successful acknowledgment is received or the number of
62           packets sent is multiple of 10 on a specific link, it transmits the
63           packet with the highest rate which has not failed 4 successive times.
64           Other than that it transmits packets at the rate which has the lowest
65           average transmission time.
66
67 endchoice