source: freewrt/target/linux/Config.in@ b3aff4e

Last change on this file since b3aff4e was f7a4daa, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

add wlan driver package, fix mini_fo Makefile, move some makefiles to mk directory

git-svn-id: svn://www.freewrt.org/branches/wbx-target-cleanup@554 afb5a338-a214-0410-bd46-81f09a774fd1

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