Don't build some modules on RISC-V.

Submitted by:	Yukishige Shibata <y-shibat@mtd.biglobe.ne.jp>
This commit is contained in:
Ruslan Bukin 2016-06-01 13:43:43 +00:00
parent 22d5f3540a
commit 87ef40645d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=301121

View File

@ -499,7 +499,7 @@ _txp= txp
.if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \
${MACHINE_ARCH:C/mips(el)?/mips/} != "mips" && \ ${MACHINE_ARCH:C/mips(el)?/mips/} != "mips" && \
${MACHINE_ARCH} != "powerpc" ${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "riscv"
_cxgbe= cxgbe _cxgbe= cxgbe
.endif .endif
@ -508,7 +508,8 @@ SUBDIR+= zfs
.endif .endif
.if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "arm" && \ .if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "arm" && \
${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "powerpc" ${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "powerpc" && \
${MACHINE_CPUARCH} != "riscv"
_syscons= syscons _syscons= syscons
_vpo= vpo _vpo= vpo
.endif .endif