aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiorgos Keramidas <keramida@FreeBSD.org>2002-02-14 13:33:34 +0000
committerGiorgos Keramidas <keramida@FreeBSD.org>2002-02-14 13:33:34 +0000
commit96d4dfa27304708574d937fbb8aadd5e97d7c722 (patch)
tree4763a5d08fd3fbf886c02f1dd5ae8e404dcae60e
parent924220591dfbb11686c70df5d017175a85bd8c28 (diff)
downloaddoc-96d4dfa27304708574d937fbb8aadd5e97d7c722.tar.gz
doc-96d4dfa27304708574d937fbb8aadd5e97d7c722.zip
Add missing ; character after &prompt.root entities.
PR: docs/34914 Submitted by: Ceri <setantae@submonkey.net>
Notes
Notes: svn path=/head/; revision=12179
-rw-r--r--en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.sgml9
-rw-r--r--en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml9
2 files changed, 8 insertions, 10 deletions
diff --git a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.sgml b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.sgml
index 3590d12a2d..8dfde91426 100644
--- a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.sgml
+++ b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.sgml
@@ -123,8 +123,7 @@ KMOD=skeleton
<para>Simply running <command>make</command> with this makefile
will create a file <filename>skeleton.ko</filename> that can
be loaded into your system by typing :
-<screen> &prompt.root
- kldload -v ./skeleton.ko</screen>
+<screen>&prompt.root; kldload -v ./skeleton.ko</screen>
</para>
</sect2>
</sect1>
@@ -337,13 +336,13 @@ DEV_MODULE(echo,echo_loader,NULL);</programlisting>
<para>To install this driver you will first need to make a node on
your filesystem with a command such as : </para>
- <screen>&prompt.root mknod /dev/echo c 33 0</screen>
+ <screen>&prompt.root; mknod /dev/echo c 33 0</screen>
<para>With this driver loaded you should now be able to type
something like :</para>
- <screen>&prompt.root echo -n "Test Data" > /dev/echo
-&prompt.root cat /dev/echo
+ <screen>&prompt.root; echo -n "Test Data" > /dev/echo
+&prompt.root; cat /dev/echo
Test Data</screen>
<para>Real hardware devices in the next chapter..</para>
diff --git a/en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml
index 3590d12a2d..8dfde91426 100644
--- a/en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml
+++ b/en_US.ISO8859-1/books/developers-handbook/driverbasics/chapter.sgml
@@ -123,8 +123,7 @@ KMOD=skeleton
<para>Simply running <command>make</command> with this makefile
will create a file <filename>skeleton.ko</filename> that can
be loaded into your system by typing :
-<screen> &prompt.root
- kldload -v ./skeleton.ko</screen>
+<screen>&prompt.root; kldload -v ./skeleton.ko</screen>
</para>
</sect2>
</sect1>
@@ -337,13 +336,13 @@ DEV_MODULE(echo,echo_loader,NULL);</programlisting>
<para>To install this driver you will first need to make a node on
your filesystem with a command such as : </para>
- <screen>&prompt.root mknod /dev/echo c 33 0</screen>
+ <screen>&prompt.root; mknod /dev/echo c 33 0</screen>
<para>With this driver loaded you should now be able to type
something like :</para>
- <screen>&prompt.root echo -n "Test Data" > /dev/echo
-&prompt.root cat /dev/echo
+ <screen>&prompt.root; echo -n "Test Data" > /dev/echo
+&prompt.root; cat /dev/echo
Test Data</screen>
<para>Real hardware devices in the next chapter..</para>