diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-05-01 15:52:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-05-01 15:52:16 +0000 |
commit | 1e2414118da67be261668c7544244118a8355c43 (patch) | |
tree | 7bb7af3b10e8ce99fd133bc1a7e5413aa5a21fa3 /distrib | |
parent | 1c75dc7baa682c014b50235fe54bee3c70a81fc1 (diff) |
Clean up the keyboard type question
Diffstat (limited to 'distrib')
-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 c35a8593491..4c075945d69 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.505 2009/05/01 01:06:17 krw Exp $ +# $OpenBSD: install.sub,v 1.506 2009/05/01 15:52:15 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 @@ -81,10 +81,10 @@ set_term() { [[ -x /sbin/kbd ]] || return _tables=$(bsort $(kbd -l | egrep -v "^(user|tables|encoding)")) while :; do - ask "kbd(8) mapping? ('?' for list)" "none" + ask "Choose your keyboard type if it is nationalized? ('?' for list)" "default" case $resp in "?") echo "Major tables: $_tables" ;; - none) return ;; + default) return ;; *) kbd $resp && { echo $resp >/tmp/kbdtype ; return ; } ;; esac done |