1config 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 7if BR2_PACKAGE_B43_FIRMWARE 8 9choice 10 prompt "Kernel version" 11 default BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2 12 help 13 Select the kernel version you're using. The b43 driver in 14 kernel >= 3.2 need a different firmware than the b43 drivers 15 from kernel < 3.2. 16 17config BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2 18 bool ">= 3.2" 19 20config BR2_PACKAGE_B43_FIRMWARE_KERNEL_BEFORE_3_2 21 bool "< 3.2" 22 23endchoice 24 25endif 26