svn commit: r270572 - head/sys/modules/drm2

Jean-Sebastien Pedron dumbbell at FreeBSD.org
Mon Aug 25 14:58:37 UTC 2014


Author: dumbbell
Date: Mon Aug 25 14:58:36 2014
New Revision: 270572
URL: http://svnweb.freebsd.org/changeset/base/270572

Log:
  drm/i915: Disable the build of i915 on PC98
  
  This module is of no use on this platform and now, i915 depends on ACPI
  anyway.
  
  Suggested by:	nyan@

Modified:
  head/sys/modules/drm2/Makefile

Modified: head/sys/modules/drm2/Makefile
==============================================================================
--- head/sys/modules/drm2/Makefile	Mon Aug 25 14:55:56 2014	(r270571)
+++ head/sys/modules/drm2/Makefile	Mon Aug 25 14:58:36 2014	(r270572)
@@ -4,6 +4,7 @@ SYSDIR?=${.CURDIR}/../..
 .include "${SYSDIR}/conf/kern.opts.mk"
 
 .if ${MACHINE_CPUARCH} == "amd64"
+_i915kms=	i915kms
 _radeonkms=	radeonkms
 . if ${MK_SOURCELESS_UCODE} != "no"
 _radeonkmsfw=	radeonkmsfw
@@ -12,6 +13,7 @@ _radeonkmsfw=	radeonkmsfw
 
 .if ${MACHINE_CPUARCH} == "i386"
 . if ${MACHINE} != "pc98"
+_i915kms=	i915kms
 _radeonkms=	radeonkms
 .  if ${MK_SOURCELESS_UCODE} != "no"
 _radeonkmsfw=	radeonkmsfw
@@ -21,7 +23,7 @@ _radeonkmsfw=	radeonkmsfw
 
 SUBDIR = \
 	drm2 \
-	i915kms \
+	${_i915kms} \
 	${_radeonkms} \
 	${_radeonkmsfw}
 


More information about the svn-src-all mailing list