diff options
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index c384d81f62d..f2d81167e71 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.12 1996/09/01 20:55:20 downsj Exp $ */ +/* $OpenBSD: autoconf.c,v 1.13 1996/09/28 08:31:21 downsj Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -256,6 +256,13 @@ setconf() #endif char *num; +#ifdef INSTALL + if (((bootdev >> B_TYPESHIFT) & B_TYPEMASK) == 2) { + printf("\n\nInsert file system floppy...\n"); + cngetc(); + } +#endif + if (boothowto & RB_ASKNAME) { char name[128]; retry: |