svn commit: r283680 - head/sys/modules

Dmitry Chagin dchagin at FreeBSD.org
Fri May 29 05:46:59 UTC 2015


Author: dchagin
Date: Fri May 29 05:46:58 2015
New Revision: 283680
URL: https://svnweb.freebsd.org/changeset/base/283680

Log:
  Move linux64 and linux_common to it's right place and make them not
  depend on bhyve.
  
  Submitted by:	Oliver Pinter <oliver.pinter from hardenedbsd.org>

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri May 29 05:44:56 2015	(r283679)
+++ head/sys/modules/Makefile	Fri May 29 05:46:58 2015	(r283680)
@@ -517,6 +517,7 @@ _ixv=		ixv
 _linprocfs=	linprocfs
 _linsysfs=	linsysfs
 _linux=		linux
+_linux_common=	linux_common
 .if ${MK_OFED} != "no"
 _linuxapi=	linuxapi
 .endif
@@ -621,6 +622,7 @@ _x86bios=	x86bios
 .if ${MACHINE_CPUARCH} == "amd64"
 _ixl=		ixl
 _ixlv=		ixlv
+_linux64=	linux64
 _ntb=		ntb
 _qlxge=		qlxge
 _qlxgb=		qlxgb
@@ -629,8 +631,6 @@ _sfxge=		sfxge
 
 .if ${MK_BHYVE} != "no" || defined(ALL_MODULES)
 _vmm=		vmm
-_linux_common=	linux_common
-_linux64=	linux64
 .endif
 .endif
 


More information about the svn-src-all mailing list