Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Dec 2018 06:52:26 +0000 (UTC)
From:      Scott Long <scottl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r341762 - head/sys/modules
Message-ID:  <201812090652.wB96qQC1071404@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812090652.wB96qQC1071404>