diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index b87a461f086a..cb627e0bd59f 100644 --- a/sys/amd64/amd64/autoconf.c +++ b/sys/amd64/amd64/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.25 1995/04/23 09:12:39 julian Exp $ + * $Id: autoconf.c,v 1.26 1995/04/23 09:17:24 julian Exp $ */ /* @@ -77,6 +77,14 @@ int nfs_mountroot __P((void)); #ifdef CD9660 int cd9660_mountroot __P((void)); #endif +#ifdef MSDOSFS +int msdosfs_mountroot __P((void)); +#endif +#ifdef MFS_ROOT +int mfs_initminiroot __P((u_char *)); +u_char mfs_root[MFS_ROOT*1024] = "MFS Filesystem goes here"; +u_char end_mfs_root[] = "MFS Filesystem had better STOP here"; +#endif #include "eisa.h" #include "isa.h" @@ -164,6 +172,10 @@ configure() configure_finish(); +#ifdef MFS_ROOT + mfs_initminiroot(mfs_root); +#endif /* MFS_ROOT */ + #ifdef CD9660 if ((boothowto & RB_CDROM) && !mountroot) mountroot = find_cdrom_root; diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index b87a461f086a..cb627e0bd59f 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.25 1995/04/23 09:12:39 julian Exp $ + * $Id: autoconf.c,v 1.26 1995/04/23 09:17:24 julian Exp $ */ /* @@ -77,6 +77,14 @@ int nfs_mountroot __P((void)); #ifdef CD9660 int cd9660_mountroot __P((void)); #endif +#ifdef MSDOSFS +int msdosfs_mountroot __P((void)); +#endif +#ifdef MFS_ROOT +int mfs_initminiroot __P((u_char *)); +u_char mfs_root[MFS_ROOT*1024] = "MFS Filesystem goes here"; +u_char end_mfs_root[] = "MFS Filesystem had better STOP here"; +#endif #include "eisa.h" #include "isa.h" @@ -164,6 +172,10 @@ configure() configure_finish(); +#ifdef MFS_ROOT + mfs_initminiroot(mfs_root); +#endif /* MFS_ROOT */ + #ifdef CD9660 if ((boothowto & RB_CDROM) && !mountroot) mountroot = find_cdrom_root;