Config.in 554 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_B43_FIRMWARE
  2. bool "b43-firmware"
  3. help
  4. Firmware for the Broadcom Wifi devices supported by the b43
  5. kernel driver.
  6. if BR2_PACKAGE_B43_FIRMWARE
  7. choice
  8. prompt "Kernel version"
  9. default BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2
  10. help
  11. Select the kernel version you're using. The b43 driver in
  12. kernel >= 3.2 need a different firmware than the b43 drivers
  13. from kernel < 3.2.
  14. config BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2
  15. bool ">= 3.2"
  16. config BR2_PACKAGE_B43_FIRMWARE_KERNEL_BEFORE_3_2
  17. bool "< 3.2"
  18. endchoice
  19. endif