From owner-freebsd-emulation Thu Aug 7 17:28:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA09943 for emulation-outgoing; Thu, 7 Aug 1997 17:28:59 -0700 (PDT) Received: from kithrup.com (kithrup.com [205.179.156.40]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA09938 for ; Thu, 7 Aug 1997 17:28:57 -0700 (PDT) Received: (from sef@localhost) by kithrup.com (8.6.8/8.6.6) id RAA17158; Thu, 7 Aug 1997 17:28:47 -0700 Date: Thu, 7 Aug 1997 17:28:47 -0700 From: Sean Eric Fagan Message-Id: <199708080028.RAA17158@kithrup.com> To: pgiffuni@fps.biblos.unal.edu.co, rhh@ct.picker.com Subject: Re: Fun with DOSCMD (was Re: modifying boot mgrs FROM FREEBSD) Cc: emulation@FreeBSD.ORG Sender: owner-freebsd-emulation@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > |> I also need to figure out how to run doscmd in gdb. I rebuild libkvm and > |> gdb for the new kernel, so that's done. But I'm not sure how to "hook in" > |> and set breakpoints inside doscmd.kernel after its read and control is > |> transfered to it by doscmd. I played with the .gdbinit in the pkg but no > |> luck. After you jump through the (rather annoying) jump into doscmd.kernel, you can do: symbol-file doscmd.kernel That will reload the symbol table. I've used it before. Sean.