c4d4b43399
We have quite a few packages that are dedicated to providing firmwares for miscellanous devices. Those package are spread out in the big "Hradware handling" menu, so are a bit hard to find. Move all those packages to their own sub-menu: Package Selection for the target ---> Hardware handling ---> Firmwares ---> [ ] b43-firware [ ] linux-firmware [ ] ux500-firmware Hopefully, this will make it nicer, when new firmware-providing packages are added in the future (eg. in the pipe: firmware for the RPI GPU). Fix a typo in the 'b43-firmware' prompt (missing 'm'). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26 lines
558 B
Plaintext
26 lines
558 B
Plaintext
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
|