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