Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. config B43_EXPERIMENTAL
  11. bool "4.178.10.4 (experimental)"
  12. config B43_OPENFIRMWARE
  13. bool "Open FirmWare for WiFi networks"
  14. endchoice
  15. config B43_FW_SQUASH
  16. bool "Remove unnecessary firmware files"
  17. depends on PACKAGE_kmod-b43 && !B43_OPENFIRMWARE
  18. help
  19. This options allows you to remove unnecessary b43 firmware files
  20. from the final rootfs image. This can reduce the rootfs size by
  21. up to 200k.
  22. Do _NOT_ use this option, if you don't know the core revision
  23. and/or PHY type of your wireless chip.
  24. If unsure, say N.
  25. config B43_FW_SQUASH_COREREVS
  26. string "Core revisions to include"
  27. depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
  28. default "5,6,7,8,9,10"
  29. help
  30. This is a comma seperated list of core revision numbers.
  31. Example (keep files for rev5 only):
  32. 5
  33. Example (keep files for rev5 and rev11):
  34. 5,11
  35. config B43_FW_SQUASH_PHYTYPES
  36. string "PHY types to include"
  37. depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
  38. default "G,LP,N"
  39. help
  40. This is a comma seperated list of PHY types:
  41. A => A-PHY
  42. AG => Dual A-PHY G-PHY
  43. G => G-PHY
  44. LP => LP-PHY
  45. N => N-PHY
  46. Example (keep files for G-PHY only):
  47. G
  48. Example (keep files for G-PHY and N-PHY):
  49. G,N