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

Joel Dahl joel at FreeBSD.org
Fri Jun 29 19:05:30 UTC 2012


Author: joel (doc committer)
Date: Fri Jun 29 19:05:29 2012
New Revision: 237818
URL: http://svn.freebsd.org/changeset/base/237818

Log:
  Reduce diffs between GENERIC and GENERIC64. Also fix a few whitespace nits
  while I'm here. No functional change.

Modified:
  head/sys/powerpc/conf/GENERIC
  head/sys/powerpc/conf/GENERIC64

Modified: head/sys/powerpc/conf/GENERIC
==============================================================================
--- head/sys/powerpc/conf/GENERIC	Fri Jun 29 18:49:14 2012	(r237817)
+++ head/sys/powerpc/conf/GENERIC	Fri Jun 29 19:05:29 2012	(r237818)
@@ -21,14 +21,14 @@
 cpu		AIM
 ident		GENERIC
 
-machine		powerpc	powerpc
+machine 	powerpc powerpc
 
 makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
 
 # Platform support
 options 	POWERMAC		#NewWorld Apple PowerMacs
 options 	PSIM			#GDB PSIM ppc simulator
-options		MAMBO			#IBM Mambo Full System Simulator
+options 	MAMBO			#IBM Mambo Full System Simulator
 
 options 	SCHED_ULE		#ULE scheduler
 options 	PREEMPTION		#Enable kernel thread preemption
@@ -82,7 +82,7 @@ options 	WITNESS			#Enable checks to det
 options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
 options 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
 
-# To make an SMP kernel, the next line is needed
+# Make an SMP-capable kernel by default
 options 	SMP			# Symmetric MultiProcessor Kernel
 
 # CPU frequency control

Modified: head/sys/powerpc/conf/GENERIC64
==============================================================================
--- head/sys/powerpc/conf/GENERIC64	Fri Jun 29 18:49:14 2012	(r237817)
+++ head/sys/powerpc/conf/GENERIC64	Fri Jun 29 19:05:29 2012	(r237818)
@@ -21,14 +21,14 @@
 cpu		AIM
 ident		GENERIC
 
-machine		powerpc	powerpc64
+machine 	powerpc	powerpc64
 
 makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
 
 # Platform support
 options 	POWERMAC		#NewWorld Apple PowerMacs
-options		PS3			#Sony Playstation 3
-options		MAMBO			#IBM Mambo Full System Simulator
+options 	PS3			#Sony Playstation 3
+options 	MAMBO			#IBM Mambo Full System Simulator
 
 options 	SCHED_ULE		#ULE scheduler
 options 	PREEMPTION		#Enable kernel thread preemption
@@ -67,8 +67,11 @@ options 	AUDIT			# Security event auditi
 options 	MAC			# TrustedBSD MAC Framework
 options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
 
-# Debugging for use in -current
-options 	KDB			#Enable the kernel debugger
+# Debugging support.  Always need this:
+options 	KDB			# Enable kernel debugger support.
+# For minimum debugger support (stable branch) use:
+#options 	KDB_TRACE		# Print a stack trace for a panic.
+# For full debugger support use this instead:
 options 	DDB			#Support DDB
 #options 	DEADLKRES		#Enable the deadlock resolver
 options 	INVARIANTS		#Enable calls of extra sanity checking
@@ -171,8 +174,8 @@ device		cue		# CATC USB Ethernet
 device		kue		# Kawasaki LSI USB Ethernet
 
 # Wireless NIC cards
-options         IEEE80211_SUPPORT_MESH
-options         AH_SUPPORT_AR5416
+options		IEEE80211_SUPPORT_MESH
+options		AH_SUPPORT_AR5416
 
 # FireWire support
 device		firewire	# FireWire bus code


More information about the svn-src-head mailing list