summaryrefslogtreecommitdiff
path: root/distrib/alpha
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2009-04-12 01:35:02 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2009-04-12 01:35:02 +0000
commitf1c1ec1fe30bce47617cb5f797ddaa30f6e3ec27 (patch)
treeb2a46cdc09b99b09c5f7c5eb78464177ad0cee5e /distrib/alpha
parentdb99ae7bc6a8f746a89ac788bd929c672852d6cd (diff)
No longer need '-f' or '-p' when displaying layout. A few patterns
missed the '# size offset ...' line at the top of the partition list.
Diffstat (limited to 'distrib/alpha')
-rw-r--r--distrib/alpha/common/install.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/alpha/common/install.md b/distrib/alpha/common/install.md
index a730d0aea0c..698ccdff50c 100644
--- a/distrib/alpha/common/install.md
+++ b/distrib/alpha/common/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.25 2009/04/10 23:11:17 krw Exp $
+# $OpenBSD: install.md,v 1.26 2009/04/12 01:35:00 krw Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -57,7 +57,7 @@ md_prep_disklabel() {
if [[ $_disk == $ROOTDISK ]]; then
while :; do
echo "The auto-allocated layout for $_disk is:"
- disklabel -f $_f -p g -A $_disk | egrep "^#|^ [a-p]:"
+ disklabel -A $_disk | egrep "^#|^ [a-p]:"
ask "Use (A)uto layout, (E)dit auto layout, or create (C)ustom layout?" a
case $resp in
a*|A*) _op=-w ; AUTOROOT=y ;;