blob: ba9a6c17c0c67d016ce9efd2cb4fb6b9cc3775fd (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
config BR2_PACKAGE_LINUX_FIRMWARE
bool "linux-firmware"
help
This package provides various binary firmware files (closed
binary blobs) for such devices like LAN, WLAN cards etc.
https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
if BR2_PACKAGE_LINUX_FIRMWARE
menu "WiFi firmware"
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_7010
bool "Atheros 7010"
help
Firmware files for the Atheros 7010 module
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9170
bool "Atheros 9170"
help
Firmware files for the Atheros 9170 module
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9271
bool "Atheros 9271"
help
Firmware files for the Atheros 9271 module
config BR2_PACKAGE_LINUX_FIRMWARE_BRCM_BCM43XX
bool "Broadcom BRCM bcm43xx"
help
Firmware files for the Broadcom BRCM bcm43xx
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160
bool "Intel iwlwifi 3160"
help
Firmware files for the Intel Wifi 3160 devices supported by
the iwlwifi kernel driver.
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_5000
bool "Intel iwlwifi 5000"
help
Firmware files for the Intel Wifi 5000 devices supported by
the iwlwifi kernel driver.
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_7260
bool "Intel iwlwifi 7260"
help
Firmware files for the Intel Wifi 7260 devices supported by
the iwlwifi kernel driver.
if BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160 || \
BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_7260
choice
bool "iwlwifi 3160/7260 revision to use"
help
Use revision 7 for kernel 3.10 to 3.12.
Use revision 8 for kernel 3.13 onward.
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
prompt "revision 7"
help
Use revision 7 for kernel 3.10 to 3.12.
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
prompt "revision 8"
help
Use revision 8 for kernel 3.13 onward.
endchoice
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_REV
int
default 7 if BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
default 8 if BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
endif # iwlwifi 3160/7260
config BR2_PACKAGE_LINUX_FIRMWARE_LIBERTAS_SD8686_V8
bool "Libertas SD 8686 v8"
help
Firmware files (version 8) for the Marvell SD8686 module
config BR2_PACKAGE_LINUX_FIRMWARE_LIBERTAS_SD8686_V9
bool "Libertas SD 8686 v9"
help
Firmware files (version 9) for the Marvell SD8686 module
config BR2_PACKAGE_LINUX_FIRMWARE_LIBERTAS_SD8688
bool "Libertas SD 8688"
help
Firmware files for the Marvell SD8688 module
config BR2_PACKAGE_LINUX_FIRMWARE_MWIFIEX_SD8787
bool "Marvell Wifi-Ex SD 8787"
help
Firmware files for the Marvell Wifi-Ex 8787 module on SDIO.
config BR2_PACKAGE_LINUX_FIRMWARE_RALINK_RT61
bool "Ralink rt2501/rt61"
help
Ralink rt2501/rt61
config BR2_PACKAGE_LINUX_FIRMWARE_RALINK_RT73
bool "Ralink rt73"
help
Ralink rt73
config BR2_PACKAGE_LINUX_FIRMWARE_RALINK_RT2XX
bool "Ralink rt27xx/rt28xx/rt30xx"
help
Ralink rt27xx/rt28xx/rt30xx
config BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
bool "Realtek 81xx"
help
Realtek 8188/8192
config BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
bool "Realtek 87xx"
help
Realtek 8712/8723
config BR2_PACKAGE_LINUX_FIRMWARE_TI_WL127X
bool "TI wl127X"
help
Firmware files for WLAN and Bluetooth modules wl1271 and wl1273
config BR2_PACKAGE_LINUX_FIRMWARE_TI_WL128X
bool "TI wl128X"
help
Firmware files for WLAN and Bluetooth modules wl128x
endmenu
menu "Ethernet firmware"
config BR2_PACKAGE_LINUX_FIRMWARE_BNX2X
bool "Broadcom NetXtremeII"
help
Firmware files for Broadcom NetXtreme 10Gb ethernet cards (bnx2x)
config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
bool "Chelsio T4 "
help
Firmware files for Chelsio T4 1Gb and 10Gb ethernet cards (cxgb4)
endmenu
menu "DVB firmware"
config BR2_PACKAGE_LINUX_FIRMWARE_DIB0700
bool "DiBcom dib0700"
help
Firmware file for dib0700-based USB DVB tuner driver
config BR2_PACKAGE_LINUX_FIRMWARE_H5_DRXK
bool "Terratec H5 DRX-K"
help
Firmware file for Terratec H5 DRX-K based DVB tuner driver
config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
bool "Xceive xc5000"
help
Firmware file for xc5000-based DVB tuner driver
endmenu
endif
|