diff options
author | jb <jb@FreeBSD.org> | 1999-05-24 00:54:17 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1999-05-24 00:54:17 +0000 |
commit | 4454c28c9e7cf349d5f0304c80941e33d608a51f (patch) | |
tree | 358e87b45ea056307a3e7ec15dbd30dd5601eee9 /sys | |
parent | 60b7529f2ddfd2c1fa3ffdce4896a2de5aa44219 (diff) | |
download | FreeBSD-src-4454c28c9e7cf349d5f0304c80941e33d608a51f.zip FreeBSD-src-4454c28c9e7cf349d5f0304c80941e33d608a51f.tar.gz |
Remove the mfs stuff now that mfs_init() does the MFS_ROOT initialisation.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/alpha/autoconf.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/alpha/alpha/autoconf.c b/sys/alpha/alpha/autoconf.c index 0dbb91c..a8f6806 100644 --- a/sys/alpha/alpha/autoconf.c +++ b/sys/alpha/alpha/autoconf.c @@ -23,13 +23,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: autoconf.c,v 1.24 1999/05/14 11:13:19 dfr Exp $ + * $Id: autoconf.c,v 1.25 1999/05/15 17:56:34 dfr Exp $ */ #include "opt_bootp.h" #include "opt_ffs.h" #include "opt_cd9660.h" -#include "opt_mfs.h" #include "opt_nfsroot.h" #include <sys/param.h> @@ -58,10 +57,6 @@ #include <cam/cam_xpt_sim.h> #include <cam/cam_debug.h> -#ifdef MFS_ROOT -#include <ufs/mfs/mfs_extern.h> -#endif - static void configure __P((void *)); SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL) @@ -218,18 +213,6 @@ configure(void *dummy) void cpu_rootconf() { -#ifdef MFS_ROOT - if (!mountrootfsname) { - - if (bootverbose) - printf("Considering MFS root f/s.\n"); - if (mfs_getimage()) - mountrootfsname = "mfs"; - else if (bootverbose) - printf("No MFS image available as root f/s.\n"); - } -#endif - #ifdef BOOTP_NFSROOT if (!strcmp(bootdev_protocol(), "BOOTP") && !mountrootfsname && !nfs_diskless_valid) { |