Add sysinst as an option in the start menu.

This commit is contained in:
phil 1997-11-05 22:58:22 +00:00
parent f36de6c906
commit 99df3ac6f2

View File

@ -7,7 +7,8 @@ echo
while [ $again = "true" ]; do
echo 'enter "install" to install NetBSD,'
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
@ -15,7 +16,7 @@ while [ $again = "true" ]; do
read resp
case "$resp" in
install|upgrade|shell)
sysinst|install|upgrade|shell)
again="false"
;;
"")
@ -29,6 +30,9 @@ while [ $again = "true" ]; do
done
case "$resp" in
sysinst)
sysinst
;;
install)
install
;;