summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-10-11 02:50:47 +0000
committerderaadt <deraadt@openbsd.org>1998-10-11 02:50:47 +0000
commitec8d0b6bed8bf1a09575a79160a9987741816b75 (patch)
treeb3795f0f2c718d498083bd4785258d45ef9f536b
parentadd bn_mulw as in the non-patent version. (diff)
downloadwireguard-openbsd-ec8d0b6bed8bf1a09575a79160a9987741816b75.tar.xz
wireguard-openbsd-ec8d0b6bed8bf1a09575a79160a9987741816b75.zip
prettier prompts
-rw-r--r--distrib/miniroot/install.sh6
-rw-r--r--distrib/miniroot/install.sub6
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh
index 3ab867c80bd..cd5c629203a 100644
--- a/distrib/miniroot/install.sh
+++ b/distrib/miniroot/install.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sh,v 1.39 1998/10/07 02:40:45 deraadt Exp $
+# $OpenBSD: install.sh,v 1.40 1998/10/11 02:50:47 deraadt Exp $
# $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -323,7 +323,7 @@ case "$resp" in
_nam=`cat /tmp/myname`
fi
while [ "X${resp}" = X"" ]; do
- echo -n "Enter system hostname (short form): [$_nam] "
+ echo -n "Enter system hostname (short form, ie. \"foo\"): [$_nam] "
getresp "$_nam"
done
hostname $resp
@@ -335,7 +335,7 @@ case "$resp" in
sed -e 's/^domain //'`
fi
while [ "X${resp}" = X"" ]; do
- echo -n "Enter DNS domain name: [$FQDN] "
+ echo -n "Enter DNS domain name (ie. \"bar.com\"): [$FQDN] "
getresp "$FQDN"
done
FQDN=$resp
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index 1384a2cb47d..1c327874e79 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sub,v 1.103 1998/10/10 20:54:24 deraadt Exp $
+# $OpenBSD: install.sub,v 1.104 1998/10/11 02:50:47 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -1400,7 +1400,7 @@ esac
_partition_range=`md_get_partition_range`
resp="" # force one iteration
while [ "X${resp}" = X"" ]; do
- echo -n "Partition? [c] "
+ echo -n "CDROM partition to mount (normally \"c\")? [c] "
getresp "c"
case "$resp" in
$_partition_range)
@@ -1424,7 +1424,7 @@ ffs Berkeley Fast Filesystem
__install_cdrom_2
resp="" # force one iteration
while [ "X${resp}" = X"" ]; do
- echo -n "Which filesystem type? [cd9660] "
+ echo -n "Which filesystem type (Official OpenBSD CDROM are cd9660)? [cd9660] "
getresp "cd9660"
case "$resp" in
cd9660|ffs)