aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2013-03-28 17:07:02 +0000
committerWill Andrews <will@FreeBSD.org>2013-03-28 17:07:02 +0000
commit5cabf7777e817996e7721c6b2a78011176da2df0 (patch)
treeb3896faba9e7573afbde691359d9bef393657c81
parentc89d0ca50b2106a94e81e3a7ff4ecab750f2d189 (diff)
downloadsrc-5cabf7777e817996e7721c6b2a78011176da2df0.tar.gz
src-5cabf7777e817996e7721c6b2a78011176da2df0.zip
KGDB: Accept KLD symbol files with the ".symbols" extension.
Submitted by: gibbs Approved by: ken (mentor) Sponsored by: Spectra Logic MFC after: 1 month
Notes
Notes: svn path=/head/; revision=248838
-rw-r--r--gnu/usr.bin/gdb/kgdb/kld.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/gdb/kgdb/kld.c b/gnu/usr.bin/gdb/kgdb/kld.c
index 8b89742725ab..50f0797c4cf4 100644
--- a/gnu/usr.bin/gdb/kgdb/kld.c
+++ b/gnu/usr.bin/gdb/kgdb/kld.c
@@ -78,6 +78,7 @@ kld_ok (char *path)
*/
static const char *kld_suffixes[] = {
".debug",
+ ".symbols",
"",
NULL
};