blob: 5a66741f4f8ffd5809c52b52f208e1e80e2b9b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# FC4 device configuration
#
mainmenu_option next_comment
comment 'Fibre Channel support'
tristate 'Fibre Channel and FC4 SCSI support' CONFIG_FC4 m
if [ ! "$CONFIG_FC4" = "n" ]; then
comment 'FC4 drivers'
tristate 'Sun SOC/Sbus' CONFIG_FC4_SOC m
comment 'FC4 targets'
dep_tristate 'SparcSTORAGE Array 100 and 200 series' CONFIG_SCSI_PLUTO $CONFIG_SCSI
else
define_bool CONFIG_FC4_SOC n
define_bool CONFIG_SCSI_PLUTO n
fi
endmenu
|