diff options
author | grehan <grehan@FreeBSD.org> | 2013-07-17 06:30:23 +0000 |
---|---|---|
committer | grehan <grehan@FreeBSD.org> | 2013-07-17 06:30:23 +0000 |
commit | c8195f5331ccad33ad4e265362523f51b96abd5c (patch) | |
tree | 5b7b0a05acafc6450fb27259d1c1d5008e1f88f4 /sys/modules/hyperv/stordisengage | |
parent | 6a7baaf83640e0eaa135d2f7a3c1d4401f1683bf (diff) | |
download | FreeBSD-src-c8195f5331ccad33ad4e265362523f51b96abd5c.zip FreeBSD-src-c8195f5331ccad33ad4e265362523f51b96abd5c.tar.gz |
Microsoft have changed their policy on how the hyper-v code will
be pulled into FreeBSD. From now, FreeBSD will be considered the
upstream repo.
First step: move the drivers away from the contrib area and into
the base system.
A follow-on commit will include the drivers in the amd64 GENERIC kernel.
Diffstat (limited to 'sys/modules/hyperv/stordisengage')
-rw-r--r-- | sys/modules/hyperv/stordisengage/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/hyperv/stordisengage/Makefile b/sys/modules/hyperv/stordisengage/Makefile index 0f3a680..41e359e 100644 --- a/sys/modules/hyperv/stordisengage/Makefile +++ b/sys/modules/hyperv/stordisengage/Makefile @@ -1,9 +1,9 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../../contrib/dev/hyperv/stordisengage +.PATH: ${.CURDIR}/../../../dev/hyperv/stordisengage KMOD= hv_ata_pci_disengage -SRCS = hv_ata_pci_disengage.c +SRCS= hv_ata_pci_disengage.c .include <bsd.kmod.mk> |