Date: Sat, 3 Jan 2015 22:36:19 +0000 (UTC) From: Justin Hibbits <jhibbits@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276639 - head/sys/modules/drm Message-ID: <201501032236.t03MaJJY012507@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501032236.t03MaJJY012507>