Config.in 1.9 KB

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