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

freewrt_1_0 freewrt_2_0
Last change on this file since c04ece1 was c04ece1, checked in by Thorsten Glaser <tg@…>, 19 years ago

as discussed with wbx@ some 2-3 weeks ago, change
the BR2_ prefix to FWRT_

tested with a standard build (only the squashfs
image since the jffs2 didn't get built)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@360 afb5a338-a214-0410-bd46-81f09a774fd1

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