Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Nov 2014 23:07:54 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r275150 - projects/building-blocks/sys/modules
Message-ID:  <201411262307.sAQN7sen024465@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411262307.sAQN7sen024465>