53 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2 3menuconfig TARGET_CORE4 tristate "Generic Target Core Mod (TCM) and ConfigFS Infrastructure"5 depends on BLOCK6 select CONFIGFS_FS7 select CRC_T10DIF8 select SCSI_COMMON9 select SGL_ALLOC10 default n11 help12 Say Y or M here to enable the TCM Storage Engine and ConfigFS enabled13 control path for target_core_mod. This includes built-in TCM RAMDISK14 subsystem logic for virtual LUN 0 access15 16if TARGET_CORE17 18config TCM_IBLOCK19 tristate "TCM/IBLOCK Subsystem Plugin for Linux/BLOCK"20 select BLK_DEV_INTEGRITY21 help22 Say Y here to enable the TCM/IBLOCK subsystem plugin for non-buffered23 access to Linux/Block devices using BIO24 25config TCM_FILEIO26 tristate "TCM/FILEIO Subsystem Plugin for Linux/VFS"27 help28 Say Y here to enable the TCM/FILEIO subsystem plugin for buffered29 access to Linux/VFS struct file or struct block_device30 31config TCM_PSCSI32 tristate "TCM/pSCSI Subsystem Plugin for Linux/SCSI"33 depends on SCSI34 help35 Say Y here to enable the TCM/pSCSI subsystem plugin for non-buffered36 passthrough access to Linux/SCSI device37 38config TCM_USER239 tristate "TCM/USER Subsystem Plugin for Linux"40 depends on UIO && NET41 help42 Say Y here to enable the TCM/USER subsystem plugin for a userspace43 process to handle requests. This is version 2 of the ABI; version 144 is obsolete.45 46source "drivers/target/loopback/Kconfig"47source "drivers/target/tcm_fc/Kconfig"48source "drivers/target/iscsi/Kconfig"49source "drivers/target/sbp/Kconfig"50source "drivers/target/tcm_remote/Kconfig"51 52endif53