Date: Wed, 7 Aug 2013 08:03:51 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254051 - in head/sys: amd64/conf i386/conf ia64/conf powerpc/conf sparc64/conf Message-ID: <201308070803.r7783pCd095888@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: avg Date: Wed Aug 7 08:03:50 2013 New Revision: 254051 URL: http://svnweb.freebsd.org/changeset/base/254051 Log: enable KDB_TRACE in GENERICs KDB_TRACE is not an alternative to DDB/etc, they are complementary. So I do not see any reason to not enable KDB_TRACE by default. X-MFC after: never (change specific to head) Modified: head/sys/amd64/conf/GENERIC head/sys/i386/conf/GENERIC head/sys/ia64/conf/GENERIC head/sys/powerpc/conf/GENERIC head/sys/sparc64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/amd64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -75,7 +75,7 @@ options INCLUDE_CONFIG_FILE # Inclu # 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. +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. Modified: head/sys/i386/conf/GENERIC ============================================================================== --- head/sys/i386/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/i386/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -75,7 +75,7 @@ options INCLUDE_CONFIG_FILE # Inclu # 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. +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. Modified: head/sys/ia64/conf/GENERIC ============================================================================== --- head/sys/ia64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/ia64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -66,7 +66,7 @@ options _KPOSIX_PRIORITY_SCHEDULING # P # 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. +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 Modified: head/sys/powerpc/conf/GENERIC ============================================================================== --- head/sys/powerpc/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/powerpc/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -77,7 +77,7 @@ options INCLUDE_CONFIG_FILE # Inclu # 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. +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 Modified: head/sys/sparc64/conf/GENERIC ============================================================================== --- head/sys/sparc64/conf/GENERIC Wed Aug 7 07:44:13 2013 (r254050) +++ head/sys/sparc64/conf/GENERIC Wed Aug 7 08:03:50 2013 (r254051) @@ -69,7 +69,7 @@ options INCLUDE_CONFIG_FILE # Include t # 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. +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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308070803.r7783pCd095888>