summaryrefslogtreecommitdiff
path: root/distrib/i386/floppies/inst/install.sh
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-23 15:58:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-23 15:58:34 +0000
commit018f89c090277b23e21223d3c6024d4486d0b3ed (patch)
tree1dc8c8db4294bfba6463b7cc60c1ec248ef863f8 /distrib/i386/floppies/inst/install.sh
parentaf17b126b4c74b74f453d3d9ebc956e537c50bf2 (diff)
update from netbsd
Diffstat (limited to 'distrib/i386/floppies/inst/install.sh')
-rw-r--r--distrib/i386/floppies/inst/install.sh19
1 files changed, 18 insertions, 1 deletions
diff --git a/distrib/i386/floppies/inst/install.sh b/distrib/i386/floppies/inst/install.sh
index 828e4aa9504..d82f84f21e4 100644
--- a/distrib/i386/floppies/inst/install.sh
+++ b/distrib/i386/floppies/inst/install.sh
@@ -28,7 +28,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-# $Id: install.sh,v 1.2 1995/11/06 21:27:35 deraadt Exp $
+# $Id: install.sh,v 1.3 1995/11/23 15:57:59 deraadt Exp $
# NetBSD installation script.
# In a perfect world, this would be a nice C program, with a reasonable
@@ -162,6 +162,23 @@ echo "geometry. This should either be in the User's Manual for your disk,"
echo "or you should have written down what NetBSD printed when booting."
echo "(Note that he geometry that's printed at boot time is preferred.)"
echo ""
+echo "You may choose to view the initial boot messages for your system"
+echo "again right now if you like."
+echo -n "View the boot messages again? [n] "
+getresp "n"
+case "$resp" in
+ y*|Y*)
+ more /kern/msgbuf
+ ;;
+ *)
+ echo ""
+ ;;
+esac
+
+echo ""
+echo "You will now enter the disk geometry information"
+echo ""
+
echo -n "Number of bytes per disk sector? [512] "
getresp 512
bytes_per_sect="$resp"