diff options
author | brooks <brooks@FreeBSD.org> | 2012-05-09 01:37:48 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2012-05-09 01:37:48 +0000 |
commit | cf039ecfbba42330c58deb861dd983ccbabde733 (patch) | |
tree | 36dd8491f1963429d8ea5437e3f45af2e33948fc | |
parent | 1e276e2841745d5cc243f00bba120847f9bb3658 (diff) | |
download | FreeBSD-src-cf039ecfbba42330c58deb861dd983ccbabde733.zip FreeBSD-src-cf039ecfbba42330c58deb861dd983ccbabde733.tar.gz |
The DDB_CTF has little or nothing to do with the debugger so move it
next KDTRACE_HOOKS.
-rw-r--r-- | sys/amd64/conf/GENERIC | 2 | ||||
-rw-r--r-- | sys/i386/conf/GENERIC | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index b9fb513..dbe3641 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -66,6 +66,7 @@ options CAPABILITIES # Capsicum capabilities options MAC # TrustedBSD MAC Framework options KDTRACE_FRAME # Ensure frames are compiled in options KDTRACE_HOOKS # Kernel DTrace hooks +options DDB_CTF # Kernel ELF linker loads CTF data options INCLUDE_CONFIG_FILE # Include this file in kernel # Debugging support. Always need this: @@ -75,7 +76,6 @@ options KDB # Enable kernel debugger support. # For full debugger support use this instead: options DDB # Support DDB. options GDB # Support remote GDB. -options DDB_CTF # kernel ELF linker loads CTF data options DEADLKRES # Enable the deadlock resolver options INVARIANTS # Enable calls of extra sanity checking options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC index 58b66a1..dade51e 100644 --- a/sys/i386/conf/GENERIC +++ b/sys/i386/conf/GENERIC @@ -66,6 +66,7 @@ options CAPABILITY_MODE # Capsicum capability mode options CAPABILITIES # Capsicum capabilities options MAC # TrustedBSD MAC Framework options KDTRACE_HOOKS # Kernel DTrace hooks +options DDB_CTF # Kernel ELF linker loads CTF data options INCLUDE_CONFIG_FILE # Include this file in kernel # Debugging support. Always need this: @@ -75,7 +76,6 @@ options KDB # Enable kernel debugger support. # For full debugger support use this instead: options DDB # Support DDB. options GDB # Support remote GDB. -options DDB_CTF # kernel ELF linker loads CTF data options DEADLKRES # Enable the deadlock resolver options INVARIANTS # Enable calls of extra sanity checking options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS |