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/dev/sio/sio.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/dev/sio/sio.c')
-rw-r--r-- | sys/dev/sio/sio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 8c9b71d..922d93b 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -31,12 +31,13 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.193 1997/12/28 06:36:35 bde Exp $ + * $Id: sio.c,v 1.194 1998/01/08 04:53:43 amurai Exp $ */ #include "opt_comconsole.h" #include "opt_compat.h" #include "opt_ddb.h" +#include "opt_devfs.h" #include "opt_sio.h" #include "sio.h" #include "pnp.h" |