build vmware modules on arm64

pvscsi and vmxnet3 build and work.  Exclude vmci for now as it contains
x86-specific assembly.

Reported by:	Vincent Milum Jr
MFC after:	2 weeks
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2020-10-19 20:43:29 +00:00
parent bd0e0447cb
commit 2c19e8ed90
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366861
2 changed files with 5 additions and 3 deletions

View File

@ -511,6 +511,7 @@ _mthca= mthca
_mlx4ib= mlx4ib
_mlx5ib= mlx5ib
.endif
_vmware= vmware
.endif
.if ${MK_NETGRAPH} != "no" || defined(ALL_MODULES)
@ -633,7 +634,6 @@ _safe= safe
_speaker= speaker
_splash= splash
_sppp= sppp
_vmware= vmware
_wbwd= wbwd
_wi= wi

View File

@ -23,6 +23,8 @@
# SUCH DAMAGE.
#
SUBDIR= pvscsi vmci vmxnet3
SUBDIR= pvscsi vmxnet3
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
SUBDIR+= vmci
.endif
.include <bsd.subdir.mk>