diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-04-02 14:34:47 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-04-02 14:34:47 +0000 |
commit | daad97102a0a4a1b9e898895fee50c592e258adc (patch) | |
tree | b984d82200d9e4a9a3d2b4be16c7154770bd02e4 /distrib/sgi | |
parent | 4da282fe64820c7e0d9627e9e6b4e73fba604258 (diff) |
Scrounge a few more characters of whitespace, mostly to be consistant.
Diffstat (limited to 'distrib/sgi')
-rw-r--r-- | distrib/sgi/ramdisk/install.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/distrib/sgi/ramdisk/install.md b/distrib/sgi/ramdisk/install.md index 5ea3023d76e..580c4258c7b 100644 --- a/distrib/sgi/ramdisk/install.md +++ b/distrib/sgi/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.4 2005/03/27 15:13:50 krw Exp $ +# $OpenBSD: install.md,v 1.5 2005/04/02 14:34:46 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -50,7 +50,7 @@ md_checkfordisklabel() { # $1 is the disk to check local rval - disklabel $1 > /dev/null 2> /tmp/checkfordisklabel + disklabel $1 >/dev/null 2>/tmp/checkfordisklabel if grep "no disk label" /tmp/checkfordisklabel; then rval=1 elif grep "disk label corrupted" /tmp/checkfordisklabel; then @@ -70,10 +70,10 @@ md_prep_disklabel() _disk=$1 echo echo "Checking SGI Volume Header:" - /usr/mdec/sgivol -q $_disk > /dev/null 2> /dev/null + /usr/mdec/sgivol -q $_disk >/dev/null 2>/dev/null case $? in 0) /usr/mdec/sgivol $_disk - cat << __EOT + cat <<__EOT A SGI Volume Header was found on the disk. Normally you want to replace it with a new Volume Header suitable for installing OpenBSD. Doing this will @@ -85,7 +85,7 @@ __EOT /usr/mdec/sgivol -qi $_disk ;; n*|N*) - cat << __EOT + cat <<__EOT If the Volume Header was installed by a previous OpenBSD install keeping it is OK as long as the Volume Header has room for the 'boot' program. @@ -148,7 +148,7 @@ __EOT ;; esac - cat << __EOT + cat <<__EOT You will now create an OpenBSD disklabel. The default disklabel have an 'a' partition which is the space available for OpenBSD. The 'i' partition must @@ -171,7 +171,7 @@ __EOT } md_congrats() { - cat << __EOT + cat <<__EOT Your machine is now set up to boot OpenBSD. Normally the ARCS PROM will set up the system to boot from the first disk found with a valid Volume |