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/cats/ramdisk/install.md | |
parent | 4da282fe64820c7e0d9627e9e6b4e73fba604258 (diff) |
Scrounge a few more characters of whitespace, mostly to be consistant.
Diffstat (limited to 'distrib/cats/ramdisk/install.md')
-rw-r--r-- | distrib/cats/ramdisk/install.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/distrib/cats/ramdisk/install.md b/distrib/cats/ramdisk/install.md index 44ee7e7df7f..ccd2cc19f8c 100644 --- a/distrib/cats/ramdisk/install.md +++ b/distrib/cats/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.9 2005/03/27 15:13:49 krw Exp $ +# $OpenBSD: install.md,v 1.10 2005/04/02 14:34:46 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -50,7 +50,7 @@ md_prep_disk() { local _disk=$1 _resp typeset -l _resp - cat << __EOT + cat <<__EOT $_disk must be partitioned using an BSD or an MBR partition table. @@ -79,7 +79,7 @@ md_prep_MBR() { local _disk=$1 if [[ -n $(disklabel -c $_disk 2>/dev/null | grep ' BSD ') ]]; then - cat << __EOT + cat <<__EOT WARNING: putting an MBR partition table on $_disk will DESTROY the existing BSD partitions and BSD partition table. @@ -92,7 +92,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 @@ -101,7 +101,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." @@ -110,7 +110,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 **** @@ -126,7 +126,7 @@ __EOT fdisk -e $_disk - cat << __EOT + cat <<__EOT Here is the MBR configuration you chose: $(fdisk $_disk) @@ -141,7 +141,7 @@ __EOT md_prep_BSD() { local _disk=$1 - cat << __EOT + cat <<__EOT No special setup should be required to label using BSD disklabel. however if the disk has previously been partitioned in another @@ -163,7 +163,7 @@ md_prep_disklabel() { case $disklabeltype in BSD) ;; - 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 @@ -182,7 +182,7 @@ __EOT } md_congrats() { - cat << __EOT + cat <<__EOT Once the machine has rebooted use OpenFirmware to boot into OpenBSD, as described in the INSTALL.$ARCH document. The command to boot OpenBSD will be |