Config.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # mac80211 configuration
  2. choice
  3. prompt "b43 firmware version"
  4. depends on PACKAGE_kmod-b43
  5. default B43_STABLE
  6. help
  7. This option allows you to select the version of the b43 firmware.
  8. config B43_STABLE
  9. bool "4.150.10.5 (stable)"
  10. help
  11. Stable firmware for BCM43xx devices.
  12. If unsure, select this.
  13. config B43_EXPERIMENTAL
  14. bool "4.178.10.4 (experimental)"
  15. help
  16. Experimental firmware for BCM43xx devices.
  17. This firmware is not tested as much as the "stable" firmware.
  18. If unsure, select the "stable" firmware.
  19. config B43_OPENFIRMWARE
  20. bool "Open FirmWare for WiFi networks"
  21. help
  22. Opensource firmware for BCM43xx devices.
  23. Do _not_ select this, unless you know what you are doing.
  24. The Opensource firmware is not suitable for embedded devices, yet.
  25. It does not support QoS, which is bad for AccessPoints.
  26. It does not support hardware crypto acceleration, which is a showstopper
  27. for embedded devices with low CPU resources.
  28. If unsure, select the "stable" firmware.
  29. endchoice
  30. config B43_FW_SQUASH
  31. bool "Remove unnecessary firmware files"
  32. depends on PACKAGE_kmod-b43 && !B43_OPENFIRMWARE
  33. help
  34. This options allows you to remove unnecessary b43 firmware files
  35. from the final rootfs image. This can reduce the rootfs size by
  36. up to 200k.
  37. Do _NOT_ use this option, if you don't know the core revision
  38. and/or PHY type of your wireless chip.
  39. If unsure, say N.
  40. config B43_FW_SQUASH_COREREVS
  41. string "Core revisions to include"
  42. depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
  43. default "5,6,7,8,9,10"
  44. help
  45. This is a comma seperated list of core revision numbers.
  46. Example (keep files for rev5 only):
  47. 5
  48. Example (keep files for rev5 and rev11):
  49. 5,11
  50. config B43_FW_SQUASH_PHYTYPES
  51. string "PHY types to include"
  52. depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
  53. default "G,LP,N"
  54. help
  55. This is a comma seperated list of PHY types:
  56. A => A-PHY
  57. AG => Dual A-PHY G-PHY
  58. G => G-PHY
  59. LP => LP-PHY
  60. N => N-PHY
  61. Example (keep files for G-PHY only):
  62. G
  63. Example (keep files for G-PHY and N-PHY):
  64. G,N