Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Oct 2015 17:32:45 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r289037 - head/sys/modules
Message-ID:  <201510081732.t98HWjcD037235@repo.freebsd.org>

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



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