aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorjmd <jmd@FreeBSD.org>2018-02-18 12:41:15 +0800
committerjmd <jmd@FreeBSD.org>2018-02-18 12:41:15 +0800
commit4e2a3dba3d46a163a09f22c7ce6bd5f416948b3b (patch)
tree987d5a2abba67610069cf836aae11377155a4ea0 /graphics
parent9a07900908f6cc5a26c59c5f385698084813d290 (diff)
downloadfreebsd-ports-graphics-4e2a3dba3d46a163a09f22c7ce6bd5f416948b3b.tar.gz
freebsd-ports-graphics-4e2a3dba3d46a163a09f22c7ce6bd5f416948b3b.tar.zst
freebsd-ports-graphics-4e2a3dba3d46a163a09f22c7ce6bd5f416948b3b.zip
graphics/drm-next-kmod and graphics/gpu-firmware-kmod: after MFC'ing the relevant parts of the linuxkpi to 11-STABLE by hps allows us to now support the Linux-based KMS bits there. Adjust the OSVERSION check accordingly.
Reviewed by: swills (mentor) Approved by: swills (mentor) Obtained from: FreeBSDDesktop / hps Differential Revision: https://reviews.freebsd.org/D14424
Diffstat (limited to 'graphics')
-rw-r--r--graphics/drm-next-kmod/Makefile9
-rw-r--r--graphics/gpu-firmware-kmod/Makefile8
2 files changed, 12 insertions, 5 deletions
diff --git a/graphics/drm-next-kmod/Makefile b/graphics/drm-next-kmod/Makefile
index 8c7b0e88443..14c873a8c2a 100644
--- a/graphics/drm-next-kmod/Makefile
+++ b/graphics/drm-next-kmod/Makefile
@@ -3,7 +3,7 @@
PORTNAME= drm-next-kmod
PORTVERSION= g20180117
-PORTREVISION= 0
+PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
@@ -28,8 +28,11 @@ GH_TAGNAME= 622fdd1
.include <bsd.port.options.mk>
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200045
-IGNORE= not supported on 11.x or older, no kernel support
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1101510
+IGNORE= not supported on 10.x or older, no kernel support
+.endif
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200045
+IGNORE= not supported on older CURRENT, no kernel support
.endif
.if ${OPSYS} != FreeBSD
IGNORE= not supported on anything but FreeBSD (missing linuxkpi functionality)
diff --git a/graphics/gpu-firmware-kmod/Makefile b/graphics/gpu-firmware-kmod/Makefile
index 0e39478e042..51336876f41 100644
--- a/graphics/gpu-firmware-kmod/Makefile
+++ b/graphics/gpu-firmware-kmod/Makefile
@@ -3,6 +3,7 @@
PORTNAME= gpu-firmware-kmod
PORTVERSION= g20180206
+PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
@@ -29,8 +30,11 @@ GH_TAGNAME= dc3c90e
.include <bsd.port.pre.mk>
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200019
-IGNORE= not supported on 11.x or older, no kernel support
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1101510
+IGNORE= not supported on 10.x or older, no kernel support
+.endif
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200019
+IGNORE= not supported on older CURRENT, no kernel support
.endif
.include <bsd.port.post.mk>