Make b43 hwrng optional
[openwrt/svn-archive/archive.git] / package / mac80211 / Config.in
1 # mac80211 configuration
2
3 choice
4 prompt "b43 firmware version"
5 depends on PACKAGE_kmod-b43
6 default B43_STABLE
7 help
8 This option allows you to select the version of the b43 firmware.
9
10 config B43_STABLE
11 bool "4.150.10.5 (stable)"
12
13 config B43_EXPERIMENTAL
14 bool "4.178.10.4 (experimental)"
15
16 config B43_OPENFIRMWARE
17 bool "Open FirmWare for WiFi networks"
18
19 endchoice
20
21 config B43_FW_SQUASH
22 bool "Remove unnecessary firmware files"
23 depends on PACKAGE_kmod-b43 && !B43_OPENFIRMWARE
24 help
25 This options allows you to remove unnecessary b43 firmware files
26 from the final rootfs image. This can reduce the rootfs size by
27 up to 200k.
28
29 Do _NOT_ use this option, if you don't know the core revision
30 and/or PHY type of your wireless chip.
31
32 If unsure, say N.
33
34 config B43_FW_SQUASH_COREREVS
35 string "Core revisions to include"
36 depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
37 default "5,6,7,8,9,10"
38 help
39 This is a comma seperated list of core revision numbers.
40 Example (keep files for rev5 only):
41 5
42 Example (keep files for rev5 and rev11):
43 5,11
44
45 config B43_FW_SQUASH_PHYTYPES
46 string "PHY types to include"
47 depends on PACKAGE_kmod-b43 && B43_FW_SQUASH
48 default "G,LP,N"
49 help
50 This is a comma seperated list of PHY types:
51 A => A-PHY
52 AG => Dual A-PHY G-PHY
53 G => G-PHY
54 LP => LP-PHY
55 N => N-PHY
56
57 Example (keep files for G-PHY only):
58 G
59 Example (keep files for G-PHY and N-PHY):
60 G,N
61