diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-28 08:31:22 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-28 08:31:22 +0000 |
commit | f638a48b530d0d9f56f325bf16280f71e59a55a4 (patch) | |
tree | a5cf00738fbdb070bc717691edc75603e5348c0d /sys | |
parent | 19e442a3018236e6005c9543ffad18fc6824128a (diff) |
Add INSTALL floppy filesystem goop.
Diffstat (limited to 'sys')
-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: |