Author: kensmith
Date: Thu Oct 27 13:07:49 2011
New Revision: 226835
URL: http://svn.freebsd.org/changeset/base/226835

Log:
  Adjust the debugger options slightly.  This should help me do the right
  thing when changing the debugging options as part of head becoming a new
  stable branch.  It may also help people who for one reason or another want
  to run head but don't want it slowed down by the debugging support.
  
  Reviewed by:  kib

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/i386/conf/GENERIC
  head/sys/ia64/conf/GENERIC
  head/sys/pc98/conf/GENERIC
  head/sys/powerpc/conf/GENERIC
  head/sys/sparc64/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC Thu Oct 27 12:26:16 2011        (r226834)
+++ head/sys/amd64/conf/GENERIC Thu Oct 27 13:07:49 2011        (r226835)
@@ -65,8 +65,11 @@ options      MAC                     # TrustedBSD MAC 
Framewor
 #options       KDTRACE_HOOKS           # Kernel DTrace hooks
 options        INCLUDE_CONFIG_FILE     # Include this file in kernel
 
-# Debugging for use in -current
+# 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        GDB                     # Support remote GDB.
 options        DEADLKRES               # Enable the deadlock resolver

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC  Thu Oct 27 12:26:16 2011        (r226834)
+++ head/sys/i386/conf/GENERIC  Thu Oct 27 13:07:49 2011        (r226835)
@@ -65,8 +65,11 @@ options      MAC                     # TrustedBSD MAC 
Framewor
 #options       KDTRACE_HOOKS           # Kernel DTrace hooks
 options        INCLUDE_CONFIG_FILE     # Include this file in kernel
 
-# Debugging for use in -current
+# 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        GDB                     # Support remote GDB.
 options        DEADLKRES               # Enable the deadlock resolver

Modified: head/sys/ia64/conf/GENERIC
==============================================================================
--- head/sys/ia64/conf/GENERIC  Thu Oct 27 12:26:16 2011        (r226834)
+++ head/sys/ia64/conf/GENERIC  Thu Oct 27 13:07:49 2011        (r226835)
@@ -60,8 +60,11 @@ options      UFS_DIRHASH     # Hash-based direct
 options        UFS_GJOURNAL    # Enable gjournal-based UFS journaling
 options        _KPOSIX_PRIORITY_SCHEDULING     # Posix P1003_1B RT extensions
 
-# Debugging for use in -current
-options        KDB             # Enable kernel debugger support
+# 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        GDB             # Support remote GDB
 options        DEADLKRES       # Enable the deadlock resolver

Modified: head/sys/pc98/conf/GENERIC
==============================================================================
--- head/sys/pc98/conf/GENERIC  Thu Oct 27 12:26:16 2011        (r226834)
+++ head/sys/pc98/conf/GENERIC  Thu Oct 27 13:07:49 2011        (r226835)
@@ -66,8 +66,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
+# 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        GDB                     # Support remote GDB.
 options        DEADLKRES               # Enable the deadlock resolver

Modified: head/sys/powerpc/conf/GENERIC
==============================================================================
--- head/sys/powerpc/conf/GENERIC       Thu Oct 27 12:26:16 2011        
(r226834)
+++ head/sys/powerpc/conf/GENERIC       Thu Oct 27 13:07:49 2011        
(r226835)
@@ -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

Modified: head/sys/sparc64/conf/GENERIC
==============================================================================
--- head/sys/sparc64/conf/GENERIC       Thu Oct 27 12:26:16 2011        
(r226834)
+++ head/sys/sparc64/conf/GENERIC       Thu Oct 27 13:07:49 2011        
(r226835)
@@ -63,8 +63,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
+# 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        GDB                     # Support remote GDB.
 options        DEADLKRES               # Enable the deadlock resolver
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to