Enable nvme on aarch64

Don't mark nvme as broken on aarch64. It compiles, at least, and people are
testing it out. This only enables the userland parts of the nvme stack.

Submitted by: greg at unrelenting technologies
Differential Revision: https://reviews.freebsd.org/D21168
This commit is contained in:
imp 2019-08-07 16:19:06 +00:00
parent a0767588ae
commit 3a0ba06de1

View File

@ -389,8 +389,8 @@ BROKEN_OPTIONS+=MLX5TOOL
BROKEN_OPTIONS+=HYPERV
.endif
# NVME is only x86 and powerpc64
.if ${__T} != "amd64" && ${__T} != "i386" && ${__T} != "powerpc64"
# NVME is only aarch64, x86 and powerpc64
.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && ${__T} != "powerpc64"
BROKEN_OPTIONS+=NVME
.endif