add new broadcom system code and new wlan driver (old driver still used by default)
[openwrt.git] / target / linux / Config.in
1 choice
2         prompt "Target system"
3         
4 config BR2_LINUX_2_4_BRCM
5         bool "Support for Broadcom based routers [2.4]"
6         default y
7         depends BR2_mipsel
8         help
9           Build firmware images for Broadcom based routers
10           (e.g. Linksys WRT54G(S), Asus WL-500g, Motorola WR850G)
11           
12           This one builds the generic .trx images, activate one of the
13           options below for creating device specific files for use 
14           with TFTP client too. 
15
16 config BR2_LINUX_2_4_AR7
17         bool "Support for TI AR7 based devices [2.4]"
18         default n
19         depends BR2_mipsel
20         help
21           Build firmware images for TI AR7 based routers (w.g. Linksys WAG54G v2)
22
23 config BR2_LINUX_2_4_X86
24         bool "Support for x86 boards [2.4]"
25         default n
26         depends BR2_i386
27         help
28           Build firmware images for x86 based boards
29           (e.g. Soekris net4521 and net4801, PC Engines WRAP...)
30
31 config BR2_LINUX_2_6_BRCM
32         bool "Support for Broadcom based routers [2.6]"
33         default n
34         depends BR2_mipsel
35         help
36           Build firmware images for Broadcom based routers
37           (e.g. Netgear WGT634u)
38
39 config BR2_LINUX_2_6_X86
40         bool "Support for x86 boards [2.6]"
41         default n
42         depends BR2_i386
43         help
44           Build firmware images for x86 based boards
45           (e.g. Soekris net4521 and net4801, PC Engines WRAP...)
46
47 endchoice
48         
49 comment "Device specific modules"
50
51 config BR2_PACKAGE_KMOD_BRCM_ET
52         prompt "kmod-brcm-et...................... Broadcom Ethernet Driver"
53         tristate
54         depends BR2_LINUX_2_4_BRCM
55         default y
56         help
57           Proprietary driver for Broadcom Ethernet chipsets
58
59 config BR2_PACKAGE_KMOD_BRCM_WL
60         prompt "kmod-brcm-wl...................... Broadcom Wireless Network Driver"
61         tristate
62         depends BR2_LINUX_2_4_BRCM
63         default y
64         help
65           Proprietary driver for Broadcom Wireless chipsets
66
67 config BR2_PACKAGE_KMOD_BRCM_WL2
68         prompt "kmod-brcm-wl2..................... Broadcom Wireless Network Driver (new)"
69         tristate
70         depends BR2_LINUX_2_4_BRCM
71         default m
72         help
73           Proprietary driver for Broadcom Wireless chipsets
74           New version with Multi-BSS capability
75
76 config BR2_PACKAGE_KMOD_CPMAC
77         prompt "kmod-cpmac........................ AR7 CPMAC Network Driver"
78         tristate
79         default y
80         depends BR2_LINUX_2_4_AR7
81         help
82           Driver for the AR7 CPMAC network chip
83
84 config BR2_PACKAGE_KMOD_SANGAM_ATM_A
85         prompt "kmod-sangam-atm-annex-a........... AR7 Sangam ADSL Driver (Annex A)"
86         tristate
87         default m
88         depends BR2_LINUX_2_4_AR7
89         select BR2_PACKAGE_KMOD_ATM
90         help
91           ATM driver for the Sangam ADSL chip on AR7
92           Annex A version
93
94 config BR2_PACKAGE_KMOD_SANGAM_ATM_B
95         prompt "kmod-sangam-atm-annex-b........... AR7 Sangam ADSL Driver (Annex B)"
96         tristate
97         default y
98         depends BR2_LINUX_2_4_AR7
99         select BR2_PACKAGE_KMOD_ATM
100         help
101           ATM driver for the Sangam ADSL chip on AR7
102           Annex B version
103
104 comment "Networking modules"
105
106 config BR2_PACKAGE_KMOD_ATM
107         prompt "kmod-atm.......................... ATM support"
108         tristate
109         default y if BR2_LINUX_2_4_AR7
110         help
111           ATM support
112
113 config BR2_PACKAGE_KMOD_GRE
114         prompt "kmod-gre.......................... GRE tunneling driver"
115         tristate
116         default m
117         help
118           Kernel support for GRE tunnels
119
120 config BR2_PACKAGE_KMOD_IPV6
121         prompt "kmod-ipv6......................... IPv6 support"
122         tristate
123         default m
124         help
125           Kernel modules for IPv6 protocol support
126
127 config BR2_PACKAGE_KMOD_PPP
128         prompt "kmod-ppp.......................... PPP support"
129         tristate
130         default m
131         help
132           Kernel support for PPP
133
134 config BR2_PACKAGE_KMOD_MPPE
135         prompt   "kmod-mppe....................... PPP MPPE/MPPC module"
136         tristate
137         default m
138         depends BR2_PACKAGE_KMOD_PPP
139         select BR2_PACKAGE_KMOD_CRYPTO
140         help
141           Support for Microsoft PPP Encryption/Compression
142
143 config BR2_PACKAGE_KMOD_PPPOATM
144         prompt   "kmod-pppoatm.................... PPPoA (PPP over ATM) kernel support"
145         tristate
146         default y if BR2_LINUX_2_4_AR7
147         default m
148         depends BR2_PACKAGE_KMOD_PPP
149         select BR2_PACKAGE_KMOD_ATM
150         help
151           Support for PPP over ATM
152
153 config BR2_PACKAGE_KMOD_PPPOE
154         prompt   "kmod-pppoe...................... PPPoE (PPP over Ethernet) kernel support"
155         tristate
156         default m
157         depends BR2_PACKAGE_KMOD_PPP
158         help
159           Support for PPP over Ethernet
160
161 config BR2_PACKAGE_KMOD_SCHED
162         prompt "kmod-sched........................ Traffic schedulers"
163         tristate
164         default m
165         help
166           Kernel schedulers for IP traffic
167
168 config BR2_PACKAGE_KMOD_TUN
169         prompt "kmod-tun.......................... Universal TUN/TAP driver"
170         tristate
171         default m
172         help
173           Kernel support for the TUN/TAP tunneling device
174
175 comment "Filtering/Firewalling"
176
177 config BR2_PACKAGE_KMOD_ARPTABLES
178         prompt "kmod-arptables.................... ARP firewalling support"
179         tristate
180         default m
181         help
182           Kernel modules for ARP firewalling
183
184 config BR2_PACKAGE_KMOD_EBTABLES
185         prompt "kmod-ebtables..................... Ethernet Bridge firewalling support"
186         tristate
187         default m
188         help
189           Kernel modules for bridge firewalling
190
191 config BR2_PACKAGE_KMOD_IPTABLES_V4
192         prompt "kmod-iptables..................... Basic set of kernel modules for iptables"
193         tristate
194         default y
195         help
196           Kernel modules for IPv4 firewalling
197
198 config BR2_PACKAGE_KMOD_IPTABLES_V4_EXTRA
199         prompt "kmod-iptables-extra............... Extra modules for iptables"
200         tristate
201         default m
202         help
203           Extra kernel modules for IPv4 firewalling
204
205 config BR2_PACKAGE_KMOD_IPTABLES_V6
206         prompt "kmod-ip6tables.................... Kernel modules for ip6tables"
207         tristate
208         default m
209         depends BR2_PACKAGE_KMOD_IPV6
210         help
211           IPv6 firewalling support
212
213 comment "Block devices support"
214
215 config BR2_PACKAGE_KMOD_IDE
216         prompt "kmod-ide.......................... IDE support"
217         tristate
218         default m
219         help
220           Kernel modules for IDE support
221           useful for usb mass storage devices (e.g. on WL-HDD)
222
223 config BR2_PACKAGE_KMOD_LOOP
224         prompt "kmod-loop......................... Loop mount support"
225         tristate
226         default m
227         help
228           Kernel module for loop mount support
229
230 config BR2_PACKAGE_KMOD_NBD
231         prompt "kmod-nbd.......................... Network Block Device"
232         tristate
233         default m
234         help
235           Kernel module for network block device
236
237 comment "Cryptographic support"
238
239 config BR2_PACKAGE_KMOD_CRYPTO
240         prompt "kmod-crypto....................... CryptoAPI modules"
241         tristate
242         default m
243         select BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE
244         help
245           Kernel modules for cryptographic algorithms
246
247 comment "Filesystems support"
248
249 config BR2_PACKAGE_KMOD_CIFS
250         prompt "kmod-fs-cifs...................... CIFS support"
251         tristate
252         default m
253         help
254           Kernel modules for CIFS support
255
256 config BR2_PACKAGE_KMOD_FS_EXT2
257         prompt "kmod-fs-ext2...................... EXT2 filesystem support"
258         tristate
259         default m
260         help
261           Kernel modules for EXT2 filesystem support
262
263 config BR2_PACKAGE_KMOD_FS_EXT3
264         prompt "kmod-fs-ext3...................... EXT3 filesystem support"
265         tristate
266         default m
267         help
268           Kernel modules for EXT3 filesystem support
269
270 config BR2_PACKAGE_KMOD_FS_HFSPLUS
271         prompt "kmod-fs-hfsplus................... HFS+ filesystem support"
272         tristate
273         default m
274         help
275           Kernel modules for HFS+ filesystem support
276
277 config BR2_PACKAGE_KMOD_FS_NFS
278         prompt "kmod-fs-nfs....................... NFS support"
279         tristate
280         default m
281         help
282           Kernel modules for NFS support
283           Includes lockd, nfs and sunrpc
284
285 config BR2_PACKAGE_KMOD_FS_VFAT
286         prompt "kmod-fs-vfat...................... VFAT filesystem support"
287         tristate
288         default m
289         help
290           Kernel modules for VFAT filesystem support
291           useful for usb mass storage devices
292
293 config BR2_PACKAGE_KMOD_FS_XFS
294         prompt "kmod-fs-xfs....................... XFS filesystem support"
295         tristate
296         default m
297         help
298           Kernel modules for XFS filesystem support
299
300 comment "Multimedia devices support"
301
302 config BR2_PACKAGE_KMOD_PWC
303         prompt "kmod-pwc.......................... Kernel driver for USB Philips Cameras"
304         tristate
305         default m
306
307 config BR2_PACKAGE_KMOD_SOUNDCORE
308         prompt "kmod-soundcore.................... Soundcard support"
309         tristate
310         default n
311         help
312           Base support for soundcards
313           Requires either USB soundcard support (OSS) or ALSA package to be useful
314
315 config BR2_PACKAGE_KMOD_VIDEODEV
316         prompt "kmod-videodev..................... Video (For Linux) kernel support"
317         tristate
318         default m
319
320 comment "Native Language support"
321
322 config BR2_PACKAGE_KMOD_NLS_BASE
323         prompt "kmod-nls-base..................... Native Language support"
324         tristate
325         default m
326         help
327           Kernel native language support
328
329 config BR2_PACKAGE_KMOD_NLS_CP437
330         prompt   "kmod-nls-cp437.................. Codepage 437 (United States, Canada)"
331         tristate
332         default m
333         depends BR2_PACKAGE_KMOD_NLS_BASE
334         help
335           Kernel native language support
336
337 config BR2_PACKAGE_KMOD_NLS_CP850
338         prompt   "kmod-nls-cp850.................. Codepage 850 (Europe)"
339         tristate
340         default m
341         depends BR2_PACKAGE_KMOD_NLS_BASE
342         help
343           Kernel native language support
344
345 config BR2_PACKAGE_KMOD_NLS_ISO8859_1
346         prompt   "kmod-nls-iso8859-1.............. NLS ISO 8859-1 (Latin 1; Western European Languages)"
347         tristate
348         default m
349         depends BR2_PACKAGE_KMOD_NLS_BASE
350         help
351           Kernel native language support
352
353 config BR2_PACKAGE_KMOD_NLS_ISO8859_15
354         prompt   "kmod-nls-iso8859-15............. NLS ISO 8859-15 (Latin 15; Western European Languages with Euro)"
355         tristate
356         default m
357         depends BR2_PACKAGE_KMOD_NLS_BASE
358         help
359           Kernel native language support
360
361 config BR2_PACKAGE_KMOD_NLS_UTF8
362         prompt   "kmod-nls-utf8................... NLS UTF8"
363         tristate
364         default m
365         depends BR2_PACKAGE_KMOD_NLS_BASE
366         help
367           Kernel native language support
368
369 comment "Network devices support"
370
371 config BR2_PACKAGE_KMOD_NET_3C59X
372         prompt "kmod-net-3C59x.................... 3Com 3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" Ethernet kernel support"
373         tristate
374         default m
375         help
376           This option enables driver support for a large number of 10mbps and 
377           10/100mbps EISA, PCI and PCMCIA 3Com network cards:
378           
379            * "Vortex"    (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
380            * "Boomerang" (EtherLink XL 3c900 or 3c905)            PCI
381            * "Cyclone"   (3c540/3c900/3c905/3c980/3c575/3c656)    PCI and Cardbus
382            * "Tornado"   (3c905)                                  PCI
383            * "Hurricane" (3c555/3cSOHO)                           PCI
384
385 config BR2_PACKAGE_KMOD_NET_8139TOO
386         prompt "kmod-net-8139too.................. RealTek RTL-8139 PCI Fast Ethernet Adapter kernel support"
387         tristate
388         default m
389         help
390           This is a driver for the Fast Ethernet PCI network cards based on 
391           the RTL8139 chips.
392
393 config BR2_PACKAGE_KMOD_NET_AIRO
394         prompt "kmod-net-airo..................... Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards kernel support"
395         tristate
396         default m
397         help
398           This is the standard Linux driver to support Cisco/Aironet ISA and 
399           PCI 802.11 wireless cards.
400           It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X 
401           - with or without encryption) as well as card before the Cisco 
402           acquisition (Aironet 4500, Aironet 4800, Aironet 4800B).
403           
404           This driver support both the standard Linux Wireless Extensions 
405           and Cisco proprietary API, so both the Linux Wireless Tools and the 
406           Cisco Linux utilities can be used to configure the card.
407
408 config BR2_PACKAGE_KMOD_E100
409         prompt "kmod-net-e100..................... Intel(R) PRO/100+ cards kernel support"
410         tristate
411         default m
412         help
413           Intel(R) PRO/100+ cards kernel support
414
415 config BR2_PACKAGE_KMOD_B44
416         prompt "kmod-net-b44...................... Broadcom 44XX, 47XX ethernet driver"
417         tristate
418         default m
419         default y if BR2_LINUX_2_6_BRCM
420         help
421           Free driver for Broadcom Ethernet chipsets (without switch support)
422
423 config BR2_PACKAGE_KMOD_NET_HERMES
424         prompt "kmod-net-hermes................... Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) kernel support"
425         tristate
426         default m
427         help
428           A driver for 802.11b wireless cards based based on the "Hermes" or 
429           Intersil HFA384x (Prism 2) MAC controller.  This includes the vast 
430           majority of the PCMCIA 802.11b cards (which are nearly all rebadges) 
431           - except for the Cisco/Aironet cards.  Cards supported include the 
432           Apple Airport (not a PCMCIA card), WavelanIEEE/Orinoco, 
433           Cabletron/EnteraSys Roamabout, ELSA AirLancer, MELCO Buffalo, Avaya, 
434           IBM High Rate Wireless, Farralon Syyline, Samsung MagicLAN, Netgear 
435           MA401, LinkSys WPC-11, D-Link DWL-650, 3Com AirConnect, Intel 
436           PRO/Wireless, and Symbol Spectrum24 High Rate amongst others.
437
438 config BR2_PACKAGE_KMOD_NET_HERMES_PCI
439         prompt   "kmod-net-hermes-pci............. Intersil Prism 2.5 PCI 802.11b adaptor support"
440         tristate
441         default m
442         depends BR2_PACKAGE_KMOD_NET_HERMES
443         help
444           Enable support for PCI and mini-PCI 802.11b wireless NICs based on 
445           the Prism 2.5 chipset.  These are true PCI cards, not the 802.11b 
446           PCMCIA cards bundled with PCI<->PCMCIA adaptors which are also 
447           common.  Some of the built-in wireless adaptors in laptops are of 
448           this variety.
449
450 config BR2_PACKAGE_KMOD_NET_HERMES_PLX
451         prompt   "kmod-net-hermes-plx............. Hermes in PLX9052 based PCI adaptor (Netgear MA301, etc.) kernel support"
452         tristate
453         default m
454         depends BR2_PACKAGE_KMOD_NET_HERMES
455         help
456           Enable support for PCMCIA cards supported by the "Hermes" (aka 
457           orinoco_cs) driver when used in PLX9052 based PCI adaptors.  These 
458           adaptors are not a full PCMCIA controller but act as a more limited 
459           PCI <-> PCMCIA bridge.  Several vendors sell such adaptors so that 
460           802.11b PCMCIA cards can be used in desktop machines.  The Netgear 
461           MA301 is such an adaptor.
462
463 config BR2_PACKAGE_KMOD_NET_NATSEMI
464         prompt "kmod-net-natsemi.................. National Semiconductor DP8381x series PCI Ethernet kernel support"
465         tristate
466         default m
467         help
468           This driver is for the National Semiconductor DP83810 series, 
469           which is used in cards from PureData, NetGear, Linksys 
470           and others, including the 83815 chip.
471
472 config BR2_PACKAGE_KMOD_NET_PRISM54
473         prompt "kmod-net-prism54.................. Intersil Prism GT/Duette/Indigo PCI/PCMCIA cards kernel support"
474         tristate
475         default m
476         help
477           Enable PCI and Cardbus support for the following chipset based cards: 
478           
479            * ISL3880 - Prism GT       802.11 b/g
480            * ISL3877 - Prism Indigo   802.11 a
481            * ISL3890 - Prism Duette   802.11 a/b/g
482           
483           For a complete list of supported cards visit <http://prism54.org>.
484           Here is the latest confirmed list of supported cards: 
485           
486            * 3com OfficeConnect 11g Cardbus Card aka 3CRWE154G72
487            * Allnet ALL0271 PCI Card
488            * Compex WL54G Cardbus Card
489            * Corega CG-WLCB54GT Cardbus Card
490            * D-Link Air Plus Xtreme G A1 Cardbus Card aka DWL-g650
491            * I-O Data WN-G54/CB Cardbus Card
492            * Kobishi XG-300 aka Z-Com Cardbus Card
493            * Netgear WG511 Cardbus Card
494            * Ovislink WL-5400PCI PCI Card
495            * Peabird WLG-PCI PCI Card
496            * Sitecom WL-100i Cardbus Card
497            * Sitecom WL-110i PCI Card
498            * SMC2802W - EZ Connect g 2.4GHz 54 Mbps Wireless PCI Card
499            * SMC2835W - EZ Connect g 2.4GHz 54 Mbps Wireless Cardbus Card
500            * Z-Com XG-900 PCI Card
501            * Zyxel G-100 Cardbus Card
502           
503           If you enable this, you require a firmware file as well.
504           You will need to copy this to /usr/lib/hotplug/firmware/isl3890.
505           You can get this non-GPL'd firmware file from the Prism54 project page: 
506           <http://prism54.org>.
507           
508           Note: You need a motherboard with DMA support to use any of these cards.
509
510 comment "PCMCIA/CardBus support"
511
512 config BR2_PACKAGE_KMOD_PCMCIA_CORE
513         prompt "kmod-pcmcia-core.................. PCMCIA/CardBus support"
514         tristate
515         default m
516
517 comment "USB support"
518
519 config BR2_PACKAGE_KMOD_USB
520         prompt "kmod-usb-core..................... USB support"
521         tristate
522         default m
523
524 config BR2_PACKAGE_KMOD_USB_UHCI
525         prompt   "kmod-usb-uhci................... Support for UHCI controllers"
526         tristate
527         default m
528         depends BR2_PACKAGE_KMOD_USB
529         select BR2_PACKAGE_KMOD_USB_CONTROLLER
530
531 config BR2_PACKAGE_KMOD_USB_OHCI
532         prompt   "kmod-usb-ohci................... Support for OHCI controllers"
533         tristate
534         default m
535         depends BR2_PACKAGE_KMOD_USB
536         select BR2_PACKAGE_KMOD_USB_CONTROLLER
537
538 config BR2_PACKAGE_KMOD_USB2
539         prompt   "kmod-usb2....................... Support for USB 2.0 controllers"
540         tristate
541         default m
542         depends BR2_PACKAGE_KMOD_USB
543         select BR2_PACKAGE_KMOD_USB_CONTROLLER
544
545 config BR2_PACKAGE_KMOD_USB_CONTROLLER
546         tristate
547         depends on BR2_PACKAGE_KMOD_USB_UHCI || BR2_PACKAGE_KMOD_USB_OHCI || BR2_PACKAGE_KMOD_USB2
548         default n
549
550 config BR2_PACKAGE_KMOD_USB_ACM
551         prompt "kmod-usb-acm...................... Support for USB modems/isdn controllers"
552         tristate
553         default m
554         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
555
556 config BR2_PACKAGE_KMOD_USB_AUDIO
557         prompt "kmod-usb-audio.................... Support for USB soundcards"
558         tristate
559         default m
560         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
561         select BR2_PACKAGE_KMOD_SOUNDCORE
562
563 config BR2_PACKAGE_KMOD_USB_PRINTER
564         prompt "kmod-usb-printer.................. Support for USB printers"
565         tristate
566         default m
567         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
568
569 config BR2_PACKAGE_KMOD_USB_SERIAL
570         prompt "kmod-usb-serial................... Support for USB-to-serial converters"
571         tristate
572         default m
573         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
574
575 config BR2_PACKAGE_KMOD_USB_SERIAL_BELKIN
576         prompt   "kmod-usb-serial-belkin.......... Support for Belkin USB-to-serial converters"
577         tristate
578         default m
579         depends BR2_PACKAGE_KMOD_USB_SERIAL
580
581 config BR2_PACKAGE_KMOD_USB_SERIAL_FTDI
582         prompt   "kmod-usb-serial-ftdi............ Support for FTDI USB-to-serial converterr"
583         tristate
584         default m
585         depends BR2_PACKAGE_KMOD_USB_SERIAL
586
587 config BR2_PACKAGE_KMOD_USB_SERIAL_MCT_U232
588         prompt   "kmod-usb-serial-mct-u232........ Support for Magic Control Technology USB-to-Serial converters"
589         tristate
590         default m
591         depends BR2_PACKAGE_KMOD_USB_SERIAL
592
593 config BR2_PACKAGE_KMOD_USB_SERIAL_PL2303
594         prompt   "kmod-usb-serial-pl2303.......... Support for Prolific PL2303 USB-to-Serial converters"
595         tristate
596         default m
597         depends BR2_PACKAGE_KMOD_USB_SERIAL
598
599 config BR2_PACKAGE_KMOD_USB_STORAGE
600         prompt "kmod-usb-storage.................. Support for USB storage devices"
601         tristate
602         default m
603         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
604
605 comment "Misc. devices support"
606
607 config BR2_PACKAGE_KMOD_AX25
608         prompt "kmod-ax25......................... AX25 support"
609         tristate
610         default m
611         help
612           Kernel modules for AX25 protocol family
613           
614           This package contains both the AX25 layer 2 support (ax25) and AX25 KISS driver (mkiss)
615
616 config BR2_PACKAGE_KMOD_BLUETOOTH
617         prompt "kmod-bluetooth.................... Bluetooth drivers and network stack"
618         tristate
619         default m
620         help
621           Bluetooth drivers and network stack
622
623 config BR2_PACKAGE_KMOD_LP
624         prompt "kmod-lp........................... Parallel port and lp support"
625         tristate
626         default m
627         help
628           Kernel modules for line printer and parallel port support
629
630 config BR2_PACKAGE_KMOD_WD1100
631         prompt "kmod-wd1100....................... Soekris net4801 watchdog"
632         tristate
633         default y
634         depends BR2_LINUX_2_4_X86
635         help
636           Driver for the NatSemi SC1x00 series Watchdog 
637           found on Soekris net4801 boards
638
639 comment "Additional kernel modules"
640
641 source "target/linux/package/Config.in"