blob: 50aad2eeed6e22f5ec51112b816399ef8d8044d9 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001
2menuconfig TARGET_CORE
3 tristate "Generic Target Core Mod (TCM) and ConfigFS Infrastructure"
4 depends on SCSI && BLOCK
5 select CONFIGFS_FS
Nicholas Bellinger41861fa2014-01-07 22:44:57 +00006 select CRC_T10DIF
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 default n
8 help
9 Say Y or M here to enable the TCM Storage Engine and ConfigFS enabled
10 control path for target_core_mod. This includes built-in TCM RAMDISK
11 subsystem logic for virtual LUN 0 access
12
13if TARGET_CORE
14
15config TCM_IBLOCK
16 tristate "TCM/IBLOCK Subsystem Plugin for Linux/BLOCK"
17 help
18 Say Y here to enable the TCM/IBLOCK subsystem plugin for non-buffered
19 access to Linux/Block devices using BIO
20
21config TCM_FILEIO
22 tristate "TCM/FILEIO Subsystem Plugin for Linux/VFS"
23 help
24 Say Y here to enable the TCM/FILEIO subsystem plugin for buffered
25 access to Linux/VFS struct file or struct block_device
26
27config TCM_PSCSI
28 tristate "TCM/pSCSI Subsystem Plugin for Linux/SCSI"
29 help
30 Say Y here to enable the TCM/pSCSI subsystem plugin for non-buffered
31 passthrough access to Linux/SCSI device
32
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070033source "drivers/target/loopback/Kconfig"
Kiran Patil3699d922011-04-18 16:24:14 -070034source "drivers/target/tcm_fc/Kconfig"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000035source "drivers/target/iscsi/Kconfig"
Chris Boota511ce32012-04-14 17:50:35 -070036source "drivers/target/sbp/Kconfig"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070037
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038endif