svn commit: r505763 - head/graphics/libdrm
Niclas Zeising
zeising at FreeBSD.org
Wed Jul 3 16:48:43 UTC 2019
Author: zeising
Date: Wed Jul 3 16:48:42 2019
New Revision: 505763
URL: https://svnweb.freebsd.org/changeset/ports/505763
Log:
graphics/libdrm: Enable more drivers on aarch64
Enable noveau and radeon libdrm drivers on aarch64. There is work in
progress to get at least the radeon and amdgpu drm kmods working on aarch64,
and this will aid that effort.
PR: 238948
Submitted by: Greg V
Modified:
head/graphics/libdrm/Makefile
Modified: head/graphics/libdrm/Makefile
==============================================================================
--- head/graphics/libdrm/Makefile Wed Jul 3 16:01:03 2019 (r505762)
+++ head/graphics/libdrm/Makefile Wed Jul 3 16:48:42 2019 (r505763)
@@ -3,6 +3,7 @@
PORTNAME= libdrm
PORTVERSION= 2.4.98
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= graphics x11
MASTER_SITES= http://dri.freedesktop.org/libdrm/
@@ -48,7 +49,12 @@ PLIST_SUB+= ARM_DRIVERS="@comment "
PLIST_SUB+= INTEL_DRIVER="@comment "
PLIST_SUB+= NOUVEAU_DRIVER=""
PLIST_SUB+= RADEON_DRIVERS=""
-.elif ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7
+.elif ${ARCH} == aarch64
+PLIST_SUB+= ARM_DRIVERS=""
+PLIST_SUB+= INTEL_DRIVER="@comment "
+PLIST_SUB+= NOUVEAU_DRIVER=""
+PLIST_SUB+= RADEON_DRIVERS=""
+.elif ${ARCH} == armv6 || ${ARCH} == armv7
PLIST_SUB+= ARM_DRIVERS=""
PLIST_SUB+= INTEL_DRIVER="@comment "
PLIST_SUB+= NOUVEAU_DRIVER="@comment "
More information about the svn-ports-all
mailing list