diff options
author | grehan <grehan@FreeBSD.org> | 2013-07-03 23:27:59 +0000 |
---|---|---|
committer | grehan <grehan@FreeBSD.org> | 2013-07-03 23:27:59 +0000 |
commit | 2cb5a953f0a60811764ccaca7c37b51ff007c711 (patch) | |
tree | a379fafc9119aa7a5100f75e33c4bf3ba4309f69 | |
parent | 64aeec4166c56c62c2bed519aaa9c5674ee1e285 (diff) | |
download | FreeBSD-src-2cb5a953f0a60811764ccaca7c37b51ff007c711.zip FreeBSD-src-2cb5a953f0a60811764ccaca7c37b51ff007c711.tar.gz |
Connect the stordisengage driver to the build.
-rw-r--r-- | sys/modules/hyperv/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/hyperv/stordisengage/Makefile | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/sys/modules/hyperv/Makefile b/sys/modules/hyperv/Makefile index 3bae26a..25b32e3 100644 --- a/sys/modules/hyperv/Makefile +++ b/sys/modules/hyperv/Makefile @@ -1,5 +1,5 @@ # $FreeBSD$ -SUBDIR = vmbus netvsc storvsc utilities +SUBDIR = vmbus netvsc stordisengage storvsc utilities .include <bsd.subdir.mk> diff --git a/sys/modules/hyperv/stordisengage/Makefile b/sys/modules/hyperv/stordisengage/Makefile new file mode 100644 index 0000000..0f3a680 --- /dev/null +++ b/sys/modules/hyperv/stordisengage/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../contrib/dev/hyperv/stordisengage + +KMOD= hv_ata_pci_disengage + +SRCS = hv_ata_pci_disengage.c + +.include <bsd.kmod.mk> |