svn commit: r341762 - head/sys/modules

Scott Long scottl at FreeBSD.org
Sun Dec 9 06:52:26 UTC 2018


Author: scottl
Date: Sun Dec  9 06:52:25 2018
New Revision: 341762
URL: https://svnweb.freebsd.org/changeset/base/341762

Log:
  I missed powerpcspe in the previous commit for excluding mps and mpr.
  I also learned that 'mips' is overly broad and covers 64bit architectures
  too.  However, it's not worth the fight right now, so any refinements
  will have to come another day.

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Sun Dec  9 06:48:44 2018	(r341761)
+++ head/sys/modules/Makefile	Sun Dec  9 06:52:25 2018	(r341762)
@@ -524,7 +524,8 @@ _cxgbe=		cxgbe
 .endif
 
 # These rely on 64bit atomics
-.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "mips"
+.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "powerpcspc" && \
+	${MACHINE_CPUARCH} != "mips"
 _mps=		mps
 _mpr=		mpr
 .endif


More information about the svn-src-all mailing list