From: Greg Kroah-Hartman Date: Mon, 13 Jul 2009 23:04:02 +0000 (-0700) Subject: Staging: hv: add the Hyper-V virtual bus to the build X-Git-Tag: firefly_0821_release~12948^2~487 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c4ca0e9e6de92f46271599db90f4ab006c133441;p=firefly-linux-kernel-4.4.55.git Staging: hv: add the Hyper-V virtual bus to the build Add the Hyper-V virtual bus to the kernel build system. Cc: Hank Janssen Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index c1a0ca4c96f4..34aa21e1fb38 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig @@ -137,5 +137,7 @@ source "drivers/staging/dream/camera/Kconfig" source "drivers/staging/udlfb/Kconfig" +source "drivers/staging/hv/Kconfig" + endif # !STAGING_EXCLUDE_BUILD endif # STAGING diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index aa65ed205bb8..bc84a0e0a46e 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile @@ -50,3 +50,4 @@ obj-$(CONFIG_RDC_17F3101X) += pata_rdc/ obj-$(CONFIG_FB_UDL) += udlfb/ obj-$(CONFIG_MSM_ADSP) += dream/qdsp5/ dream/smd/ obj-$(CONFIG_MSM_CAMERA) += dream/camera/ +obj-$(CONFIG_HYPERV) += hv/ diff --git a/drivers/staging/hv/Kconfig b/drivers/staging/hv/Kconfig new file mode 100644 index 000000000000..40d922bfab2d --- /dev/null +++ b/drivers/staging/hv/Kconfig @@ -0,0 +1,8 @@ +config HYPERV + tristate "Microsoft Hyper-V client drivers" + depends on X86 + default n + help + Select this option to run Linux as a Hyper-V client operating + system. + diff --git a/drivers/staging/hv/Makefile b/drivers/staging/hv/Makefile new file mode 100644 index 000000000000..9908360345b0 --- /dev/null +++ b/drivers/staging/hv/Makefile @@ -0,0 +1,3 @@ +obj-$(CONFIG_HYPERV) += hv_vmbus.o + +hv_vmbus-objs := vmbus_drv.o osd.o Sources.o