1 # -*- shell-script -*-
2
3 if [ "$CONFIG_PCI" = "y" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
4 mainmenu_option next_comment
5 comment 'IEEE 1394 (FireWire) support'
6
7 dep_tristate 'IEEE 1394 (FireWire) support (EXPERIMENTAL)' CONFIG_IEEE1394 $CONFIG_PCI
8
9 if [ "$CONFIG_IEEE1394" != "n" ]; then
10
11 dep_tristate 'Texas Instruments PCILynx support' CONFIG_IEEE1394_PCILYNX $CONFIG_IEEE1394
12 if [ "$CONFIG_IEEE1394_PCILYNX" != "n" ]; then
13 bool ' Use PCILynx local RAM' CONFIG_IEEE1394_PCILYNX_LOCALRAM
14 bool ' Support for non-IEEE1394 local ports' CONFIG_IEEE1394_PCILYNX_PORTS
15 fi
16
17 # this driver is unsupported now:
18 # dep_tristate 'Adaptec AIC-5800 (AHA-89xx) support' CONFIG_IEEE1394_AIC5800 $CONFIG_IEEE1394
19
20 dep_tristate 'OHCI (Open Host Controller Interface) support' CONFIG_IEEE1394_OHCI1394 $CONFIG_IEEE1394
21 dep_tristate 'Video1394 support' CONFIG_IEEE1394_VIDEO1394 $CONFIG_IEEE1394_OHCI1394
22
23 dep_tristate 'Raw IEEE1394 I/O support' CONFIG_IEEE1394_RAWIO $CONFIG_IEEE1394
24
25 bool 'Excessive debugging output' CONFIG_IEEE1394_VERBOSEDEBUG
26 fi
27 endmenu
28 fi
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.