summaryrefslogtreecommitdiffstats
path: root/package/b43-firmware/Config.in
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-12-06 12:50:00 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-12-16 01:13:58 +0100
commitcb8efd3b4d94c83aefed6533e20b24961e9d054f (patch)
treee3c21c7baca1aa915b6aadec1694deb3a3e226ff /package/b43-firmware/Config.in
parenta63d01f1564397deb97ee679ab97e0bc60d41541 (diff)
downloadbuildroot-novena-cb8efd3b4d94c83aefed6533e20b24961e9d054f.tar.gz
buildroot-novena-cb8efd3b4d94c83aefed6533e20b24961e9d054f.zip
b43-firmware: new package
This package allows to download the Broadcom Wifi drivers, extract the firmware from them, and install them in /lib/firmware, so that they can be used by the open-source kernel driver b43. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/b43-firmware/Config.in')
-rw-r--r--package/b43-firmware/Config.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/package/b43-firmware/Config.in b/package/b43-firmware/Config.in
new file mode 100644
index 000000000..ab7f4a787
--- /dev/null
+++ b/package/b43-firmware/Config.in
@@ -0,0 +1,25 @@
+config BR2_PACKAGE_B43_FIRMWARE
+ bool "b43-firware"
+ 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