From owner-svn-src-head@FreeBSD.ORG Thu Mar 28 17:07:02 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EBC5CC3B; Thu, 28 Mar 2013 17:07:02 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DE8AA6D9; Thu, 28 Mar 2013 17:07:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2SH72VO026012; Thu, 28 Mar 2013 17:07:02 GMT (envelope-from will@svn.freebsd.org) Received: (from will@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2SH72Tc026011; Thu, 28 Mar 2013 17:07:02 GMT (envelope-from will@svn.freebsd.org) Message-Id: <201303281707.r2SH72Tc026011@svn.freebsd.org> From: Will Andrews Date: Thu, 28 Mar 2013 17:07:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r248838 - head/gnu/usr.bin/gdb/kgdb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Mar 2013 17:07:03 -0000 Author: will Date: Thu Mar 28 17:07:02 2013 New Revision: 248838 URL: http://svnweb.freebsd.org/changeset/base/248838 Log: KGDB: Accept KLD symbol files with the ".symbols" extension. Submitted by: gibbs Approved by: ken (mentor) Sponsored by: Spectra Logic MFC after: 1 month Modified: head/gnu/usr.bin/gdb/kgdb/kld.c Modified: head/gnu/usr.bin/gdb/kgdb/kld.c ============================================================================== --- head/gnu/usr.bin/gdb/kgdb/kld.c Thu Mar 28 17:06:08 2013 (r248837) +++ head/gnu/usr.bin/gdb/kgdb/kld.c Thu Mar 28 17:07:02 2013 (r248838) @@ -78,6 +78,7 @@ kld_ok (char *path) */ static const char *kld_suffixes[] = { ".debug", + ".symbols", "", NULL };