| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
'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.
|
| |
|
|
| |
Notes:
svn path=/head/; revision=8876
|
| |
|
|
|
|
|
|
|
|
| |
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.
Notes:
svn path=/head/; revision=8253
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
> dirent.d_type = DT_DIR;
914a916
> dirent.d_type = DT_DIR;
920a923,941
> switch(name_node->dnp->type) {
> case DEV_BDEV:
> dirent.d_type = DT_BLK;
> break;
> case DEV_CDEV:
> dirent.d_type = DT_CHR;
> break;
> case DEV_DDEV:
> dirent.d_type = DT_SOCK; /*XXX*/
> break;
> case DEV_DIR:
> dirent.d_type = DT_DIR;
> break;
> case DEV_SLNK:
> dirent.d_type = DT_LNK;
> break;
> default:
> dirent.d_type = DT_UNKNOWN;
> }
Notes:
svn path=/head/; revision=7963
|
| |
|
|
|
|
|
|
| |
I did a cleanup on the code..
(why didn't I do that before I checked it in? I hear you ask..)
Notes:
svn path=/head/; revision=7957
|
|
|
Submitted by: julian@freebsd.org
Obtained from: written from scratch
Notes:
svn path=/head/; revision=7946
|