Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sparc/miniroot Sysinst is no longer "experimental"; ...



details:   https://anonhg.NetBSD.org/src/rev/54b2243e31e3
branches:  trunk
changeset: 499773:54b2243e31e3
user:      tv <tv%NetBSD.org@localhost>
date:      Wed Nov 29 03:06:18 2000 +0000

description:
Sysinst is no longer "experimental"; it is default on all platforms that
ship it.  Make the (I)nstall option invoke sysinst.
The old install and upgrade scripts are still available, for now, under
OI and OU.  Add note that these may be removed in a future release.

diffstat:

 distrib/sparc/miniroot/dot.profile |  27 +++++++++++++++------------
 1 files changed, 15 insertions(+), 12 deletions(-)

diffs (55 lines):

diff -r bb6e09681a73 -r 54b2243e31e3 distrib/sparc/miniroot/dot.profile
--- a/distrib/sparc/miniroot/dot.profile        Wed Nov 29 02:00:38 2000 +0000
+++ b/distrib/sparc/miniroot/dot.profile        Wed Nov 29 03:06:18 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: dot.profile,v 1.8 2000/10/31 21:09:22 pk Exp $
+# $NetBSD: dot.profile,v 1.9 2000/11/29 03:06:18 tv Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe
 # Copyright (c) 1994 Christopher G. Demetriou
@@ -64,18 +64,27 @@
        while [ "X${_forceloop}" = X"" ]; do
                cat <<'EOF'
 
-This distribution contains the experimental `sysinst' installation tool.
-If you feel like trying it out, choose option (X) below.
+This installer now uses the new `sysinst' installer tool by default.  To
+use the old install or upgrade shell scripts instead, enter the options
+(OI) for Old Install or (OU) for Old Upgrade.
+
+The script-based installers may be removed in a future release.
 
 EOF
-               echo -n '(I)nstall, (U)pgrade, (H)alt or (S)hell or (X)? '
+               echo -n '(I)nstall/Upgrade, (H)alt or (S)hell? '
                read _forceloop
                case "$_forceloop" in
-                       i*|I*)
+                       i*|I*|u*|U*)
+                               # setup a writable /tmp directory
+                               mount_mfs swap /tmp || continue
+                               /sysinst
+                               ;;
+
+                       oi*|OI*)
                                /install
                                ;;
 
-                       u*|U*)
+                       ou*|OU*)
                                /upgrade
                                ;;
 
@@ -97,12 +106,6 @@
                                continue
                                ;;
 
-                       x*|X*)
-                               # setup a writable /tmp directory
-                               mount_mfs swap /tmp || continue
-                               /sysinst
-                               ;;
-
                        *)
                                _forceloop=""
                                ;;



Home | Main Index | Thread Index | Old Index