summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2015-12-02 21:57:51 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2015-12-02 21:57:51 +0000
commit882fa5554353c8cb48abeda109a4132214d2b38a (patch)
tree76ec051c99af313486b61bb982271a6273fe06f7 /distrib
parent080142d31138245ab5a7f7661946189608939304 (diff)
The '_q'/'(O)penBSD' logic is not used in armv7 at the moment so remove it
until it is needed. Spotted & ok rpe@
Diffstat (limited to 'distrib')
-rw-r--r--distrib/armv7/ramdisk/install.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/distrib/armv7/ramdisk/install.md b/distrib/armv7/ramdisk/install.md
index e1d4386b78d..926ac855e3d 100644
--- a/distrib/armv7/ramdisk/install.md
+++ b/distrib/armv7/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.19 2015/08/01 00:25:14 jsg Exp $
+# $OpenBSD: install.md,v 1.20 2015/12/02 21:57:50 krw Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -141,7 +141,7 @@ __EOT
}
md_prep_fdisk() {
- local _disk=$1 _q _d
+ local _disk=$1 _d
local bootparttype="C"
local bootsectorstart="64"
@@ -171,7 +171,7 @@ md_prep_fdisk() {
else
echo "MBR has invalid signature; not showing it."
fi
- ask "Use (W)hole disk$_q or (E)dit the MBR?" "$_d"
+ ask "Use (W)hole disk$ or (E)dit the MBR?" "$_d"
case $resp in
w*|W*)
echo -n "Creating a ${bootfstype} partition and an OpenBSD partition for rest of $_disk..."
@@ -212,7 +212,6 @@ __EOT
fdisk -e ${_disk}
fdisk $_disk | grep -q ' A6 ' && return
echo No OpenBSD partition in MBR, try again. ;;
- o*|O*) return ;;
esac
done
}