diff options
author | kib <kib@FreeBSD.org> | 2015-10-08 17:32:45 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2015-10-08 17:32:45 +0000 |
commit | 0acf5518ac28680e7d74a8c9623fcd8b08714fb0 (patch) | |
tree | 65389ac326d53a841ce0d0b978420d3cfa6be7b6 | |
parent | 858dd71bc9ef5897b7dd8ba926f3e4b1827d9566 (diff) | |
download | FreeBSD-src-0acf5518ac28680e7d74a8c9623fcd8b08714fb0.zip FreeBSD-src-0acf5518ac28680e7d74a8c9623fcd8b08714fb0.tar.gz |
Disable syscons and vpo modules for arm64.
Reviewed by: andrew, emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D3796
-rw-r--r-- | sys/modules/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index f5f9b4c..ad54a59 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 |