blob: 4c3461a67f4acdfb6b1c61c489150ede474542ad (
plain) (
blame)
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
|
config BCMDHD
tristate "Broadcom 4329/30 wireless cards support"
depends on MMC
---help---
This module adds support for wireless adapters based on
Broadcom 4329/30 chipset.
This driver uses the kernel's wireless extensions subsystem.
If you choose to build a module, it'll be called dhd. Say M if
unsure.
config BCMDHD_FW_DIR
depends on BCMDHD
string "Firmware path"
default "/system/vendor/firmware"
---help---
Path to the firmware file.
config BCMDHD_NVRAM_DIR
depends on BCMDHD
string "NVRAM path"
default "/system/etc"
---help---
Path to the calibration file.
choice
prompt "Select API"
depends on BCMDHD
default BCMDHD_NOAPI
config BCMDHD_WEXT
bool "Enable WEXT support"
select WIRELESS_EXT
select WEXT_PRIV
help
Enables WEXT support
config BCMDHD_CFG80211
bool "Enable CFG80211 support"
depends on CFG80211
help
Enables CFG80211 support
config BCMDHD_NOAPI
bool "No wireless API"
help
No wireless API is needed
endchoice
config BCMDHD_WIFI_CONTROL_FUNC
bool "Use bcmdhd_wlan device"
depends on BCMDHD
default n
---help---
Use this option to get various parameters from architecture specific
bcmdhd_wlan platform device. Say n if unsure.
config BCMDHD_HW_OOB
bool "Use out of band interrupt"
depends on BCMDHD
default n
---help---
Use out of band interrupt for card interrupt and wake on wireless.
config BCMDHD_CSCAN_ENABLE
bool "Enable Combo Scan"
depends on BCMDHD
default n
---help---
Enable Combo Scan
config BCMDHD_INSMOD_NO_FW_LOAD
bool "Enable delayed firmware load"
depends on BCMDHD
default n
---help---
Enable delayes firmware
|