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/macppc/ramdisk/install.md | |
parent | 4da282fe64820c7e0d9627e9e6b4e73fba604258 (diff) |
Scrounge a few more characters of whitespace, mostly to be consistant.
Diffstat (limited to 'distrib/macppc/ramdisk/install.md')
-rw-r--r-- | distrib/macppc/ramdisk/install.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/distrib/macppc/ramdisk/install.md b/distrib/macppc/ramdisk/install.md index 04a918d0e07..122b4eaba12 100644 --- a/distrib/macppc/ramdisk/install.md +++ b/distrib/macppc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.28 2005/03/27 15:13:50 krw Exp $ +# $OpenBSD: install.md,v 1.29 2005/04/02 14:34:46 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -65,7 +65,7 @@ md_prep_disk() { local _disk=$1 _resp typeset -l _resp - cat << __EOT + cat <<__EOT $_disk must be partitioned using an HFS or an MBR partition table. @@ -97,7 +97,7 @@ md_prep_MBR() { local _disk=$1 if [[ -n $(disklabel -c $_disk 2>/dev/null | grep ' HFS ') ]]; then - cat << __EOT + cat <<__EOT WARNING: putting an MBR partition table on $_disk will DESTROY the existing HFS partitions and HFS partition table. @@ -110,7 +110,7 @@ __EOT ask_yn "Use *all* of $_disk for OpenBSD?" if [[ $resp == y ]]; then echo -n "Creating Master Boot Record (MBR)..." - fdisk -e $_disk >/dev/null 2>&1 << __EOT + fdisk -e $_disk >/dev/null 2>&1 <<__EOT reinit update write @@ -119,7 +119,7 @@ __EOT echo "done." echo -n "Formatting 1MB MSDOS boot partition..." - gunzip < /usr/mdec/msdos1mb.gz | \ + gunzip </usr/mdec/msdos1mb.gz | \ dd of=/dev/r${_disk}c bs=512 seek=1 >/dev/null 2>&1 echo "done." @@ -128,7 +128,7 @@ __EOT # Manual MBR setup. The user is basically on their own. Give a few # hints and let the user rip. - cat << __EOT + cat <<__EOT **** NOTE **** @@ -151,7 +151,7 @@ __EOT fdisk -e $_disk - cat << __EOT + cat <<__EOT Here is the MBR configuration you chose: $(fdisk $_disk) @@ -166,7 +166,7 @@ __EOT md_prep_HFS() { local _disk=$1 - cat << __EOT + cat <<__EOT You must modify an existing partition to be of type "OpenBSD" and have the name "OpenBSD". If the partition does not exist you must create it with the Apple @@ -184,7 +184,7 @@ md_prep_disklabel() { case $disklabeltype in HFS) ;; - MBR) cat << __EOT + MBR) cat <<__EOT You *MUST* setup the OpenBSD disklabel to include the MSDOS-formatted boot partition as the 'i' partition. If the 'i' partition is missing or not the @@ -204,7 +204,7 @@ __EOT md_congrats() { if [[ $disklabeltype == HFS ]]; then - cat << __EOT + cat <<__EOT To boot OpenBSD, the 'ofwboot' program must be present in the first HFS partition of $ROOTDISK. If it is not currently present you must boot MacOS and @@ -213,7 +213,7 @@ machine. __EOT fi - cat << __EOT + cat <<__EOT Once the machine has rebooted use Open Firmware to boot into OpenBSD, as described in the INSTALL.$ARCH document. The command to boot OpenBSD will |