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