aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO_8859-1
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-10-30 14:05:21 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-10-30 14:05:21 +0000
commit82370415e3dd6b621146443229cd41770e6fdb1b (patch)
tree76cc1c66274cafcb1a59cf6fede5025bfd300c90 /en_US.ISO_8859-1
parentbc2e4917a9a3d4121f6d3383f9ce43e857f63cb3 (diff)
downloaddoc-82370415e3dd6b621146443229cd41770e6fdb1b.tar.gz
doc-82370415e3dd6b621146443229cd41770e6fdb1b.zip
Document the use of nm -n over nm. This allows easier finding
of symbols and their addresses due to the numeric sort. PR: 21999 Submitted by: Johan Karlsson <k@numeri.campus.luth.se>
Notes
Notes: svn path=/head/; revision=8251
Diffstat (limited to 'en_US.ISO_8859-1')
-rw-r--r--en_US.ISO_8859-1/books/faq/book.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/en_US.ISO_8859-1/books/faq/book.sgml b/en_US.ISO_8859-1/books/faq/book.sgml
index 0aa8ef6e3d..3c8782b93a 100644
--- a/en_US.ISO_8859-1/books/faq/book.sgml
+++ b/en_US.ISO_8859-1/books/faq/book.sgml
@@ -15,7 +15,7 @@
</author>
</authorgroup>
- <pubdate>$FreeBSD: doc/en_US.ISO_8859-1/books/faq/book.sgml,v 1.114 2000/10/29 16:44:16 nik Exp $</pubdate>
+ <pubdate>$FreeBSD: doc/en_US.ISO_8859-1/books/faq/book.sgml,v 1.115 2000/10/30 00:59:55 jim Exp $</pubdate>
<abstract>
<para>This is the FAQ for FreeBSD versions 2.X, 3.X, and 4.X.
@@ -10996,7 +10996,7 @@ Cc: current@FreeBSD.org</programlisting>
<listitem>
<para>When the system reboots, do the following:
- <screen>&prompt.user; <userinput>nm /kernel.that.caused.the.panic | grep f0xxxxxx</userinput></screen>
+ <screen>&prompt.user; <userinput>nm -n /kernel.that.caused.the.panic | grep f0xxxxxx</userinput></screen>
where <literal>f0xxxxxx</literal> is the instruction
pointer value. The odds are you will not get an exact
@@ -11007,7 +11007,7 @@ Cc: current@FreeBSD.org</programlisting>
last digit from the instruction pointer value and try
again, i.e.:
- <screen>&prompt.user; <userinput>nm /kernel.that.caused.the.panic | grep f0xxxxx</userinput></screen>
+ <screen>&prompt.user; <userinput>nm -n /kernel.that.caused.the.panic | grep f0xxxxx</userinput></screen>
If that doesn't yield any results, chop off another
digit. Repeat until you get some sort of output. The