<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/miscfs/devfs, branch upstream/2.0.5_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=upstream%2F2.0.5_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=upstream%2F2.0.5_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>1995-06-10T19:44:55Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>1995-06-10T19:44:55Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>1995-06-10T19:44:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fbe312c9f723b704a542825383058d1a2eb63f94'/>
<id>urn:sha1:fbe312c9f723b704a542825383058d1a2eb63f94</id>
<content type='text'>
'RELENG_2_0_5_RELEASE'.

This commit was manufactured to restore the state of the 2.0.5-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>Remove trailing whitespace.</title>
<updated>1995-05-30T08:16:23Z</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1995-05-30T08:16:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9b2e535452929d6f2f798a2c01b23b1f547a0b0f'/>
<id>urn:sha1:9b2e535452929d6f2f798a2c01b23b1f547a0b0f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>change to reflect reality.</title>
<updated>1995-05-03T23:10:35Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-05-03T23:10:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bacc93a004e520fe73b3c86b91ee33a615922100'/>
<id>urn:sha1:bacc93a004e520fe73b3c86b91ee33a615922100</id>
<content type='text'>
(yes I know I should have done one commit rod....)
</content>
</entry>
<entry>
<title>remove debugging printouts unless DEVFS_DEBUG is set.</title>
<updated>1995-05-03T23:06:31Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-05-03T23:06:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c79137536b6c09abd41752fc8a60a3809f12e255'/>
<id>urn:sha1:c79137536b6c09abd41752fc8a60a3809f12e255</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Submitted by:	phk</title>
<updated>1995-05-03T23:04:26Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-05-03T23:04:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8901d7cafe97cb06e00b3c2649f53cec5bed322a'/>
<id>urn:sha1:8901d7cafe97cb06e00b3c2649f53cec5bed322a</id>
<content type='text'>
if the 'time on a node is 0,..
tell the world it is the same as 'boottime'.
This is becasue 'time' is not set up when we create the nodes,
so we can't set them then.
</content>
</entry>
<entry>
<title>remove note about 'find' now that it's fixed.</title>
<updated>1995-04-20T22:02:05Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-04-20T22:02:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9d55f6fd256646fd4cd89b6c390e263c45fe43fa'/>
<id>urn:sha1:9d55f6fd256646fd4cd89b6c390e263c45fe43fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Submitted by: phk@freebsd.org</title>
<updated>1995-04-20T22:00:05Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-04-20T22:00:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b9494fba5163160a78f78df20d7a0ed4e716578b'/>
<id>urn:sha1:b9494fba5163160a78f78df20d7a0ed4e716578b</id>
<content type='text'>
Reviewed by:	Julian
fixes the 'find' anomaly mentionned in the README
(hmm I guess I should fix that too..)

diff -r1.2 devfs_vnops.c
905a906
&gt;                       dirent.d_type = DT_DIR;
914a916
&gt;                       dirent.d_type = DT_DIR;
920a923,941
&gt;                       switch(name_node-&gt;dnp-&gt;type) {
&gt;                       case DEV_BDEV:
&gt;                               dirent.d_type = DT_BLK;
&gt;                               break;
&gt;                       case DEV_CDEV:
&gt;                               dirent.d_type = DT_CHR;
&gt;                               break;
&gt;                       case DEV_DDEV:
&gt;                               dirent.d_type = DT_SOCK; /*XXX*/
&gt;                               break;
&gt;                       case DEV_DIR:
&gt;                               dirent.d_type = DT_DIR;
&gt;                               break;
&gt;                       case DEV_SLNK:
&gt;                               dirent.d_type = DT_LNK;
&gt;                               break;
&gt;                       default:
&gt;                               dirent.d_type = DT_UNKNOWN;
&gt;                       }
</content>
</entry>
<entry>
<title>Submitted by:	julian</title>
<updated>1995-04-20T07:42:41Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-04-20T07:42:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=072506ba00189ac9c6ffa15033ca64a65c0e038c'/>
<id>urn:sha1:072506ba00189ac9c6ffa15033ca64a65c0e038c</id>
<content type='text'>
@#%$#@ ftp -p corrupted the file in transfer..
(cut off the last 2 lines).. fix this
</content>
</entry>
<entry>
<title>Submitted by:	julian</title>
<updated>1995-04-20T07:34:55Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-04-20T07:34:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b79223f61b0b91743809b0113b31e00881a4c8c2'/>
<id>urn:sha1:b79223f61b0b91743809b0113b31e00881a4c8c2</id>
<content type='text'>
I did a cleanup on the code..
(why didn't I do that before I checked it in? I hear you ask..)
</content>
</entry>
<entry>
<title>Reviewed by:</title>
<updated>1995-04-20T06:36:36Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-04-20T06:36:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=adf18d3b60cbbbb7e1f108ae5d6ae0b89a4e4f6e'/>
<id>urn:sha1:adf18d3b60cbbbb7e1f108ae5d6ae0b89a4e4f6e</id>
<content type='text'>
Submitted by:	julian
oops rename doc file to README as agreed
</content>
</entry>
</feed>
