summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-09 23:45:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-09 23:45:21 +0000
commitf29e43207de6cf23477e1b303569d567c36b7864 (patch)
tree20c7181dc2c0fc1990926af9fb6c1882bccd8468
parented2c4cea39eb57cc57bc4270de882bc2a171531a (diff)
The cd install method is called cd, not cdrom. This gets told to the
back end, which feeds it back to us next time, and since we don't know what it means... we ignore it. That is dumb.
-rw-r--r--distrib/miniroot/install.sub4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index f59598df113..7a6631bdc04 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,4 +1,4 @@
-# $OpenBSD: install.sub,v 1.591 2009/07/06 22:11:11 krw Exp $
+# $OpenBSD: install.sub,v 1.592 2009/07/09 23:45:20 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback
@@ -1494,7 +1494,7 @@ install_sets() {
ask "Location of sets? ($_locs or 'done')" "$_d"
case $resp in
done) sane_install && return ;;
- c*|C*) isin cd $_locs && install_cdrom && method=cdrom ;;
+ c*|C*) isin cd $_locs && install_cdrom && method=cd ;;
d*|D*) install_disk && method=disk ;;
f*|F*) isin ftp $_locs && install_url ftp && method=ftp ;;
h*|H*) isin http $_locs && install_url http && method=http ;;