Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / distrib / bebox / floppies / ramdisk / start.tmpl
blob9aebe506904d958606eb393adccf95315bbc0da8
1 #!/bin/sh
3 # $NetBSD: start.tmpl,v 1.3 1998/01/09 08:03:20 perry Exp $
5 again="true"
7 echo "Welcome to the NetBSD @@VERSION@@ installation floppy."
8 echo
10 while [ $again = "true" ]; do
12 echo 'enter "sysinst" to run the new system install program,'
13 echo ' "install" to install NetBSD,'
14 echo ' "upgrade" to upgrade an existing NetBSD system,'
15 echo ' or "shell" for a shell prompt.'
16 echo
17 echo -n "your choice? "
18 read resp
20 case "$resp" in
21 sysinst|install|upgrade|shell)
22 again="false"
24 "")
25 echo
28 echo "Sorry, $resp isn't valid."
29 echo
31 esac
32 done
34 case "$resp" in
35 sysinst)
36 sysinst
38 install)
39 install
41 upgrade)
42 upgrade
44 shell)
45 echo 'If you want to run install or upgrade later,'
46 echo 'simply type "install" or "upgrade" to the shell.'
47 echo 'good luck!'
49 esac