fox2mike 05/07/18 10:03:44 Modified: xml/htdocs/doc/en devfs-guide.xml Log: Fixing wrong usage of GuideXML tags. Thanks to Jan Kundrat for reporting.
Revision Changes Path 1.11 +6 -6 xml/htdocs/doc/en/devfs-guide.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/devfs-guide.xml?rev=1.11&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/devfs-guide.xml?rev=1.11&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/devfs-guide.xml.diff?r1=1.10&r2=1.11&cvsroot=gentoo Index: devfs-guide.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- devfs-guide.xml 20 Jun 2005 09:41:16 -0000 1.10 +++ devfs-guide.xml 18 Jul 2005 10:03:44 -0000 1.11 @@ -1,5 +1,5 @@ <?xml version='1.0' encoding="UTF-8"?> -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v 1.10 2005/06/20 09:41:16 neysx Exp $ --> +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v 1.11 2005/07/18 10:03:44 fox2mike Exp $ --> <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> @@ -21,8 +21,8 @@ <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> <license/> -<version>0.4</version> -<date>2005-06-20</date> +<version>0.5</version> +<date>2005-07-18</date> <chapter> <title>What is devfs?</title> @@ -69,7 +69,7 @@ <p> In the previous example we see that <path>/dev/hda</path> is a block device. However, more importantly, it has two special numbers assigned -to it: <path>3, 0</path>. This pair is called the <e>major-minor</e> +to it: <b>3, 0</b>. This pair is called the <e>major-minor</e> pair. It is used by the kernel to map a device file to a real device. The major corresponds with a certain device, the minor with a subdevice. Seems confusing? It isn't. @@ -78,9 +78,9 @@ <p> Two examples are <path>/dev/hda4</path> and <path>/dev/tty5</path>. The first device file corresponds with the fourth partition on the first IDE -device. Its major-minor pair is <path>3, 4</path>. In other words, the +device. Its major-minor pair is <b>3, 4</b>. In other words, the minor corresponds with the partition where the major corresponds with -the device. The second example has <path>4, 5</path> as major-minor +the device. The second example has <b>4, 5</b> as major-minor pair. In this case, the major corresponds with the terminal driver, while the minor corresponds with the terminal number (in this case, the fifth terminal). -- [email protected] mailing list
