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

Justin Hibbits jhibbits at FreeBSD.org
Sun Aug 19 19:08:00 UTC 2018


Author: jhibbits
Date: Sun Aug 19 19:07:59 2018
New Revision: 338073
URL: https://svnweb.freebsd.org/changeset/base/338073

Log:
  powerpc conf: Add PRINTF_BUFR_SIZE option to Book-E configs
  
  Without this, printf is very hard to follow at times on multicore systems.

Modified:
  head/sys/powerpc/conf/MPC85XX
  head/sys/powerpc/conf/MPC85XXSPE

Modified: head/sys/powerpc/conf/MPC85XX
==============================================================================
--- head/sys/powerpc/conf/MPC85XX	Sun Aug 19 19:03:43 2018	(r338072)
+++ head/sys/powerpc/conf/MPC85XX	Sun Aug 19 19:07:59 2018	(r338073)
@@ -47,6 +47,7 @@ options 	MSDOSFS
 options 	NFS_ROOT
 options 	NFSCL
 options 	NFSLOCKD
+options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
 options 	PROCFS
 options 	PSEUDOFS
 options 	SCHED_ULE

Modified: head/sys/powerpc/conf/MPC85XXSPE
==============================================================================
--- head/sys/powerpc/conf/MPC85XXSPE	Sun Aug 19 19:03:43 2018	(r338072)
+++ head/sys/powerpc/conf/MPC85XXSPE	Sun Aug 19 19:07:59 2018	(r338073)
@@ -47,6 +47,7 @@ options 	MSDOSFS
 options 	NFS_ROOT
 options 	NFSCL
 options 	NFSLOCKD
+options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
 options 	PROCFS
 options 	PSEUDOFS
 options 	SCHED_ULE


More information about the svn-src-all mailing list