Move device selection first in menuconfig (#18)
[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_4_BRCM || BR2_LINUX_2_6_X86 || 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         default n if BR2_LINUX_2_4_AR531X
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         default n if BR2_LINUX_2_4_AR531X
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         default n if BR2_LINUX_2_4_AR531X
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         default n if BR2_LINUX_2_4_AR531X
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         default m
470         help
471           Intel(R) PRO/100+ cards kernel support
472
473 config BR2_PACKAGE_KMOD_NET_B44
474         prompt "kmod-net-b44...................... Broadcom 44XX, 47XX ethernet driver"
475         tristate
476         depends !BR2_LINUX_2_6_BRCM && !BR2_LINUX_2_4_BRCM
477         default m
478         help
479           Free driver for Broadcom Ethernet chipsets
480
481 config BR2_PACKAGE_KMOD_NET_HERMES
482         prompt "kmod-net-hermes................... Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) kernel support"
483         tristate
484         default n if BR2_LINUX_2_4_AR531X
485         default m
486         help
487           A driver for 802.11b wireless cards based based on the "Hermes" or 
488           Intersil HFA384x (Prism 2) MAC controller.  This includes the vast 
489           majority of the PCMCIA 802.11b cards (which are nearly all rebadges) 
490           - except for the Cisco/Aironet cards.  Cards supported include the 
491           Apple Airport (not a PCMCIA card), WavelanIEEE/Orinoco, 
492           Cabletron/EnteraSys Roamabout, ELSA AirLancer, MELCO Buffalo, Avaya, 
493           IBM High Rate Wireless, Farralon Syyline, Samsung MagicLAN, Netgear 
494           MA401, LinkSys WPC-11, D-Link DWL-650, 3Com AirConnect, Intel 
495           PRO/Wireless, and Symbol Spectrum24 High Rate amongst others.
496
497 config BR2_PACKAGE_KMOD_NET_HERMES_PCI
498         prompt   "kmod-net-hermes-pci............. Intersil Prism 2.5 PCI 802.11b adaptor support"
499         tristate
500         default m
501         depends BR2_PACKAGE_KMOD_NET_HERMES
502         help
503           Enable support for PCI and mini-PCI 802.11b wireless NICs based on 
504           the Prism 2.5 chipset.  These are true PCI cards, not the 802.11b 
505           PCMCIA cards bundled with PCI<->PCMCIA adaptors which are also 
506           common.  Some of the built-in wireless adaptors in laptops are of 
507           this variety.
508
509 config BR2_PACKAGE_KMOD_NET_HERMES_PLX
510         prompt   "kmod-net-hermes-plx............. Hermes in PLX9052 based PCI adaptor (Netgear MA301, etc.) kernel support"
511         tristate
512         default m
513         depends BR2_PACKAGE_KMOD_NET_HERMES
514         help
515           Enable support for PCMCIA cards supported by the "Hermes" (aka 
516           orinoco_cs) driver when used in PLX9052 based PCI adaptors.  These 
517           adaptors are not a full PCMCIA controller but act as a more limited 
518           PCI <-> PCMCIA bridge.  Several vendors sell such adaptors so that 
519           802.11b PCMCIA cards can be used in desktop machines.  The Netgear 
520           MA301 is such an adaptor.
521
522 config BR2_PACKAGE_KMOD_NET_NATSEMI
523         prompt "kmod-net-natsemi.................. National Semiconductor DP8381x series PCI Ethernet kernel support"
524         tristate
525         default n if BR2_LINUX_2_4_AR531X
526         default m
527         help
528           This driver is for the National Semiconductor DP83810 series, 
529           which is used in cards from PureData, NetGear, Linksys 
530           and others, including the 83815 chip.
531
532 config BR2_PACKAGE_KMOD_NET_PRISM54
533         prompt "kmod-net-prism54.................. Intersil Prism GT/Duette/Indigo PCI/PCMCIA cards kernel support"
534         tristate
535         default n if BR2_LINUX_2_4_AR531X
536         default m
537         help
538           Enable PCI and Cardbus support for the following chipset based cards: 
539           
540            * ISL3880 - Prism GT       802.11 b/g
541            * ISL3877 - Prism Indigo   802.11 a
542            * ISL3890 - Prism Duette   802.11 a/b/g
543           
544           For a complete list of supported cards visit <http://prism54.org>.
545           Here is the latest confirmed list of supported cards: 
546           
547            * 3com OfficeConnect 11g Cardbus Card aka 3CRWE154G72
548            * Allnet ALL0271 PCI Card
549            * Compex WL54G Cardbus Card
550            * Corega CG-WLCB54GT Cardbus Card
551            * D-Link Air Plus Xtreme G A1 Cardbus Card aka DWL-g650
552            * I-O Data WN-G54/CB Cardbus Card
553            * Kobishi XG-300 aka Z-Com Cardbus Card
554            * Netgear WG511 Cardbus Card
555            * Ovislink WL-5400PCI PCI Card
556            * Peabird WLG-PCI PCI Card
557            * Sitecom WL-100i Cardbus Card
558            * Sitecom WL-110i PCI Card
559            * SMC2802W - EZ Connect g 2.4GHz 54 Mbps Wireless PCI Card
560            * SMC2835W - EZ Connect g 2.4GHz 54 Mbps Wireless Cardbus Card
561            * Z-Com XG-900 PCI Card
562            * Zyxel G-100 Cardbus Card
563           
564           If you enable this, you require a firmware file as well.
565           You will need to copy this to /usr/lib/hotplug/firmware/isl3890.
566           You can get this non-GPL'd firmware file from the Prism54 project page: 
567           <http://prism54.org>.
568           
569           Note: You need a motherboard with DMA support to use any of these cards.
570
571 comment "PCMCIA/CardBus support"
572
573 config BR2_PACKAGE_KMOD_PCMCIA_CORE
574         prompt "kmod-pcmcia-core.................. PCMCIA/CardBus support"
575         depends BR2_LINUX_PCMCIA_SUPPORT
576         tristate
577         default n if BR2_LINUX_2_4_AR531X
578         default m
579
580 config BR2_PACKAGE_KMOD_PCMCIA_SERIAL
581         prompt   "kmod-pcmcia-serial.............. PCMCIA/CardBus serial device support"
582         tristate
583         default m
584         depends BR2_PACKAGE_KMOD_PCMCIA_CORE
585
586 comment "USB support"
587
588 config BR2_PACKAGE_KMOD_USB
589         prompt "kmod-usb-core..................... USB support"
590         tristate
591         default n if BR2_LINUX_2_4_AR531X
592         default m
593
594 config BR2_PACKAGE_KMOD_USB_UHCI
595         prompt   "kmod-usb-uhci................... Support for UHCI 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_USB_OHCI
602         prompt   "kmod-usb-ohci................... Support for OHCI 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_USB2
609         prompt   "kmod-usb2....................... Support for USB 2.0 controllers"
610         tristate
611         default m
612         depends BR2_PACKAGE_KMOD_USB
613         select BR2_PACKAGE_KMOD_USB_CONTROLLER
614
615 config BR2_PACKAGE_KMOD_USB_CONTROLLER
616         tristate
617         depends on BR2_PACKAGE_KMOD_USB_UHCI || BR2_PACKAGE_KMOD_USB_OHCI || BR2_PACKAGE_KMOD_USB2
618         default n
619
620 config BR2_PACKAGE_KMOD_USB_ACM
621         prompt "kmod-usb-acm...................... Support for USB modems/isdn controllers"
622         tristate
623         default m
624         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
625
626 config BR2_PACKAGE_KMOD_USB_AUDIO
627         prompt "kmod-usb-audio.................... Support for USB soundcards"
628         tristate
629         default m
630         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
631         select BR2_PACKAGE_KMOD_SOUNDCORE
632
633 config BR2_PACKAGE_KMOD_USB_PRINTER
634         prompt "kmod-usb-printer.................. Support for USB printers"
635         tristate
636         default m
637         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
638
639 config BR2_PACKAGE_KMOD_USB_SERIAL
640         prompt "kmod-usb-serial................... Support for USB-to-serial converters"
641         tristate
642         default m
643         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
644
645 config BR2_PACKAGE_KMOD_USB_SERIAL_BELKIN
646         prompt   "kmod-usb-serial-belkin.......... Support for Belkin USB-to-serial converters"
647         tristate
648         default m
649         depends BR2_PACKAGE_KMOD_USB_SERIAL
650
651 config BR2_PACKAGE_KMOD_USB_SERIAL_FTDI
652         prompt   "kmod-usb-serial-ftdi............ Support for FTDI USB-to-serial converterr"
653         tristate
654         default m
655         depends BR2_PACKAGE_KMOD_USB_SERIAL
656
657 config BR2_PACKAGE_KMOD_USB_SERIAL_MCT_U232
658         prompt   "kmod-usb-serial-mct-u232........ Support for Magic Control Technology USB-to-Serial converters"
659         tristate
660         default m
661         depends BR2_PACKAGE_KMOD_USB_SERIAL
662
663 config BR2_PACKAGE_KMOD_USB_SERIAL_PL2303
664         prompt   "kmod-usb-serial-pl2303.......... Support for Prolific PL2303 USB-to-Serial converters"
665         tristate
666         default m
667         depends BR2_PACKAGE_KMOD_USB_SERIAL
668
669 config BR2_PACKAGE_KMOD_USB_SERIAL_VISOR
670         prompt   "kmod-usb-serial-visor.......... Support for Handspring Visor / Palm m50x / Sony Clie Driver"
671         tristate
672         default m
673         depends BR2_PACKAGE_KMOD_USB_SERIAL
674
675 config BR2_PACKAGE_KMOD_USB_STORAGE
676         prompt "kmod-usb-storage.................. Support for USB storage devices"
677         tristate
678         default m
679         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
680
681 config BR2_PACKAGE_KMOD_USB_ATM
682         prompt "kmod-usb-atm...................... Support for USB ATM devices"
683         tristate
684         default m
685         depends BR2_PACKAGE_KMOD_USB_CONTROLLER
686
687 comment "Misc. devices support"
688
689 config BR2_PACKAGE_KMOD_AX25
690         prompt "kmod-ax25......................... AX25 support"
691         tristate
692         default m
693         help
694           Kernel modules for AX25 protocol family
695           
696           This package contains both the AX25 layer 2 support (ax25) and AX25 KISS driver (mkiss)
697
698 config BR2_PACKAGE_KMOD_BLUETOOTH
699         prompt "kmod-bluetooth.................... Bluetooth drivers and network stack"
700         tristate
701         default m
702         default n if BR2_LINUX_2_4_AR531X
703         help
704           Bluetooth drivers and network stack
705
706 config BR2_PACKAGE_KMOD_LP
707         prompt "kmod-lp........................... Parallel port and lp support"
708         tristate
709         default m
710         help
711           Kernel modules for line printer and parallel port support
712
713 config BR2_PACKAGE_KMOD_SOFTDOG
714         prompt "kmod-softdog..................... software watchdog"
715         tristate
716         default m
717         help
718           Kernel modules for software watchdog driver
719
720 config BR2_PACKAGE_KMOD_WD1100
721         prompt "kmod-wd1100....................... Soekris net4801 watchdog"
722         tristate
723         default y
724         depends BR2_LINUX_2_4_X86
725         help
726           Driver for the NatSemi SC1x00 series Watchdog 
727           found on Soekris net4801 boards
728
729 comment "Additional kernel modules"
730
731 source "target/linux/package/Config.in"
732
733 endmenu