diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-24 10:27:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-24 10:27:00 +0000 |
commit | b1b83ed21babb60be9548ad2677f333ea6a265c3 (patch) | |
tree | 007e7c56536996a1619a8af28b208fa493388f52 | |
parent | 0d39eb3e961de8ac51404449edf6458d280516ca (diff) |
make kbd table also use ? for listing; ok krw
-rw-r--r-- | distrib/miniroot/install.sub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index a16c5886a0a..61d4773cfcb 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.474 2009/04/24 01:14:01 krw Exp $ +# $OpenBSD: install.sub,v 1.475 2009/04/24 10:26:59 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2007 Todd Miller, Theo de Raadt, Ken Westerback @@ -81,9 +81,9 @@ set_term() { [[ -x /sbin/kbd ]] || return _tables=$(bsort $(kbd -l | egrep -v "^(user|tables|encoding)")) while :; do - ask "kbd(8) mapping? ('L' for list)" "none" + ask "kbd(8) mapping? ('?' for list)" "none" case $resp in - [Ll?]) echo "Major tables: $_tables" ;; + ?) echo "Major tables: $_tables" ;; none) return ;; *) kbd $resp && { echo $resp >/tmp/kbdtype ; return ; } ;; esac |