From 88d3bb31b42f3f095bd176ccabe210023a0231b8 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Tue, 14 Jul 2009 10:25:53 -0700 Subject: [PATCH] Staging: hv: add the Hyper-V virtual block driver to the build Add the Hyper-V virtual block driver to the kernel build system. Cc: Hank Janssen Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- drivers/staging/hv/Kconfig | 7 +++++++ drivers/staging/hv/Makefile | 2 ++ 2 files changed, 9 insertions(+) diff --git a/drivers/staging/hv/Kconfig b/drivers/staging/hv/Kconfig index 52e8921a15d..a94c1d697d6 100644 --- a/drivers/staging/hv/Kconfig +++ b/drivers/staging/hv/Kconfig @@ -12,3 +12,10 @@ config HYPERV_STORAGE default n help Select this option to enable the Hyper-V virtual storage driver. + +config HYPERV_BLOCK + tristate "Microsoft Hyper-V virtual block driver" + depends on BLOCK + default n + help + Select this option to enable the Hyper-V virtual block driver. diff --git a/drivers/staging/hv/Makefile b/drivers/staging/hv/Makefile index 1ef9ad23da4..5fadadc8766 100644 --- a/drivers/staging/hv/Makefile +++ b/drivers/staging/hv/Makefile @@ -1,5 +1,7 @@ obj-$(CONFIG_HYPERV) += hv_vmbus.o obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o +obj-$(CONFIG_HYPERV_BLOCK) += hv_blkvsc.o hv_vmbus-objs := vmbus_drv.o osd.o Sources.o hv_storvsc-objs := storvsc_drv.o osd.o StorVsc.o +hv_blkvsc-objs := blkvsc_drv.o osd.o BlkVsc.o -- 2.41.0