svn commit: r300815 - head/sys/modules

Ian Lepore ian at FreeBSD.org
Fri May 27 01:14:37 UTC 2016


Author: ian
Date: Fri May 27 01:14:35 2016
New Revision: 300815
URL: https://svnweb.freebsd.org/changeset/base/300815

Log:
  Only build gpio modules on armv6, until it's known that they can be built
  succesfully on other arches.

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri May 27 01:07:48 2016	(r300814)
+++ head/sys/modules/Makefile	Fri May 27 01:14:35 2016	(r300815)
@@ -125,7 +125,7 @@ SUBDIR=	\
 	geom \
 	${_glxiic} \
 	${_glxsb} \
-	gpio \
+	${_gpio} \
 	hatm \
 	hifn \
 	hme \
@@ -733,6 +733,10 @@ _cfi=		cfi
 _cpsw=		cpsw
 .endif
 
+.if ${MACHINE_ARCH} == "armv6"
+_gpio=		gpio
+.endif
+
 .if ${MACHINE_CPUARCH} == "powerpc"
 _agp=		agp
 _an=		an


More information about the svn-src-head mailing list