Add a toggle for ramdisk support
[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 configuration"
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
519         default m
520         help
521           This driver is for the National Semiconductor DP83810 series, 
522           which is used in cards from PureData, NetGear, Linksys 
523           and others, including the 83815 chip.
524
525 config BR2_PACKAGE_KMOD_NET_PRISM54
526         prompt "kmod-net-prism54.................. Intersil Prism GT/Duette/Indigo PCI/PCMCIA cards kernel support"
527         tristate
528         depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
529         default m
530         help
531           Enable PCI and Cardbus support for the following chipset based cards: 
532           
533            * ISL3880 - Prism GT       802.11 b/g
534            * ISL3877 - Prism Indigo   802.11 a
535            * ISL3890 - Prism Duette   802.11 a/b/g
536           
537           For a complete list of supported cards visit <http://prism54.org>.
538           Here is the latest confirmed list of supported cards: 
539           
540            * 3com OfficeConnect 11g Cardbus Card aka 3CRWE154G72
541            * Allnet ALL0271 PCI Card
542            * Compex WL54G Cardbus Card
543            * Corega CG-WLCB54GT Cardbus Card
544            * D-Link Air Plus Xtreme G A1 Cardbus Card aka DWL-g650
545            * I-O Data WN-G54/CB Cardbus Card
546            * Kobishi XG-300 aka Z-Com Cardbus Card
547            * Netgear WG511 Cardbus Card
548            * Ovislink WL-5400PCI PCI Card
549            * Peabird WLG-PCI PCI Card
550            * Sitecom WL-100i Cardbus Card
551            * Sitecom WL-110i PCI Card
552            * SMC2802W - EZ Connect g 2.4GHz 54 Mbps Wireless PCI Card
553            * SMC2835W - EZ Connect g 2.4GHz 54 Mbps Wireless Cardbus Card
554            * Z-Com XG-900 PCI Card
555            * Zyxel G-100 Cardbus Card
556           
557           If you enable this, you require a firmware file as well.
558           You will need to copy this to /usr/lib/hotplug/firmware/isl3890.
559           You can get this non-GPL'd firmware file from the Prism54 project page: 
560           <http://prism54.org>.
561           
562           Note: You need a motherboard with DMA support to use any of these cards.
563
564 comment "PCMCIA/CardBus support"
565
566 config BR2_PACKAGE_KMOD_PCMCIA_CORE
567         prompt "kmod-pcmcia-core.................. PCMCIA/CardBus support"
568         depends BR2_LINUX_PCMCIA_SUPPORT
569         tristate
570         depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
571         default m
572
573 config BR2_PACKAGE_KMOD_PCMCIA_SERIAL
574         prompt   "kmod-pcmcia-serial.............. PCMCIA/CardBus serial device support"
575         tristate
576         default m
577         depends BR2_PACKAGE_KMOD_PCMCIA_CORE
578
579 comment "USB support"
580
581 config BR2_PACKAGE_KMOD_USB
582         prompt "kmod-usb-core..................... USB support"
583         tristate
584         default n if BR2_LINUX_2_4_AR531X
585         default m
586
587 config BR2_PACKAGE_KMOD_USB_UHCI
588         prompt   "kmod-usb-uhci................... Support for UHCI controllers"
589         tristate
590         default m
591         depends BR2_PACKAGE_KMOD_USB
592         select BR2_PACKAGE_KMOD_USB_CONTROLLER
593
594 config BR2_PACKAGE_KMOD_USB_OHCI
595         prompt   "kmod-usb-ohci................... Support for OHCI controllers"
596         tristate
597         default m
598         depends BR2_PACKAGE_KMOD_USB
599         select BR2_PACKAGE_KMOD_USB_CONTROLLER
600
601 config BR2_PACKAGE_KMOD_USB2
602         prompt   "kmod-usb2....................... Support for USB 2.0 controllers"
603         tristate
604         default m
605         depends BR2_PACKAGE_KMOD_USB
606         select BR2_PACKAGE_KMOD_USB_CONTROLLER
607
608 config BR2_PACKAGE_KMOD_USB_CONTROLLER
609         tristate
610         depends on BR2_PACKAGE_KMOD_USB_UHCI || BR2_PACKAGE_KMOD_USB_OHCI || BR2_PACKAGE_KMOD_USB2
611         default n
612
613 config BR2_PACKAGE_KMOD_USB_ACM
614         prompt "kmod-usb-acm...................... Support for USB modems/isdn controllers"
615         tristate
616         default m
617         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
618
619 config BR2_PACKAGE_KMOD_USB_AUDIO
620         prompt "kmod-usb-audio.................... Support for USB soundcards"
621         tristate
622         default m
623         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
624         select BR2_PACKAGE_KMOD_SOUNDCORE
625
626 config BR2_PACKAGE_KMOD_USB_PRINTER
627         prompt "kmod-usb-printer.................. Support for USB printers"
628         tristate
629         default m
630         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
631
632 config BR2_PACKAGE_KMOD_USB_SERIAL
633         prompt "kmod-usb-serial................... Support for USB-to-serial converters"
634         tristate
635         default m
636         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
637
638 config BR2_PACKAGE_KMOD_USB_SERIAL_BELKIN
639         prompt   "kmod-usb-serial-belkin.......... Support for Belkin USB-to-serial converters"
640         tristate
641         default m
642         depends BR2_PACKAGE_KMOD_USB_SERIAL
643
644 config BR2_PACKAGE_KMOD_USB_SERIAL_FTDI
645         prompt   "kmod-usb-serial-ftdi............ Support for FTDI USB-to-serial converterr"
646         tristate
647         default m
648         depends BR2_PACKAGE_KMOD_USB_SERIAL
649
650 config BR2_PACKAGE_KMOD_USB_SERIAL_MCT_U232
651         prompt   "kmod-usb-serial-mct-u232........ Support for Magic Control Technology USB-to-Serial converters"
652         tristate
653         default m
654         depends BR2_PACKAGE_KMOD_USB_SERIAL
655
656 config BR2_PACKAGE_KMOD_USB_SERIAL_PL2303
657         prompt   "kmod-usb-serial-pl2303.......... Support for Prolific PL2303 USB-to-Serial converters"
658         tristate
659         default m
660         depends BR2_PACKAGE_KMOD_USB_SERIAL
661
662 config BR2_PACKAGE_KMOD_USB_SERIAL_VISOR
663         prompt   "kmod-usb-serial-visor.......... Support for Handspring Visor / Palm m50x / Sony Clie Driver"
664         tristate
665         default m
666         depends BR2_PACKAGE_KMOD_USB_SERIAL
667
668 config BR2_PACKAGE_KMOD_USB_STORAGE
669         prompt "kmod-usb-storage.................. Support for USB storage devices"
670         tristate
671         default m
672         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
673
674 config BR2_PACKAGE_KMOD_USB_ATM
675         prompt "kmod-usb-atm...................... Support for USB ATM devices"
676         tristate
677         default m
678         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
679
680 comment "Misc. devices support"
681
682 config BR2_PACKAGE_KMOD_AX25
683         prompt "kmod-ax25......................... AX25 support"
684         tristate
685         default m
686         help
687           Kernel modules for AX25 protocol family
688           
689           This package contains both the AX25 layer 2 support (ax25) and AX25 KISS driver (mkiss)
690
691 config BR2_PACKAGE_KMOD_BLUETOOTH
692         prompt "kmod-bluetooth.................... Bluetooth drivers and network stack"
693         tristate
694         default m
695         default n if BR2_LINUX_2_4_AR531X
696         help
697           Bluetooth drivers and network stack
698
699 config BR2_PACKAGE_KMOD_LP
700         prompt "kmod-lp........................... Parallel port and lp support"
701         tristate
702         default m
703         help
704           Kernel modules for line printer and parallel port support
705
706 config BR2_PACKAGE_KMOD_SOFTDOG
707         prompt "kmod-softdog..................... software watchdog"
708         tristate
709         default m
710         help
711           Kernel modules for software watchdog driver
712
713 config BR2_PACKAGE_KMOD_WD1100
714         prompt "kmod-wd1100....................... Soekris net4801 watchdog"
715         tristate
716         default y
717         depends BR2_LINUX_2_4_X86
718         help
719           Driver for the NatSemi SC1x00 series Watchdog 
720           found on Soekris net4801 boards
721
722 comment "Additional kernel modules"
723
724 source "target/linux/package/Config.in"
725
726 endmenu