diff options
-rw-r--r-- | sys/amd64/amd64/autoconf.c | 19 | ||||
-rw-r--r-- | sys/i386/i386/autoconf.c | 19 |
2 files changed, 20 insertions, 18 deletions
diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index bde3f25..409cda5 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.57 1996/12/18 15:03:09 bde Exp $ + * $Id: autoconf.c,v 1.58 1996/12/18 18:53:00 bde Exp $ */ /* @@ -242,14 +242,6 @@ configure(dummy) } #endif -#ifdef NFS - if (!mountroot && nfs_diskless_valid) { - if (bootverbose) - printf("Considering NFS root f/s.\n"); - mountroot = nfs_mountroot; - } -#endif /* NFS */ - #ifdef MFS_ROOT if (!mountroot) { if (bootverbose) @@ -268,6 +260,15 @@ configure(dummy) setroot(); } #endif + +#ifdef NFS + if (!mountroot && nfs_diskless_valid) { + if (bootverbose) + printf("Considering NFS root f/s.\n"); + mountroot = nfs_mountroot; + } +#endif /* NFS */ + #ifdef FFS if (!mountroot) { if (bootverbose) diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index bde3f25..409cda5 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.57 1996/12/18 15:03:09 bde Exp $ + * $Id: autoconf.c,v 1.58 1996/12/18 18:53:00 bde Exp $ */ /* @@ -242,14 +242,6 @@ configure(dummy) } #endif -#ifdef NFS - if (!mountroot && nfs_diskless_valid) { - if (bootverbose) - printf("Considering NFS root f/s.\n"); - mountroot = nfs_mountroot; - } -#endif /* NFS */ - #ifdef MFS_ROOT if (!mountroot) { if (bootverbose) @@ -268,6 +260,15 @@ configure(dummy) setroot(); } #endif + +#ifdef NFS + if (!mountroot && nfs_diskless_valid) { + if (bootverbose) + printf("Considering NFS root f/s.\n"); + mountroot = nfs_mountroot; + } +#endif /* NFS */ + #ifdef FFS if (!mountroot) { if (bootverbose) |