summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1995-04-25 03:41:12 +0000
committerphk <phk@FreeBSD.org>1995-04-25 03:41:12 +0000
commite90c15cdbc9f0a17b77684a1f0c139f6b3f8ed44 (patch)
tree609b47d0ccee30b17d35e57daedd210ae53aaa59 /sys/i386
parent4ebce87282ce043e2c4a9a16fc84ecad02dc4e10 (diff)
downloadFreeBSD-src-e90c15cdbc9f0a17b77684a1f0c139f6b3f8ed44.zip
FreeBSD-src-e90c15cdbc9f0a17b77684a1f0c139f6b3f8ed44.tar.gz
Add support for MFS root filesystem.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/autoconf.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c
index b87a461..cb627e0 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;
OpenPOWER on IntegriCloud