diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-07 22:58:13 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-07 22:58:13 +0000 |
commit | 82b63b53fdcda4558a15d24d31032271ad1d1fd4 (patch) | |
tree | a9c112ffedb7004a9ca58761ffde5c6ea4ccb5f3 /distrib | |
parent | e591777ba7019a89be58f540822ac482b6ec54ae (diff) |
Don't use -F option to disklabel
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/i386/floppies/ramdisk/install.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/distrib/i386/floppies/ramdisk/install.md b/distrib/i386/floppies/ramdisk/install.md index 32d12282417..1c490bbd002 100644 --- a/distrib/i386/floppies/ramdisk/install.md +++ b/distrib/i386/floppies/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.47 1999/04/02 05:17:38 millert Exp $ +# $OpenBSD: install.md,v 1.48 1999/04/07 22:58:12 millert Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -162,14 +162,14 @@ __EOT md_prep_disklabel() { - local _disk=$1 _flags + local _disk=$1 echo -n 'Do you want to use the *entire* disk for OpenBSD? [no] ' getresp "no" case $resp in - yes|YES|y|Y) _flags=-F ;; + y*|Y*) md_prep_fdisk ${_disk} Y ;; + *) md_prep_fdisk ${_disk} ;; esac - md_prep_fdisk ${_disk} ${_flags} cat << __EOT @@ -207,7 +207,7 @@ partitions properly (ie. separating /, /usr, /tmp, /var, /usr/local, and other things) just split the space into a root and swap partition for now. __EOT - disklabel ${_flags} -f /tmp/fstab.${_disk} -E ${_disk} + disklabel -f /tmp/fstab.${_disk} -E ${_disk} } md_copy_kernel() { |