Date: Sun, 18 Feb 2018 04:41:16 +0000 (UTC) From: Johannes M Dieterich <jmd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462202 - in head/graphics: drm-next-kmod gpu-firmware-kmod Message-ID: <201802180441.w1I4fGc0088728@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802180441.w1I4fGc0088728>