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