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