From: Greg Kroah-Hartman Date: Tue, 14 Jul 2009 18:01:18 +0000 (-0700) Subject: Staging: hv: add the Hyper-V virtual network driver to the build X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=511bda8fe1607ab2e4b2f3b008b7cfbffc2720b1;p=deliverable%2Flinux.git Staging: hv: add the Hyper-V virtual network driver to the build Add the Hyper-V virtual network driver to the kernel build system. Cc: Hank Janssen Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/Kconfig b/drivers/staging/hv/Kconfig index a94c1d697d6b..932bfd657898 100644 --- a/drivers/staging/hv/Kconfig +++ b/drivers/staging/hv/Kconfig @@ -19,3 +19,10 @@ config HYPERV_BLOCK default n help Select this option to enable the Hyper-V virtual block driver. + +config HYPERV_NET + tristate "Microsoft Hyper-V virtual network driver" + depends on NET + default n + help + Select this option to enable the Hyper-V virtual network driver. diff --git a/drivers/staging/hv/Makefile b/drivers/staging/hv/Makefile index 5fadadc8766d..d4142e2de038 100644 --- a/drivers/staging/hv/Makefile +++ b/drivers/staging/hv/Makefile @@ -1,7 +1,9 @@ obj-$(CONFIG_HYPERV) += hv_vmbus.o obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o obj-$(CONFIG_HYPERV_BLOCK) += hv_blkvsc.o +obj-$(CONFIG_HYPERV_NET) += hv_netvsc.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 +hv_netvsc-objs := netvsc_drv.o osd.o NetVsc.o RndisFilter.o