summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-11-13 01:20:37 +0000
committerjkh <jkh@FreeBSD.org>1994-11-13 01:20:37 +0000
commit0137006d390a0f8d695606f8662c7f446ab18857 (patch)
treeace8c4e0b1b75dcda1f5bc13dffe1ea06a3b0e92 /release
parent67de5d8eaa32312743ff254060ad573f06bea312 (diff)
downloadFreeBSD-src-0137006d390a0f8d695606f8662c7f446ab18857.zip
FreeBSD-src-0137006d390a0f8d695606f8662c7f446ab18857.tar.gz
Change the name of the TROUBLE-2.0 file to TROUBLESHOOTING; it just makes
more sense.
Diffstat (limited to 'release')
-rw-r--r--release/Makefile4
-rwxr-xr-xrelease/bininst24
2 files changed, 23 insertions, 5 deletions
diff --git a/release/Makefile b/release/Makefile
index 60b5e74..99ec9d1 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.39 1994/11/12 20:36:28 jkh Exp $
+# $Id: Makefile,v 1.40 1994/11/12 20:40:14 jkh Exp $
#
# Evil floppies are, of course, 1.2MB floppies.
@@ -75,7 +75,7 @@ boot.flp:
ln ${MNT}/stand/sysinstall ${MNT}/stand/gzip
install -m 400 -c ${.CURDIR}/../COPYRIGHT ${MNT}/COPYRIGHT
install -m 400 -c ${.CURDIR}/../share/FAQ/README-2.0 ${MNT}/README
- install -m 400 -c ${.CURDIR}/../share/FAQ/TROUBLE-2.0 \
+ install -m 400 -c ${.CURDIR}/../share/FAQ/TROUBLESHOOTING \
${MNT}/TROUBLESHOOTING
install -m 400 -c ${.CURDIR}/../share/FAQ/DISKSPACE.FAQ \
${MNT}/DISKSPACE.FAQ
diff --git a/release/bininst b/release/bininst
index 22e5a4b..cf36b3a 100755
--- a/release/bininst
+++ b/release/bininst
@@ -13,7 +13,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: bininst,v 1.32 1994/11/12 06:12:27 jkh Exp $
+# $Id: bininst,v 1.33 1994/11/12 06:22:25 jkh Exp $
# Some useful constants.
PATH=/usr/bin:/usr/sbin:/bin:/sbin:/stand
@@ -149,19 +149,30 @@ one of the following options. If none of the listed options works \n\
for you then your best bet may be to simply hit ESC twice to get \n\
a subshell and proceed manually on your own. If you are already \n\
finished with installation, select cancel to go on.\n\n\
- Please choose one of the following:" 20 72 5 \
+ Please choose one of the following:" 20 72 7 \
+ "?Kern" "Please show me the kernel boot messages again!" \
"Tape" "Load distribution from SCSI, QIC or floppy tape" \
"CDROM" "Load distribution from SCSI or Mitsumi CDROM" \
"DOS" "Load from DOS floppies or a DOS hard disk partition" \
"FTP" "Load distribution using FTP" \
+ "UFS" "Load the distribution from existing UFS partition" \
"NFS" "Load the distribution over NFS" 2> ${TMP}/menu.tmp.$$
-
retval=$?
choice=`cat ${TMP}/menu.tmp.$$`
rm -f ${TMP}/menu.tmp.$$
if ! handle_rval $retval; then return 1; fi
case $choice in
+ ?Kern)
+ if dmesg > ${TMP}/dmesg.out; then
+ dialog $clear \
+ --title "What do I have in this machine again?" \
+ --textbox ${TMP}/dmesg.out
+ else
+ error "Couldn't get dmesg information! :-("
+ fi
+ ;;
+
Tape)
dialog $clear --title "Chose Tape Type" \
--menu "Which type of tape drive do you have attached to your \n\
@@ -188,6 +199,7 @@ system? FreeBSD supports the following types:\n\n\
;;
esac
;;
+
CDROM)
dialog $clear --title "Chose CDROM Type" \
--menu "Which type of CDROM drive do you have attached to your \n\
@@ -210,9 +222,11 @@ system? FreeBSD supports the following types:\n\n\
;;
esac
;;
+
DOS)
not_supported
;;
+
FTP)
if ! setup_network; then continue; fi
dialog --title "FTP Installation Information" $clear \
@@ -228,6 +242,7 @@ the files yourself.\n\n" \ 16 72 "$ftp_path" 2> ${TMP}/inputbox.tmp.$$
ftp_path=$media_device
rm -f ${TMP}/inputbox.tmp.$$
;;
+
NFS)
if ! setup_network; then continue; fi
dialog --title "NFS Installation Information" $clear \
@@ -246,6 +261,9 @@ work!\n\n" \ 14 72 "$nfs_path" 2> ${TMP}/inputbox.tmp.$$
message "$nfs_path mounted successfully"
fi
;;
+
+ UFS)
+ dialog --title "User Intervention Requested"
esac
done
}
OpenPOWER on IntegriCloud