aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO8859-1/books/faq
diff options
context:
space:
mode:
authorGabor Pali <pgj@FreeBSD.org>2008-08-07 23:15:53 +0000
committerGabor Pali <pgj@FreeBSD.org>2008-08-07 23:15:53 +0000
commit8da2d237631488cd3aa1838aaa804d23f9f132be (patch)
tree3150ecb28f40d5d7e8e9dc0dc86fa383ceaee198 /en_US.ISO8859-1/books/faq
parent528a228354d5b6f7615a0853bc72b8329d1c127f (diff)
downloaddoc-8da2d237631488cd3aa1838aaa804d23f9f132be.tar.gz
doc-8da2d237631488cd3aa1838aaa804d23f9f132be.zip
Update Question 18.13:
- Remove first person narration remained there accidentally - Mark up kernel configuration file with <filename> - Add missing <userinput> elements for commands - Rename invalid make variable "KERNCONFIG" to "KERNCONF" Approved by: gabor (mentor)
Notes
Notes: svn path=/head/; revision=32645
Diffstat (limited to 'en_US.ISO8859-1/books/faq')
-rw-r--r--en_US.ISO8859-1/books/faq/book.sgml12
1 files changed, 6 insertions, 6 deletions
diff --git a/en_US.ISO8859-1/books/faq/book.sgml b/en_US.ISO8859-1/books/faq/book.sgml
index 8d7e8e9893..ba87d5b854 100644
--- a/en_US.ISO8859-1/books/faq/book.sgml
+++ b/en_US.ISO8859-1/books/faq/book.sgml
@@ -11074,7 +11074,7 @@ panic: page fault</programlisting>
<para>When you see a message like this, it is not enough to
just reproduce it and send it in. The instruction pointer
- value that I highlighted up there is important;
+ value is important;
unfortunately, it is also configuration dependent. In other
words, the value varies depending on the exact kernel image
that you are using. If you are using a
@@ -11130,7 +11130,7 @@ panic: page fault</programlisting>
<step>
<para>Make sure that the following line is included in
your kernel configuration file
- (/usr/src/sys/<replaceable>arch</replaceable>/conf/<replaceable>MYKERNEL</replaceable>):</para>
+ (<filename>/usr/src/sys/<replaceable>arch</replaceable>/conf/<replaceable>MYKERNEL</replaceable></filename>):</para>
<programlisting>makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols</programlisting>
</step>
@@ -11140,13 +11140,13 @@ panic: page fault</programlisting>
class="directory">/usr/src</filename>
directory:</para>
- <screen>&prompt.root; <command>cd</command> <filename class="directory">/usr/src</filename></screen>
+ <screen>&prompt.root; <userinput><command>cd</command> <filename class="directory">/usr/src</filename></userinput></screen>
</step>
<step>
<para>Compile the kernel:</para>
- <screen>&prompt.root; <command>make</command> <maketarget>buildkernel</maketarget> <makevar>KERNCONFIG</makevar>=<replaceable>MYKERNEL</replaceable></screen>
+ <screen>&prompt.root; <userinput><command>make</command> <maketarget>buildkernel</maketarget> <makevar>KERNCONF</makevar>=<replaceable>MYKERNEL</replaceable></userinput></screen>
</step>
<step>
@@ -11154,7 +11154,7 @@ panic: page fault</programlisting>
</step>
<step>
- <screen>&prompt.root; <command>make</command> <maketarget>installkernel</maketarget> <makevar>KERNCONFIG</makevar>=<replaceable>MYKERNEL</replaceable></screen>
+ <screen>&prompt.root; <userinput><command>make</command> <maketarget>installkernel</maketarget> <makevar>KERNCONF</makevar>=<replaceable>MYKERNEL</replaceable></userinput></screen>
</step>
<step>
@@ -11163,7 +11163,7 @@ panic: page fault</programlisting>
</procedure>
<note>
- <para>If you do not use the <makevar>KERNCONFIG</makevar>
+ <para>If you do not use the <makevar>KERNCONF</makevar>
make variable a <filename>GENERIC</filename> kernel will
be built and installed.</para>
</note>