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:
Warner Losh 2019-08-07 16:19:06 +00:00
parent b7e08f9305
commit ecdc19b50c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350678

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