svn commit: r526242 - head/graphics/drm-devel-kmod

Niclas Zeising zeising at FreeBSD.org
Sat Feb 15 20:51:53 UTC 2020


Author: zeising
Date: Sat Feb 15 20:51:52 2020
New Revision: 526242
URL: https://svnweb.freebsd.org/changeset/ports/526242

Log:
  graphics/drm-devel-kmod: Enable on arm64
  
  Enable drm-devel-kmod build on arm64.
  
  Submitted by:	andrew
  Differential Revision:	https://reviews.freebsd.org/D23437

Modified:
  head/graphics/drm-devel-kmod/Makefile

Modified: head/graphics/drm-devel-kmod/Makefile
==============================================================================
--- head/graphics/drm-devel-kmod/Makefile	Sat Feb 15 20:49:31 2020	(r526241)
+++ head/graphics/drm-devel-kmod/Makefile	Sat Feb 15 20:51:52 2020	(r526242)
@@ -11,8 +11,8 @@ COMMENT=	DRM modules for the linuxkpi-based KMS compon
 LICENSE=	BSD2CLAUSE MIT GPLv2
 LICENSE_COMB=	multi
 
-ONLY_FOR_ARCHS=	amd64 i386 powerpc64
-ONLY_FOR_ARCHS_REASON=	the new KMS components are only supported on amd64, i386 and powerpc64
+ONLY_FOR_ARCHS=	aarch64 amd64 i386 powerpc64
+ONLY_FOR_ARCHS_REASON=	the new KMS components are only supported on amd64, arm64, i386 and powerpc64
 
 RUN_DEPENDS=	gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod
 
@@ -59,7 +59,7 @@ PLIST_SUB+=	VBOXVIDEO=""
 .  else
 PLIST_SUB+=	VBOXVIDEO="@comment "
 .  endif
-.elif ${ARCH} == "powerpc64"
+.elif ${ARCH} == "aarch64" || ${ARCH} == "powerpc64"
 PLIST_SUB+=	AMDGPU=""
 PLIST_SUB+=	AMDKFD="@comment " 
 PLIST_SUB+=	I915="@comment "


More information about the svn-ports-all mailing list