Add missing ; character after &prompt.root entities.

PR:		docs/34914
Submitted by:	Ceri <setantae@submonkey.net>
This commit is contained in:
Giorgos Keramidas 2002-02-14 13:33:34 +00:00
parent 924220591d
commit 96d4dfa273
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=12179
2 changed files with 8 additions and 10 deletions
en_US.ISO8859-1/books
arch-handbook/driverbasics
developers-handbook/driverbasics

View file

@ -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>

View file

@ -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>