From owner-freebsd-hackers@FreeBSD.ORG Mon Oct 3 19:54:52 2011 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21C61106564A for ; Mon, 3 Oct 2011 19:54:52 +0000 (UTC) (envelope-from lacombar@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id AC26E8FC19 for ; Mon, 3 Oct 2011 19:54:51 +0000 (UTC) Received: by wyj26 with SMTP id 26so4797957wyj.13 for ; Mon, 03 Oct 2011 12:54:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=4DMqX6498EqpPLiwBYENJsadgIBI/Tn4qp28CKQ3WU8=; b=TAGLLBygKcp3basZQ8M8OacjGLaRds8WR/YT4Mk82tON/0IbnlZTFVDPGt4hMUqd4N P6J73vR3zuXbRn6Ciz7/upCpw8gxpunMQu81/1oL+sm33uhuHreY1sra+JY0EY8VGzLy nus5tIJVPVylMpOz203SxGSiM16ZNyt6Nzs88= MIME-Version: 1.0 Received: by 10.227.153.211 with SMTP id l19mr376662wbw.51.1317671690082; Mon, 03 Oct 2011 12:54:50 -0700 (PDT) Received: by 10.180.103.33 with HTTP; Mon, 3 Oct 2011 12:54:50 -0700 (PDT) In-Reply-To: References: Date: Mon, 3 Oct 2011 15:54:50 -0400 Message-ID: From: Arnaud Lacombe To: Ryan Stone Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Hackers , Mark Johnston Subject: Re: Installation of kernel symbols file in a separate directory [Was: Re: Experiences with FreeBSD 9.0-BETA2] X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2011 19:54:52 -0000 Hi, On Wed, Sep 28, 2011 at 10:30 AM, Ryan Stone wrote: > You might be interested in this PR: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=153157&cat= > > This does the same thing for userland .symbols files, and teaches gdb > how to find them. > Actually, I've made my own implementation of this. It is available here: https://github.com/lacombar/freebsd/commit/e6cb6f2d20ffb6a060124f98c4f4cc660fe6f8bb However, it is a bit more intrusive, as highlighted in the following: https://github.com/lacombar/freebsd/commit/8850b8acf5008c6f9de019ebc3691b090c894605 - Arnaud