diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 01:45:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 01:45:35 +0000 |
commit | 8d25f4b8805cfacf1c46a3a5efa8ce5241f83304 (patch) | |
tree | c74f3950c98dc28d9a0ee97ad1991d6fc59cdb8d | |
parent | 9d029c6d927add68cc28d77ebddf624c20da1ca7 (diff) |
use dk_mountroot
-rw-r--r-- | sys/arch/mvme68k/mvme68k/autoconf.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/arch/mvme68k/mvme68k/autoconf.c b/sys/arch/mvme68k/mvme68k/autoconf.c index 5a3bed44bdd..76218732d02 100644 --- a/sys/arch/mvme68k/mvme68k/autoconf.c +++ b/sys/arch/mvme68k/mvme68k/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.8 1996/06/16 10:34:37 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.9 1996/11/06 01:45:34 deraadt Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -373,14 +373,9 @@ setroot() register int len, majdev, mindev; dev_t nrootdev, nswapdev = NODEV; char buf[128]; - extern int (*mountroot) __P((void *)); dev_t temp; #if defined(NFSCLIENT) extern char *nfsbootdevname; - extern int nfs_mountroot __P((void *)); -#endif -#if defined(FFS) - extern int ffs_mountroot __P((void *)); #endif printf("boot device: %s\n", @@ -508,7 +503,7 @@ gotswap: #endif #if defined(FFS) case DV_DISK: - mountroot = ffs_mountroot; + mountroot = dk_mountroot; majdev = major(rootdev); mindev = minor(rootdev); printf("root on %s%c\n", bootdv->dv_xname, |