From 32b6c6ecc53a442f15aad131fc81852efd072cb6 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Thu, 8 Oct 2015 17:32:45 +0000 Subject: [PATCH] Disable syscons and vpo modules for arm64. Reviewed by: andrew, emaste Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3796 --- sys/modules/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index f5f9b4c3a3e..ad54a599ed0 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -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