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/i386/common | |
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/i386/common')
-rw-r--r-- | distrib/i386/common/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/common/install.md b/distrib/i386/common/install.md index ebcaca93ed0..7cb45fd1c2d 100644 --- a/distrib/i386/common/install.md +++ b/distrib/i386/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.55 2012/10/15 17:21:03 deraadt Exp $ +# $OpenBSD: install.md,v 1.56 2013/11/16 18:37:27 rpe Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -106,7 +106,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 ;; |