svn commit: r462202 - in head/graphics: drm-next-kmod gpu-firmware-kmod
Johannes M Dieterich
jmd at FreeBSD.org
Sun Feb 18 04:41:17 UTC 2018
Author: jmd
Date: Sun Feb 18 04:41:15 2018
New Revision: 462202
URL: https://svnweb.freebsd.org/changeset/ports/462202
Log:
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
Modified:
head/graphics/drm-next-kmod/Makefile
head/graphics/gpu-firmware-kmod/Makefile
Modified: head/graphics/drm-next-kmod/Makefile
==============================================================================
--- head/graphics/drm-next-kmod/Makefile Sun Feb 18 00:34:56 2018 (r462201)
+++ head/graphics/drm-next-kmod/Makefile Sun Feb 18 04:41:15 2018 (r462202)
@@ -3,7 +3,7 @@
PORTNAME= drm-next-kmod
PORTVERSION= g20180117
-PORTREVISION= 0
+PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= jmd at 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)
Modified: head/graphics/gpu-firmware-kmod/Makefile
==============================================================================
--- head/graphics/gpu-firmware-kmod/Makefile Sun Feb 18 00:34:56 2018 (r462201)
+++ head/graphics/gpu-firmware-kmod/Makefile Sun Feb 18 04:41:15 2018 (r462202)
@@ -3,6 +3,7 @@
PORTNAME= gpu-firmware-kmod
PORTVERSION= g20180206
+PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= jmd at 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>
More information about the svn-ports-head
mailing list