diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-07-28 11:54:09 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-07-28 11:54:09 +0000 |
commit | eba01e2cbc14120e72f7408486af2a08cb5e7749 (patch) | |
tree | 244d0553ee77d89655427692aad20e5f907d8da6 /sys | |
parent | dd73d75cd10a7d9ad861c74d367639da92b1c29d (diff) | |
download | FreeBSD-src-eba01e2cbc14120e72f7408486af2a08cb5e7749.zip FreeBSD-src-eba01e2cbc14120e72f7408486af2a08cb5e7749.tar.gz |
Rename the loadable nullfs kernel module: null -> nullfs
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/forth/loader.conf | 2 | ||||
-rw-r--r-- | sys/fs/nullfs/null_vfsops.c | 2 | ||||
-rw-r--r-- | sys/miscfs/nullfs/null_vfsops.c | 2 | ||||
-rw-r--r-- | sys/modules/nullfs/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf index 60abf27..272f37e 100644 --- a/sys/boot/forth/loader.conf +++ b/sys/boot/forth/loader.conf @@ -90,7 +90,7 @@ mfs_load="NO" # Memory filesystem msdos_load="NO" # FAT-12/16/32 nfs_load="NO" # NFS ntfs_load="NO" # NTFS -null_load="NO" # Null filesystem +nullfs_load="NO" # Null filesystem portal_load="NO" # Portal filesystem procfs_load="NO" # Process filesystem umap_load="NO" # User-id map filesystem diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c index a793bc7..43e0e84 100644 --- a/sys/fs/nullfs/null_vfsops.c +++ b/sys/fs/nullfs/null_vfsops.c @@ -446,4 +446,4 @@ static struct vfsops null_vfsops = { nullfs_extattrctl, }; -VFS_SET(null_vfsops, null, VFCF_LOOPBACK); +VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK); diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c index a793bc7..43e0e84 100644 --- a/sys/miscfs/nullfs/null_vfsops.c +++ b/sys/miscfs/nullfs/null_vfsops.c @@ -446,4 +446,4 @@ static struct vfsops null_vfsops = { nullfs_extattrctl, }; -VFS_SET(null_vfsops, null, VFCF_LOOPBACK); +VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK); diff --git a/sys/modules/nullfs/Makefile b/sys/modules/nullfs/Makefile index e895b4b..5786066 100644 --- a/sys/modules/nullfs/Makefile +++ b/sys/modules/nullfs/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../miscfs/nullfs -KMOD= null +KMOD= nullfs SRCS= vnode_if.h \ null_subr.c null_vfsops.c null_vnops.c NOMAN= |