NetBSD/distrib/i386/floppies/ramdisk-tiny/start.tmpl
he 5ebb61c202 Fix the previous in another way:
o Wave goodbye to INSTALL_SMALL-based boot image (it was originally
   built for 5.25" media, but isn't anymore).
 o Make a separate ramdisk image for the INSTALL_TINY image,
   using the old script-based installer (not fixed/checked at the moment).
   However, at least tweak the profile scripts to start it instead of sysinst.
   Also remove ping6 and rtsol from ramdisk compared to original; the
   INSTALL_TINY image doesn't have INET6.
 o Add dump/restore back into both ramdisk images.
 o Add scsictl and chio to the normal ramdisk image (INSTALL-based fdset)
 o With dump/restore reinstated, remove the rescue-* and ramdisk-rescue
   directories.

So, we're now back to having the recovery tools on the same image as
the boot media images.
2000-06-12 18:51:14 +00:00

50 lines
836 B
Bash

#!/bin/sh
# $NetBSD: start.tmpl,v 1.1 2000/06/12 18:51:18 he Exp $
again="true"
echo "Welcome to the NetBSD @@VERSION@@ installation floppy."
echo
while [ $again = "true" ]; do
echo 'enter "sysinst" to run the new system install program,'
echo ' "install" to install NetBSD,'
echo ' "upgrade" to upgrade an existing NetBSD system,'
echo ' or "shell" for a shell prompt.'
echo
echo -n "your choice? "
read resp
case "$resp" in
sysinst|install|upgrade|shell)
again="false"
;;
"")
echo
;;
*)
echo "Sorry, $resp isn't valid."
echo
;;
esac
done
case "$resp" in
sysinst)
sysinst
;;
install)
install
;;
upgrade)
upgrade
;;
shell)
echo 'If you want to run install or upgrade later,'
echo 'simply type "install" or "upgrade" to the shell.'
echo 'good luck!'
;;
esac