summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_conf.c
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1999-05-24 00:37:26 +0000
committerjb <jb@FreeBSD.org>1999-05-24 00:37:26 +0000
commit60b7529f2ddfd2c1fa3ffdce4896a2de5aa44219 (patch)
tree9b9dcbac4b69b6caf00622d85a1e851563e05d1b /sys/kern/vfs_conf.c
parent62b04b83d2a5acbd5e53b1f63f67ddef2e1390b2 (diff)
downloadFreeBSD-src-60b7529f2ddfd2c1fa3ffdce4896a2de5aa44219.zip
FreeBSD-src-60b7529f2ddfd2c1fa3ffdce4896a2de5aa44219.tar.gz
Back out my previous change (phk didn't like it) in favour of setting
rootdev in the mfs initialisation code iff MFS_ROOT (which Bruce doesn't like). Damned if I do - damned if I don't.
Diffstat (limited to 'sys/kern/vfs_conf.c')
-rw-r--r--sys/kern/vfs_conf.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c
index ab92484..665d52f 100644
--- a/sys/kern/vfs_conf.c
+++ b/sys/kern/vfs_conf.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
- * $Id: vfs_conf.c,v 1.26 1998/09/14 19:56:40 sos Exp $
+ * $Id: vfs_conf.c,v 1.27 1999/05/23 10:51:33 jb Exp $
*/
/*
@@ -52,7 +52,6 @@
* on SMP reentrancy
*/
#include "opt_bootp.h"
-#include "opt_mfs.h"
#include <sys/param.h> /* dev_t (types.h)*/
#include <sys/kernel.h>
@@ -119,10 +118,8 @@ vfs_mountrootfs(void *unused)
struct mount *mp;
int err;
struct proc *p = curproc; /* XXX */
-#ifndef MFS_ROOT
int i;
dev_t orootdev;
-#endif
#ifdef BOOTP
bootpc_init();
@@ -140,9 +137,6 @@ vfs_mountrootfs(void *unused)
/*
* Attempt the mount
*/
-#ifdef MFS_ROOT
- err = VFS_MOUNT(mp, NULL, NULL, NULL, p);
-#else
err = ENXIO;
orootdev = rootdev;
if (rootdevs[0] == NODEV)
@@ -161,7 +155,6 @@ vfs_mountrootfs(void *unused)
if (err != ENXIO)
break;
}
-#endif
if (err) {
/*
* XXX should ask the user for the name in some cases.
OpenPOWER on IntegriCloud