summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--distrib/powerpc/ramdisk/Makefile4
-rw-r--r--distrib/powerpc/ramdisk/install.md18
-rw-r--r--distrib/powerpc/ramdisk/install.sub6
3 files changed, 14 insertions, 14 deletions
diff --git a/distrib/powerpc/ramdisk/Makefile b/distrib/powerpc/ramdisk/Makefile
index 0ec76b795c0..af0b97ef437 100644
--- a/distrib/powerpc/ramdisk/Makefile
+++ b/distrib/powerpc/ramdisk/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.15 2001/03/04 22:17:32 drahn Exp $
+# $OpenBSD: Makefile,v 1.16 2001/04/13 01:29:24 krw Exp $
TOP= ${.CURDIR}/..
@@ -26,7 +26,7 @@ NEWFSARGS= -m 0 -o space -c 16 -i 4096
.ifndef DESTDIR
all ${IMAGE}:
- @echo setenv DESTDIR before makeing a ramdisk!
+ @echo setenv DESTDIR before making a ramdisk!
@false
.else
diff --git a/distrib/powerpc/ramdisk/install.md b/distrib/powerpc/ramdisk/install.md
index 70d0ff259d5..fc92c9391c5 100644
--- a/distrib/powerpc/ramdisk/install.md
+++ b/distrib/powerpc/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.20 2001/03/25 06:30:41 drahn Exp $
+# $OpenBSD: install.md,v 1.21 2001/04/13 01:29:24 krw Exp $
#
#
# Copyright rc) 1996 The NetBSD Foundation, Inc.
@@ -110,7 +110,7 @@ md_init_mbr() {
echo "consult your PowerPC OpenFirmware manual -and- the"
echo "PowerPC OpenBSD Installation Guide for doing setup this way."
echo
- echo -n "Do you want to init the MBR and the MSDOS partition? [y]"
+ echo -n "Do you want to init the MBR and the MSDOS partition? [y] "
getresp "y"
case "$resp" in
n*|N*)
@@ -159,7 +159,7 @@ md_checkfordisklabel() {
echo "any HFS partitions on the disk, including the partition table."
echo "Choose the MBR option carefully, knowing this fact."
- echo -n "Do you want to choose (H)FS labeling or (M)BR labeling [H]"
+ echo -n "Do you want to choose (H)FS labeling or (M)BR labeling [H] "
getresp "h"
case "$resp" in
m*|M*)
@@ -177,8 +177,8 @@ md_checkfordisklabel() {
}
md_checkforMBRdisklabel() {
- echo "You have chosen to put a MBR disklabel on the disk.
- echo -n "Is this correct [n]
+ echo "You have chosen to put a MBR disklabel on the disk."
+ echo -n "Is this correct? [n] "
getresp "n"
case "$resp" in
n*|N*)
@@ -188,7 +188,7 @@ md_checkforMBRdisklabel() {
;;
esac
- echo -n "Have you initialized an MSDOS partition using OpenFirmware? [n]"
+ echo -n "Have you initialized an MSDOS partition using OpenFirmware? [n] "
getresp "n"
case "$resp" in
n*|N*)
@@ -311,16 +311,16 @@ md_prep_disklabel()
md_checkfordisklabel $_disk
case $? in
0)
- echo -n "Do you wish to edit the disklabel on $_disk? [y]"
+ echo -n "Do you wish to edit the disklabel on $_disk? [y] "
;;
1)
md_prep_fdisk ${_disk}
echo "WARNING: Disk $_disk has no label"
- echo -n "Do you want to create one with the disklabel editor? [y]"
+ echo -n "Do you want to create one with the disklabel editor? [y] "
;;
2)
echo "WARNING: Label on disk $_disk is corrupted"
- echo -n "Do you want to try and repair the damage using the disklabel editor? [y]"
+ echo -n "Do you want to try and repair the damage using the disklabel editor? [y] "
;;
esac
diff --git a/distrib/powerpc/ramdisk/install.sub b/distrib/powerpc/ramdisk/install.sub
index d5ad066ed8e..8d86360f012 100644
--- a/distrib/powerpc/ramdisk/install.sub
+++ b/distrib/powerpc/ramdisk/install.sub
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sub,v 1.5 1998/12/19 18:32:29 deraadt Exp $
+# $OpenBSD: install.sub,v 1.6 2001/04/13 01:29:25 krw 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
@@ -114,7 +114,7 @@ getresp() {
valid="true"
fi
if [ "X$valid" = "Xfalse" ]; then
- echo "Try again: Enter one of [$@]"
+ echo "Try again: Enter one of [$@] "
fi
done
set +o noglob
@@ -1668,7 +1668,7 @@ __install_tape_1
_tape=`basename $TAPE`
resp="" # force one iteration
while [ "X${resp}" = X"" ]; do
- echo -n "Name of tape device? [${_tape}]"
+ echo -n "Name of tape device? [${_tape}] "
getresp "${_tape}"
done
_tape=`basename $resp`