Commit 9205db7e authored by Colin Dorsey's avatar Colin Dorsey Committed by Tomasz Zawadzki
Browse files

configure: add options for fsdev



fsdev config option are in the lib Makefile but not in the configuration script. Add them to configuration script.

Change-Id: I34ba491ecc88623c706fa81ac0ecef111749d0dc
Signed-off-by: default avatarColin Dorsey <colin.dorsey@dell.com>
Reviewed-on: https://review.spdk.io/c/spdk/spdk/+/26096


Reviewed-by: default avatarJim Harris <jim.harris@nvidia.com>
Tested-by: default avatarSPDK Automated Test System <spdkbot@gmail.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz@tzawadzki.com>
parent 283d6323
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -116,6 +116,8 @@ function usage() {
	echo "                           be searched."
	echo " --with-fuse               Build FUSE components for mounting a blobfs filesystem."
	echo " --without-fuse            No path required."
	echo " --with-fsdev              Build fsdev and fuse_dispatcher library components"
	echo " --without-fsdev           No path required"
	echo " --with-nvme-cuse          Build NVMe driver with support for CUSE-based character devices."
	echo " --without-nvme-cuse       No path required."
	echo " --with-raid5f             Build with bdev_raid module RAID5f support."
@@ -630,6 +632,12 @@ for i in "$@"; do
		--without-fuse)
			CONFIG[FUSE]=n
			;;
		--with-fsdev)
			CONFIG[FSDEV]=y
			;;
		--without-fsdev)
			CONFIG[FSDEV]=n
			;;
		--with-nvme-cuse)
			CONFIG[NVME_CUSE]=y
			;;