0eda184019142be36e0d99b27f20043a24b0a523
[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
37 depends on B43_FW_SQUASH
38 default "5,6,7,8,9,10"
39 help
40 This is a comma seperated list of core revision numbers.
41 Example (keep files for rev5 only):
42 5
43 Example (keep files for rev5 and rev11):
44 5,11
45
46 config B43_FW_SQUASH_PHYTYPES
47 string "PHY types to include"
48 depends on PACKAGE_kmod-b43
49 depends on B43_FW_SQUASH
50 default "G,LP,N"
51 help
52 This is a comma seperated list of PHY types:
53 A => A-PHY
54 AG => Dual A-PHY G-PHY
55 G => G-PHY
56 LP => LP-PHY
57 N => N-PHY
58
59 Example (keep files for G-PHY only):
60 G
61 Example (keep files for G-PHY and N-PHY):
62 G,N
63