1# 2# FC4 device configuration 3# 4mainmenu_option next_comment 5comment 'Fibre Channel support' 6 7tristate 'Fibre Channel and FC4 SCSI support' CONFIG_FC4 8if [ ! "$CONFIG_FC4" = "n" ]; then 9 comment 'FC4 drivers' 10 if [ "$CONFIG_SPARC32" = "y" -o "$CONFIG_SPARC64" = "y" ]; then 11 tristate 'Sun SOC/Sbus' CONFIG_FC4_SOC 12 tristate 'Sun SOC+ (aka SOCAL)' CONFIG_FC4_SOCAL 13 fi 14 comment 'FC4 targets' 15 dep_tristate 'SparcSTORAGE Array 100 and 200 series' CONFIG_SCSI_PLUTO $CONFIG_SCSI 16 if [ "$CONFIG_SPARC32" = "y" -o "$CONFIG_SPARC64" = "y" ]; then 17 dep_tristate 'Sun Enterprise Network Array (A5000 and EX500)' CONFIG_SCSI_FCAL $CONFIG_SCSI 18 else 19 dep_tristate 'Generic FC-AL disk driver' CONFIG_SCSI_FCAL $CONFIG_SCSI 20 fi 21else 22 define_tristate CONFIG_FC4_SOC n 23 define_tristate CONFIG_FC4_SOCAL n 24 define_tristate CONFIG_SCSI_PLUTO n 25 define_tristate CONFIG_SCSI_FCAL n 26fi 27endmenu 28