blob: 802e52a663dfef426225ce76021dfca57acd3eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# MadWifi configuration
config MADWIFI_DEBUG
bool "Enable compilation of debugging features"
depends on DEVEL && PACKAGE_kmod-madwifi
default n
config MADWIFI_COMPRESSION
bool "Enable Atheros Super A/G Compression"
depends on PACKAGE_kmod-madwifi
depends !TARGET_ar71xx
default n
help
Enables Atheros Super A/G Hardware Compression Engine.
choice
prompt "Madwifi version"
depends on PACKAGE_kmod-madwifi
default MADWIFI_STABLE
help
This option allows you to select the version of MadWifi to be built.
config MADWIFI_STABLE
bool "Use the OpenWrt stable version of madwifi"
config MADWIFI_UPSTREAM
depends BROKEN
depends !TARGET_atheros
bool "Use the upstream release version 0.9.4"
endchoice
config MADWIFI_SINGLE_MODULE
bool "Combine driver and net80211 into a single module"
depends on PACKAGE_kmod-madwifi
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"
depends on PACKAGE_kmod-madwifi
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
|