svn commit: r275150 - projects/building-blocks/sys/modules

Garrett Cooper ngie at FreeBSD.org
Wed Nov 26 23:07:55 UTC 2014


Author: ngie
Date: Wed Nov 26 23:07:54 2014
New Revision: 275150
URL: https://svnweb.freebsd.org/changeset/base/275150

Log:
  Move hyperv/vmm under MK_HYPERV/MK_BHYVE, respectively

Modified:
  projects/building-blocks/sys/modules/Makefile

Modified: projects/building-blocks/sys/modules/Makefile
==============================================================================
--- projects/building-blocks/sys/modules/Makefile	Wed Nov 26 23:02:22 2014	(r275149)
+++ projects/building-blocks/sys/modules/Makefile	Wed Nov 26 23:07:54 2014	(r275150)
@@ -389,6 +389,10 @@ SUBDIR=	\
 	${_zfs} \
 	zlib
 
+.if ${MK_BHYVE} != "no" || defined(ALL_MODULES)
+_vmm=		vmm
+.endif
+
 .if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
 .if exists(${.CURDIR}/../opencrypto)
 _crypto=	crypto
@@ -399,6 +403,10 @@ _random=	random
 .endif
 .endif
 
+.if ${MK_HYPERV} != "no" || defined(ALL_MODULES)
+_hyperv=	hyperv
+.endif
+
 .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
 	defined(ALL_MODULES)
 _carp=		carp
@@ -550,7 +558,6 @@ _hptmv=		hptmv
 _hptnr=		hptnr
 _hptrr=		hptrr
 .endif
-_hyperv=	hyperv
 _ichwd=		ichwd
 _ida=		ida
 _iir=		iir
@@ -612,7 +619,6 @@ _qlxge=		qlxge
 _qlxgb=		qlxgb
 _qlxgbe=	qlxgbe
 _sfxge=		sfxge
-_vmm=		vmm
 .endif
 
 .if ${MACHINE_CPUARCH} == "i386"


More information about the svn-src-projects mailing list