From owner-svn-ports-head@freebsd.org Sun Feb 18 04:41:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F096EF0FD3C; Sun, 18 Feb 2018 04:41:16 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9B1998208B; Sun, 18 Feb 2018 04:41:16 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7BD2626C4C; Sun, 18 Feb 2018 04:41:16 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1I4fGmd088730; Sun, 18 Feb 2018 04:41:16 GMT (envelope-from jmd@FreeBSD.org) Received: (from jmd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1I4fGc0088728; Sun, 18 Feb 2018 04:41:16 GMT (envelope-from jmd@FreeBSD.org) Message-Id: <201802180441.w1I4fGc0088728@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmd set sender to jmd@FreeBSD.org using -f From: Johannes M Dieterich Date: Sun, 18 Feb 2018 04:41:16 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: jmd X-SVN-Commit-Paths: in head/graphics: drm-next-kmod gpu-firmware-kmod X-SVN-Commit-Revision: 462202 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Feb 2018 04:41:17 -0000 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 -.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 -.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