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