svn commit: r289037 - head/sys/modules

Konstantin Belousov kib at FreeBSD.org
Thu Oct 8 17:32:47 UTC 2015


Author: kib
Date: Thu Oct  8 17:32:45 2015
New Revision: 289037
URL: https://svnweb.freebsd.org/changeset/base/289037

Log:
  Disable syscons and vpo modules for arm64.
  
  Reviewed by:	andrew, emaste
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D3796

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Thu Oct  8 17:32:17 2015	(r289036)
+++ head/sys/modules/Makefile	Thu Oct  8 17:32:45 2015	(r289037)
@@ -479,8 +479,8 @@ _txp=		txp
 _cxgbe=		cxgbe
 .endif
 
-.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips" && \
-	${MACHINE_CPUARCH} != "powerpc"
+.if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "arm" && \
+	${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "powerpc"
 _syscons=	syscons
 _vpo=		vpo
 .endif


More information about the svn-src-all mailing list