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/kern/tty_tty.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/kern/tty_tty.c')
-rw-r--r-- | sys/kern/tty_tty.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/tty_tty.c b/sys/kern/tty_tty.c index b4791ff..080ecac 100644 --- a/sys/kern/tty_tty.c +++ b/sys/kern/tty_tty.c @@ -31,12 +31,15 @@ * SUCH DAMAGE. * * @(#)tty_tty.c 8.2 (Berkeley) 9/23/93 - * $Id: tty_tty.c,v 1.20 1997/11/18 12:59:09 bde Exp $ + * $Id: tty_tty.c,v 1.21 1997/12/05 19:55:39 bde Exp $ */ /* * Indirect driver for controlling tty. */ + +#include "opt_devfs.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/conf.h> |