Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/distrib/miniroot pullup 1.29->1.30 (mrg)
details: https://anonhg.NetBSD.org/src/rev/21b6919deb7d
branches: netbsd-1-4
changeset: 469157:21b6919deb7d
user: perry <perry%NetBSD.org@localhost>
date: Fri Jul 02 16:40:06 1999 +0000
description:
pullup 1.29->1.30 (mrg)
diffstat:
distrib/miniroot/install.sub | 28 ++++++++++++++++++++++++++--
1 files changed, 26 insertions(+), 2 deletions(-)
diffs (46 lines):
diff -r a13d46da7958 -r 21b6919deb7d distrib/miniroot/install.sub
--- a/distrib/miniroot/install.sub Fri Jul 02 16:37:30 1999 +0000
+++ b/distrib/miniroot/install.sub Fri Jul 02 16:40:06 1999 +0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: install.sub,v 1.25.2.3 1999/07/01 19:25:31 perry Exp $
+# $NetBSD: install.sub,v 1.25.2.4 1999/07/02 16:40:06 perry Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1054,10 +1054,34 @@
cat << \__install_disk_1
+Ok, lets install from a disk. The file-system the install sets on may
+already mounted, or we might have to mount the filesystem to get to it.
+
+__install_disk_1
+
+ echo -n "Is the file-system with the install sets already mounted? [n] "
+ getresp "n"
+ case $resp in
+ y*|Y*)
+ echo "What mount point are the sets located in? [] "
+ getresp ""
+ if [ -d "$resp" ]; then
+ install_from_mounted_fs $resp
+ else
+ echo "$resp: Not a directory, aborting..."
+ fi
+ return
+ ;;
+ *)
+ ;;
+ esac
+
+ cat << \__install_disk_2
+
The following disk devices are installed on your system; please select
the disk device containing the partition with the installation sets:
-__install_disk_1
+__install_disk_2
_DKDEVS=`md_get_diskdevs`
echo "$_DKDEVS"
echo ""
Home |
Main Index |
Thread Index |
Old Index