diff options
author | eivind <eivind@FreeBSD.org> | 1998-01-24 02:54:56 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-01-24 02:54:56 +0000 |
commit | 71ddd313905625e7a30459009de6972aa2fd42a2 (patch) | |
tree | 6d6142bad3e6171bba77304251f69f1a8ab13c2d /sys/ufs/lfs/lfs_syscalls.c | |
parent | 71161cca1452c50ca0ea535bae82c1df9c67663c (diff) | |
download | FreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.zip FreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.tar.gz |
Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.
This introduce an xxxFS_BOOT for each of the rootable filesystems.
(Presently not required, but encouraged to allow a smooth move of option *FS
to opt_dontuse.h later.)
LFS is temporarily disabled, and will be re-enabled tomorrow.
Diffstat (limited to 'sys/ufs/lfs/lfs_syscalls.c')
-rw-r--r-- | sys/ufs/lfs/lfs_syscalls.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/lfs/lfs_syscalls.c b/sys/ufs/lfs/lfs_syscalls.c index 4d2e06b..f575f34 100644 --- a/sys/ufs/lfs/lfs_syscalls.c +++ b/sys/ufs/lfs/lfs_syscalls.c @@ -31,9 +31,11 @@ * SUCH DAMAGE. * * @(#)lfs_syscalls.c 8.10 (Berkeley) 5/14/95 - * $Id: lfs_syscalls.c,v 1.19 1997/03/23 00:45:20 bde Exp $ + * $Id: lfs_syscalls.c,v 1.20 1997/11/06 19:29:51 phk Exp $ */ +#include "opt_lfs.h" /* XXX: Indicate bogus header dependency */ + #include <sys/param.h> #include <sys/systm.h> #include <sys/sysproto.h> |