blob: 5166800741c89c7f4b50d72248286f2f8c23caca (
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
  | 
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 "Atheros"
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_7010
	bool "Atheros 7010"
	help
	  Firmware files for the Atheros 7010 module
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9271
	bool "Atheros 9271"
	help
	  Firmware files for the Atheros 9271 module
endmenu
menu "Ralink"
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
endmenu
menu "Texas Instruments"
config BR2_PACKAGE_LINUX_FIRMWARE_TI_WL127X
	bool "wl127X"
	help
	  Firmware files for WLAN and Bluetooth modules wl1271 and wl1273
config BR2_PACKAGE_LINUX_FIRMWARE_TI_WL128X
	bool "wl128X"
	help
	  Firmware files for WLAN and Bluetooth modules wl128x
endmenu
endif
  |