diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2013-11-16 18:37:28 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2013-11-16 18:37:28 +0000 |
commit | 240cdcbabc5239b94c9488aacdae734862dff715 (patch) | |
tree | 5746fecbe5e07ceb900cce2a71105e1b38c90570 /distrib/octeon | |
parent | b407967b2a1240c9187b42e40fb5072ed1638069 (diff) |
Remove AUTOROOT variable which is a leftover of r1.183 of install.sub
diff from Philipp e1c1bac6253dc54a1e89ddc046585792 at osteo dot net
ok krw@ halex@
Diffstat (limited to 'distrib/octeon')
-rw-r--r-- | distrib/octeon/ramdisk/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/octeon/ramdisk/install.md b/distrib/octeon/ramdisk/install.md index fefefe52811..1729ea49134 100644 --- a/distrib/octeon/ramdisk/install.md +++ b/distrib/octeon/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.4 2013/04/08 09:51:38 jasper Exp $ +# $OpenBSD: install.md,v 1.5 2013/11/16 18:37:27 rpe Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -120,7 +120,7 @@ md_prep_disklabel() { disklabel -h -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 ;; + a*|A*) _op=-w ;; e*|E*) _op=-E ;; c*|C*) break ;; *) continue ;; |