svn commit: r280703 - stable/10/sys/modules/drm2

Ed Maste emaste at FreeBSD.org
Thu Mar 26 17:51:12 UTC 2015


Author: emaste
Date: Thu Mar 26 17:51:11 2015
New Revision: 280703
URL: https://svnweb.freebsd.org/changeset/base/280703

Log:
  MFC r270572: drm/i915: Disable the build of i915 on PC98
  
    This module is of no use on this platform.

Modified:
  stable/10/sys/modules/drm2/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/modules/drm2/Makefile
==============================================================================
--- stable/10/sys/modules/drm2/Makefile	Thu Mar 26 17:21:12 2015	(r280702)
+++ stable/10/sys/modules/drm2/Makefile	Thu Mar 26 17:51:11 2015	(r280703)
@@ -3,6 +3,7 @@
 .include <bsd.own.mk>
 
 .if ${MACHINE_CPUARCH} == "amd64"
+_i915kms=	i915kms
 _radeonkms=	radeonkms
 . if ${MK_SOURCELESS_UCODE} != "no"
 _radeonkmsfw=	radeonkmsfw
@@ -11,6 +12,7 @@ _radeonkmsfw=	radeonkmsfw
 
 .if ${MACHINE_CPUARCH} == "i386"
 . if ${MACHINE} != "pc98"
+_i915kms=	i915kms
 _radeonkms=	radeonkms
 .  if ${MK_SOURCELESS_UCODE} != "no"
 _radeonkmsfw=	radeonkmsfw
@@ -20,7 +22,7 @@ _radeonkmsfw=	radeonkmsfw
 
 SUBDIR = \
 	drm2 \
-	i915kms \
+	${_i915kms} \
 	${_radeonkms} \
 	${_radeonkmsfw}
 


More information about the svn-src-stable mailing list