From 40ae52ad81083a53f5825192db6e1cb09a6670b1 Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Thu, 23 Sep 1999 21:33:45 +0000 Subject: Formatting, typo, and grammar fixes. --- distrib/arc/ramdisk/install.md | 20 ++++++++++---------- distrib/i386/floppies/common/install.md | 4 ++-- distrib/miniroot/install.sh | 4 ++-- distrib/miniroot/install.sub | 14 +++++++------- distrib/powerpc/ramdisk/install.md | 16 ++++++++-------- 5 files changed, 29 insertions(+), 29 deletions(-) diff --git a/distrib/arc/ramdisk/install.md b/distrib/arc/ramdisk/install.md index aa7c9e6b9de..7c96aecb2d6 100644 --- a/distrib/arc/ramdisk/install.md +++ b/distrib/arc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.13 1999/09/03 18:55:23 deraadt Exp $ +# $OpenBSD: install.md,v 1.14 1999/09/23 21:33:44 aaron Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -134,7 +134,7 @@ md_init_mbr() { # $1 is the disk to init echo echo "You will now be asked if you want to initialize the disk with a 5Mb" - echo "MSDOS partition. This is the recomended setup and will allow you to" + echo "MSDOS partition. This is the recommended setup and will allow you to" echo "store about three to four different bootable kernels on the disk." echo "If you want to have a different setup, exit 'install' now and do" echo "the MBR initialization by hand using the 'fdisk' program. You may" @@ -148,13 +148,13 @@ md_init_mbr() { exit 0;; *) echo - echo "A MBR record with an OpenBSD usable partition table will now be copied" + echo "An MBR record with an OpenBSD usable partition table will now be copied" echo "to your disk. Unless you have special requirements you will not need" echo "to edit this MBR. After the MBR is copied an empty 5Mb MSDOS partition" echo "will be created on the disk. You *MUST* setup the OpenBSD disklabel" echo "to have a partition covering this MSDOS partition." echo "You will probably see a few '...: no disk label' messages" - echo "It's completly normal. The disk has no label yet." + echo "It's completely normal. The disk has no label yet." echo "This will take a minute or two..." sleep 2 dd if=/usr/mdec/mbr of=/dev/r$1c >/dev/null 2>&1 @@ -174,13 +174,13 @@ md_checkfordisklabel() { ;; *) echo - echo "ARC systems need a MBR and MSDOS partition on the bootable disk." + echo "ARC systems need an MBR and MSDOS partition on the bootable disk." echo "This is necessary because the BIOS doesn't know nothing about" - echo "OpenBSD and have to boot the system from a file stored in the" + echo "OpenBSD and has to boot the system from a file stored in the" echo "MSDOS partition. Install will put a bootable kernel with the" echo "name 'bsd' in there that you later should use to boot OpenBSD. " echo - echo -n "Have this disk previously been used with DOS or Windows? [n]" + echo -n "Has this disk previously been used with DOS or Windows? [n]" getresp "n" case "$resp" in n*|N*) @@ -194,7 +194,7 @@ md_checkfordisklabel() { echo "Also note that the boot partition must be included as partition" echo "'i' in the OpenBSD disklabel." echo - echo -n "Do You want to keep the current MSDOS partition setup? [y]" + echo -n "Do you want to keep the current MSDOS partition setup? [y]" getresp "y" case "$resp" in n*|N*) @@ -230,8 +230,8 @@ md_prep_fdisk() echo "This disk has not previously been used with OpenBSD. You may share" echo "this disk with other operating systems (probably Windows/NT or" echo "maybe Linux/Mips etc.) Anyhow, to be able to boot the system you" - echo "will need a small DOS partition in the begining of the disk to" - echo "hold the bootable kernel. This has been taken care of if you choosed" + echo "will need a small DOS partition in the beginning of the disk to" + echo "hold the bootable kernel. This has been taken care of if you chose" echo "to do that initialization just before." echo echo "WARNING: Wrong information in the BIOS partition table might" diff --git a/distrib/i386/floppies/common/install.md b/distrib/i386/floppies/common/install.md index d3bc7b46dc2..4f57c4e954c 100644 --- a/distrib/i386/floppies/common/install.md +++ b/distrib/i386/floppies/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.4 1999/09/20 06:31:11 deraadt Exp $ +# $OpenBSD: install.md,v 1.5 1999/09/23 21:33:44 aaron Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -76,7 +76,7 @@ md_get_partition_range() { md_questions() { echo - echo -n "Do you expect to run the X Window System, (y)es or (n)o? [n]" + echo -n "Do you expect to run the X Window System? [n]" getresp "n" case "$resp" in y*|Y*) diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 6ad4fae861f..d50a008be27 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.60 1999/09/23 19:02:20 deraadt Exp $ +# $OpenBSD: install.sh,v 1.61 1999/09/23 21:33:43 aaron 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 @@ -549,7 +549,7 @@ if [ X"$libssl" != X1 ]; then while [ X"${resp}" = X ]; do echo echo "The SSL libraries included with the CD do not contain RSA code" - echo "for licencing reasons. Instead, enhanced SSL shared libraries" + echo "for licensing reasons. Instead, enhanced SSL shared libraries" echo "with RSA code are available on ftp and http sites. If you do" echo "not install the SSL+RSA libraries right now, they are easily" echo "installed later." diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index ca10bbb0575..c51219b0fc1 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.131 1999/09/23 19:02:20 deraadt Exp $ +# $OpenBSD: install.sub,v 1.132 1999/09/23 21:33:43 aaron 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 @@ -402,7 +402,7 @@ __EOT fi echo "$_DKDEVS" echo - echo -n "Which disk is the root disk [${_defdsk}]? " + echo -n "Which disk is the root disk? [${_defdsk}] " getresp "${_defdsk}" if isin $resp $_DKDEVS ; then ROOTDISK="$resp" @@ -744,7 +744,7 @@ get_selection() { done # Get the name of the file. - echo -n "File name [$_next]? " + echo -n "File name? [$_next] " getresp "$_next" } @@ -1320,7 +1320,7 @@ esac _partition_range=`md_get_partition_range` resp= # force one iteration while [ "X${resp}" = X"" ]; do - echo -n "CDROM partition to mount (normally \"c\")? [c] " + echo -n "CD-ROM partition to mount (normally \"c\")? [c] " getresp "c" case "$resp" in $_partition_range) @@ -1344,7 +1344,7 @@ ffs Berkeley Fast Filesystem __EOT resp= # force one iteration while [ "X${resp}" = X"" ]; do - echo -n "Which filesystem type (Official OpenBSD CDROM is cd9660)? [cd9660] " + echo -n "Which filesystem type (Official OpenBSD CD-ROM is cd9660)? [cd9660] " getresp "cd9660" case "$resp" in cd9660|ffs) @@ -1703,7 +1703,7 @@ if [ X$TZ = X ]; then TZ=${TZ#/usr/share/zoneinfo/} fi while : ; do - echo -n "What timezone are you in [\`?' for list] [$TZ]? " + echo -n "What timezone are you in? [\`?' for list] [$TZ] " getresp "$TZ" case "$resp" in "") @@ -1965,7 +1965,7 @@ fi _devs="$1 ${_devs}" _mps="$2 ${_mps}" done - echo -n "Umounting filesystems... " + echo -n "Unmounting filesystems... " for _mp in ${_mps}; do echo -n "${_mp} " umount ${_mp} diff --git a/distrib/powerpc/ramdisk/install.md b/distrib/powerpc/ramdisk/install.md index aef2280b85b..d84c3ace438 100644 --- a/distrib/powerpc/ramdisk/install.md +++ b/distrib/powerpc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.12 1999/09/03 18:55:35 deraadt Exp $ +# $OpenBSD: install.md,v 1.13 1999/09/23 21:33:44 aaron Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -118,7 +118,7 @@ md_init_mbr() { exit 0;; *) echo - echo "A MBR record with an OpenBSD usable partition table will now be copied" + echo "An MBR record with an OpenBSD usable partition table will now be copied" echo "to your disk. Unless you have special requirements you will not need" echo "to edit this MBR. After the MBR is copied an empty 1Mb MSDOS partition" echo "will be created on the disk. You *MUST* setup the OpenBSD disklabel" @@ -126,7 +126,7 @@ md_init_mbr() { echo "You will have an opportunity to do this shortly." echo echo "You will probably see a few '...: no disk label' messages" - echo "It's completly normal. The disk has no label yet." + echo "It's completely normal. The disk has no label yet." echo "This will take a minute or two..." sleep 2 echo -n "Creating Master Boot Record (MBR)..." @@ -144,14 +144,14 @@ md_checkfordisklabel() { local rval echo - echo "Power.4e systems need a MBR and MSDOS partition on the boot disk." + echo "Power.4e systems need an MBR and MSDOS partition on the boot disk." echo "This is necessary because the OpenFirmware doesn't know about" echo "OpenBSD, or how to boot the system from a BSD partition." echo echo "Install will put a boot program with the name 'ofwboot' " echo "that you will configure OpenFirmware to use when booting OpenBSD." echo - echo -n "Have you initialized a MSDOS partition using OpenFirmware? [n]" + echo -n "Have you initialized an MSDOS partition using OpenFirmware? [n]" getresp "n" case "$resp" in n*|N*) @@ -166,7 +166,7 @@ md_checkfordisklabel() { echo "Also note that the boot partition must be included as partition" echo "'i' in the OpenBSD disklabel." echo - echo -n "Do You want to keep the current MSDOS partition setup? [y]" + echo -n "Do you want to keep the current MSDOS partition setup? [y]" getresp "y" case "$resp" in n*|N*) @@ -200,12 +200,12 @@ md_prep_fdisk() echo echo "This disk has not previously been used with OpenBSD. You may share" echo "this disk with other operating systems. However, to be able to boot" - echo "the system you will need a small DOS partition in the begining of" + echo "the system you will need a small DOS partition in the beginning of" echo "the disk to hold the kernel boot. OpenFirmware understands" echo "how to read an MSDOS style format from the disk." echo echo "This DOS style partitioning has been taken care of if" - echo "you choosed to do that initialization earlier in the install." + echo "you chose to do that initialization earlier in the install." echo echo "WARNING: Wrong information in the BIOS partition table might" echo "render the disk unusable." -- cgit v1.2.3