diff options
Diffstat (limited to 'distrib/zaurus')
-rw-r--r-- | distrib/zaurus/ramdisk/install.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/distrib/zaurus/ramdisk/install.md b/distrib/zaurus/ramdisk/install.md index d121b2b1e9c..cbd9b598209 100644 --- a/distrib/zaurus/ramdisk/install.md +++ b/distrib/zaurus/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.3 2005/03/27 15:13:50 krw Exp $ +# $OpenBSD: install.md,v 1.4 2005/04/02 14:34:46 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -66,7 +66,7 @@ md_prep_fdisk() { ask_yn "Do you want to use *all* of $_disk for OpenBSD?" if [[ $resp == y ]]; then echo -n "Putting all of $_disk into an active OpenBSD MBR partition (type 'A6')..." - fdisk -e ${_disk} << __EOT > /dev/null + fdisk -e ${_disk} <<__EOT >/dev/null reinit update write @@ -77,7 +77,7 @@ __EOT fi # Manually configure the MBR. - cat << __EOT + cat <<__EOT You will now create a single MBR partition to contain your OpenBSD data. This partition must have an id of 'A6'; must *NOT* overlap other partitions; and @@ -89,7 +89,7 @@ $(fdisk ${_disk}) __EOT fdisk -e ${_disk} - cat << __EOT + cat <<__EOT Here is the partition information you chose: $(fdisk ${_disk}) @@ -101,7 +101,7 @@ md_prep_disklabel() { md_prep_fdisk $_disk - cat << __EOT + cat <<__EOT You will now create an OpenBSD disklabel inside the OpenBSD MBR partition. The disklabel defines how OpenBSD splits up the MBR partition |