svn commit: r276639 - head/sys/modules/drm

Justin Hibbits jhibbits at FreeBSD.org
Sat Jan 3 22:36:20 UTC 2015


Author: jhibbits
Date: Sat Jan  3 22:36:18 2015
New Revision: 276639
URL: https://svnweb.freebsd.org/changeset/base/276639

Log:
  The radeon DRI module doesn't really work correctly on powerpc, so don't build
  it.  Hopefully we'll get radeonkms eventually.
  
  Discussed with:	nwhitehorn
  MFC after:	2 weeks

Modified:
  head/sys/modules/drm/Makefile

Modified: head/sys/modules/drm/Makefile
==============================================================================
--- head/sys/modules/drm/Makefile	Sat Jan  3 22:33:18 2015	(r276638)
+++ head/sys/modules/drm/Makefile	Sat Jan  3 22:36:18 2015	(r276639)
@@ -21,7 +21,9 @@ SUBDIR = \
 .if ${MK_SOURCELESS_UCODE} != "no"
 _mga=		mga
 _r128=		r128
+.if ${MACHINE_CPUARCH} != "powerpc"
 _radeon=	radeon
 .endif
+.endif
 
 .include <bsd.subdir.mk>


More information about the svn-src-all mailing list