svn commit: r343970 - head/sys/powerpc/conf

Justin Hibbits jhibbits at FreeBSD.org
Sun Feb 10 20:21:21 UTC 2019


Author: jhibbits
Date: Sun Feb 10 20:21:20 2019
New Revision: 343970
URL: https://svnweb.freebsd.org/changeset/base/343970

Log:
  powerpc: Clamp MAXCPU for MPC85XXSPE kernel to 2
  
  SoCs with e500v2 chips only have at most 2 cores, and there are no plans to
  release any more e500v2-based SoCs.  Clamping MAXCPU down to 2 saves 5MB of
  data, and 1.5MB bss.

Modified:
  head/sys/powerpc/conf/MPC85XXSPE

Modified: head/sys/powerpc/conf/MPC85XXSPE
==============================================================================
--- head/sys/powerpc/conf/MPC85XXSPE	Sun Feb 10 20:13:59 2019	(r343969)
+++ head/sys/powerpc/conf/MPC85XXSPE	Sun Feb 10 20:21:20 2019	(r343970)
@@ -16,6 +16,7 @@ makeoptions	WITH_CTF=1
 makeoptions	WERROR="-Werror -Wno-format -Wno-redundant-decls"
 
 options 	FPU_EMU
+options 	MAXCPU=2
 
 options 	_KPOSIX_PRIORITY_SCHEDULING
 options 	ALT_BREAK_TO_DEBUGGER


More information about the svn-src-all mailing list