neysx 05/06/20 09:41:16 Modified: xml/htdocs/doc/en devfs-guide.xml Log: Coding style & license comment, no content change
Revision Changes Path 1.10 +15 -12 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.10&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.10&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.9&r2=1.10&cvsroot=gentoo Index: devfs-guide.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- devfs-guide.xml 20 Jun 2005 08:09:11 -0000 1.9 +++ devfs-guide.xml 20 Jun 2005 09:41:16 -0000 1.10 @@ -1,5 +1,5 @@ <?xml version='1.0' encoding="UTF-8"?> -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v 1.9 2005/06/20 08:09:11 fox2mike Exp $ --> +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/devfs-guide.xml,v 1.10 2005/06/20 09:41:16 neysx Exp $ --> <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> @@ -17,6 +17,8 @@ and how to work with it. </abstract> +<!-- The content of this document is licensed under the CC-BY-SA license --> +<!-- See http://creativecommons.org/licenses/by-sa/2.5 --> <license/> <version>0.4</version> @@ -28,8 +30,9 @@ <title>The (good?) old days</title> <body> -<warn>devfs is <e>obsolete</e> and will eventually be removed from the stable -2.6 tree. Users on 2.6 kernels are hereby advised to switch to udev. For further +<warn> +devfs is <e>obsolete</e> and will eventually be removed from the stable 2.6 +tree. Users on 2.6 kernels are hereby advised to switch to udev. For further information on udev, please refer to the <uri link="/doc/en/udev-guide.xml">Gentoo udev Guide</uri>. </warn> @@ -58,7 +61,7 @@ like this: </p> -<pre caption = "Checking the information of a device file"> +<pre caption="Checking the information of a device file"> # <i>ls -l /dev/hda</i> brw-rw---- 1 root disk 3, 0 Jul 5 2000 /dev/hda </pre> @@ -219,7 +222,7 @@ directories which I have on my laptop: </p> -<pre caption = "Directories in /dev"> +<pre caption="Directories in /dev"> cdroms/ cpu/ discs/ floppy/ ide/ input/ loop/ misc/ netlink/ printers/ pts/ pty/ @@ -240,7 +243,7 @@ names, pointing to the new device files. </p> -<pre caption = "Created symlinks"> +<pre caption="Created symlinks"> $ <i>ls -l /dev/hda4</i> lr-xr-xr-x 1 root root 33 Aug 25 12:08 /dev/hda4 -> ide/host0/bus0/target0/lun0/part4 </pre> @@ -281,7 +284,7 @@ To send a signal, simply use <c>kill</c> or <c>killall</c>: </p> -<pre caption = "Sending the SIGHUP signal to devfsd"> +<pre caption="Sending the SIGHUP signal to devfsd"> # <i>kill -s SIGHUP `pidof devfsd`</i> <comment>or</comment> # <i>killall -s SIGHUP devfsd</i> @@ -303,7 +306,7 @@ <path>/etc/devfsd.conf</path> and remove the following two lines: </p> -<pre caption = "/etc/devfsd.conf for backwards compatibility"> +<pre caption="/etc/devfsd.conf for backwards compatibility"> <comment># Comment the following two lines out to remove the symlinks</comment> REGISTER .* MKOLDCOMPAT UNREGISTER .* RMOLDCOMPAT @@ -325,7 +328,7 @@ <path>/etc/devfsd.conf</path>: </p> -<pre caption = "/etc/devfsd.conf, autoload functionality"> +<pre caption="/etc/devfsd.conf, autoload functionality"> LOOKUP .* MODLOAD </pre> @@ -350,7 +353,7 @@ then use the syntax used in the following example: </p> -<pre caption = "Permissions in /etc/devfsd.conf"> +<pre caption="Permissions in /etc/devfsd.conf"> REGISTER ^cdroms/.* PERMISSIONS root.cdrom 0660 </pre> @@ -379,7 +382,7 @@ following lines: </p> -<pre caption = "/etc/devfsd.conf for saving permissions"> +<pre caption="/etc/devfsd.conf for saving permissions"> REGISTER ^pt[sy]/.* IGNORE CHANGE ^pt[sy]/.* IGNORE CREATE ^pt[sy]/.* IGNORE @@ -410,7 +413,7 @@ at the beginning of the bootscripts of your system, you place: </p> -<pre caption = "Mounting /lib/dev-state on top of /dev"> +<pre caption="Mounting /lib/dev-state on top of /dev"> mount --bind /dev /lib/dev-state mount -t devfs none /dev devfsd /dev -- [email protected] mailing list
